Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 18 additions & 26 deletions config.default
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ parallelTaskCount = 1

# Prefix on the commnd line before a parallel task (e.g. 'srun -n 1 python')
# Default is no prefix (run_analysis.py is executed directly)
commandPrefix =
commandPrefix =

[input]
## options related to reading in the results to be analyzed
Expand Down Expand Up @@ -99,9 +99,10 @@ scratchSubdirectory = scratch
plotsSubdirectory = plots
logsSubdirectory = logs
mpasClimatologySubdirectory = clim/mpas
mpasRegriddedClimSubdirectory = clim/mpas/regridded
mpasRemappedClimSubdirectory = clim/mpas/remapped
mappingSubdirectory = mapping
timeSeriesSubdirectory = timeseries
timeCacheSubdirectory = timecache

# a list of analyses to generate. Valid names are:
# 'timeSeriesOHC', 'timeSeriesSST', 'climatologyMapSST',
Expand Down Expand Up @@ -153,9 +154,6 @@ comparisonLonResolution = 0.5
# the interpolation method
# mpasMappingFile = /path/to/mapping/file

# overwrite files when building climatologies?
overwriteMpasClimatology = False

# interpolation order for model and observation results. Likely values are
# 'bilinear', 'neareststod' (nearest neighbor) or 'conserve'
mpasInterpolationMethod = bilinear
Expand Down Expand Up @@ -230,14 +228,11 @@ interpolationMethod = bilinear
# The directories where observation climatologies will be stored if they need
# to be computed. If a relative path is supplied, it is relative to the output
# base directory. If an absolute path is supplied, this should point to
# cached climatology files on the desired comparison grid, in which case
# overwriteObsClimatology should be False. If cached regridded files are
# supplied, there is no need to provide cached files before regridding.
# cached climatology files on the desired comparison grid. If cached remapped
# files are supplied, there is no need to provide cached files before
# remapping.
climatologySubdirectory = clim/obs
regriddedClimSubdirectory = clim/obs/regridded

# overwrite files when building climatologies?
overwriteObsClimatology = False
remappedClimSubdirectory = clim/obs/remapped

[oceanReference]
## options related to ocean reference run with which the results will be
Expand All @@ -252,11 +247,11 @@ baseDirectory = /dir/to/ocean/reference

# directory where ocean reference simulation results are stored
baseDirectory = /dir/to/ocean/reference

[seaIceObservations]
## options related to sea ice observations with which the results will be
## compared

# directory where sea ice observations are stored
baseDirectory = /dir/to/seaice/observations
areaNH = IceArea_timeseries/iceAreaNH_climo.nc
Expand Down Expand Up @@ -290,14 +285,11 @@ interpolationMethod = bilinear
# The directories where observation climatologies will be stored if they need
# to be computed. If a relative path is supplied, it is relative to the output
# base directory. If an absolute path is supplied, this should point to
# cached climatology files on the desired comparison grid, in which case
# overwriteObsClimatology should be False. If cached regridded files are
# supplied, there is no need to provide cached files before regridding.
# cached climatology files on the desired comparison grid. If cached remapped
# files are supplied, there is no need to provide cached files before
# remapping.
climatologySubdirectory = clim/obs
regriddedClimSubdirectory = clim/obs/regridded

# overwrite files when building climatologies?
overwriteObsClimatology = False
remappedClimSubdirectory = clim/obs/remapped

[seaIceReference]
## options related to sea ice reference run with which the results will be
Expand Down Expand Up @@ -399,7 +391,7 @@ regionMaskFiles = /path/to/MOCregional/mapping/file
# is handled automatically. If the MOC calculation encounters memory problems,
# consider setting maxChunkSize to a number significantly lower than nEdges
# in your MPAS mesh so that the calculation will be divided into smaller
# pieces.
# pieces.
# Note, need to use maxChunkSize for the 18to6
# maxChunkSize = 1000

Expand Down Expand Up @@ -450,7 +442,7 @@ titleFontSize = 18
polarPlot = False

[climatologyMapSST]
## options related to plotting horizontally regridded climatologies of
## options related to plotting horizontally remapped climatologies of
## sea surface temperature (SST) against reference model results and
## observations

Expand All @@ -473,7 +465,7 @@ colorbarLevelsDifference = [-5, -3, -2, -1, 0, 1, 2, 3, 5]
comparisonTimes = ['JFM', 'JAS', 'ANN']

[climatologyMapSSS]
## options related to plotting horizontally regridded climatologies of
## options related to plotting horizontally remapped climatologies of
## sea surface salinity (SSS) against reference model results and observations

# colormap for model/observations
Expand All @@ -495,7 +487,7 @@ colorbarLevelsDifference = [-3, -2, -1, -0.5, 0, 0.5, 1, 2, 3]
comparisonTimes = ['JFM', 'JAS', 'ANN']

[climatologyMapMLD]
## options related to plotting horizontally regridded climatologies of
## options related to plotting horizontally remapped climatologies of
## mixed layer depth (MLD) against reference model results and observations

# colormap for model/observations
Expand All @@ -517,7 +509,7 @@ colorbarLevelsDifference = [-150, -80, -30, -10, 0, 10, 30, 80, 150]
comparisonTimes = ['JFM', 'JAS', 'ANN']

[climatologyMapSeaIceConcThick]
## options related to plotting horizontally regridded climatologies of
## options related to plotting horizontally remapped climatologies of
## sea ice concentration and thickness against reference model results and
## observations

Expand Down
Loading