This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Insolation | |
using Dates | |
using Printf | |
using Roots | |
using Optim | |
using CLIMAParameters | |
using CLIMAParameters.Planet | |
struct EarthParameterSet <: AbstractEarthParameterSet end | |
const param_set = EarthParameterSet() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Insolation | |
using Dates | |
using Printf | |
using Roots | |
using CLIMAParameters | |
using CLIMAParameters.Planet | |
struct EarthParameterSet <: AbstractEarthParameterSet end | |
const param_set = EarthParameterSet() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
netcdf nccmp_test1 { | |
dimensions: | |
time = UNLIMITED ; // (1 currently) | |
bnds = 2 ; | |
lat = 2 ; | |
lon = 2 ; | |
variables: | |
float var(time, lat, lon) ; | |
var:coordinates = "height" ; | |
float time(time) ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a dummy version of the ACCESS Post Processor. | |
# Peter Uhe 24 July 2014 | |
# Martin Dix 21 Nov 2014 | |
# | |
import numpy as np | |
import datetime | |
import cmor | |
def save(opts,threeD=True): |