Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.56 KB | None | 0 0
  1. [runs]
  2. ## options related to the run to be analyzed and reference runs to be
  3. ## compared against
  4.  
  5. # mainRunName is a name that identifies the simulation being analyzed.
  6. mainRunName = 20161117.beta0.A_WCYCL1850S.ne30_oEC_ICG.edison
  7. # referenceRunName is the name of a reference run to compare against (or None
  8. # to turn off comparison with a reference, e.g. if no reference case is
  9. # available)
  10. referenceRunName = None
  11. # preprocessedReferenceRunName is the name of a reference run that has been
  12. # preprocessed to compare against (or None to turn off comparison). Reference
  13. # runs of this type would have preprocessed results because they were not
  14. # performed with MPAS components (so they cannot be easily ingested by
  15. # MPAS-Analysis)
  16. preprocessedReferenceRunName = B1850C5_ne30_v0.4
  17.  
  18. [input]
  19. ## options related to reading in the results to be analyzed
  20.  
  21. # directory containing model results
  22. baseDirectory = /scratch2/scratchdirs/golaz/ACME_simulations/20161117.beta0.A_WCYCL1850S.ne30_oEC_ICG.edison/run
  23.  
  24. # names of ocean and sea ice meshes (e.g. EC60to30, QU240, RRS30to10, etc.)
  25. mpasMeshName = EC60to30
  26.  
  27. [output]
  28. ## options related to writing out plots, intermediate cached data sets, logs,
  29. ## etc.
  30.  
  31. # directory where analysis should be written
  32. baseDirectory = /scratch1/scratchdirs/pwolfram/output20161117.beta0.A_WCYCL1850S.ne30_oEC_ICG.edison/
  33.  
  34. # a list of analyses to generate. Valid names are:
  35. # 'timeSeriesOHC', 'timeSeriesSST', 'regriddedSST',
  36. # 'regriddedSSS', 'regriddedMLD', 'timeSeriesSeaIceAreaVol',
  37. # 'regriddedSeaIceConcThick'
  38. # the following shortcuts exist:
  39. # 'all' -- all analyses will be run
  40. # 'all_timeSeries' -- all time-series analyses will be run
  41. # 'all_regriddedHorizontal' -- all analyses involving regridded horizontal
  42. # fields will be run
  43. # 'all_ocean' -- all ocean analyses will be run
  44. # 'all_seaIce' -- all sea-ice analyses will be run
  45. # 'no_timeSeriesOHC' -- skip 'timeSeriesOHC' (and similarly with the
  46. # other analyses).
  47. # 'no_ocean', 'no_timeSeries', etc. -- in analogy to 'all_*', skip the
  48. # given category of analysis
  49. # an equivalent syntax can be used on the command line to override this
  50. # option:
  51. # ./run_analysis.py config.analysis --generate \
  52. # all,no_ocean,all_timeSeries
  53. #generate = ['all']
  54. generate = ['timeSeriesOHC']
  55.  
  56. # alternative examples that would perform all analysis except
  57. # 'timeSeriesOHC'
  58. #generate = ['timeSeriesSST', 'all_regriddedHorizontal', 'all_seaIce']
  59. #generate = ['all', 'no_timeSeriesOHC']
  60. # Each subsequent list entry can be used to alter previous list entries. For
  61. # example, the following would produce all analyses except regriddedSST,
  62. # regriddedSSS and regriddedMLD (albeit not in a very intuitive way):
  63. #generate = ['all', 'no_ocean', 'all_timeSeries']
  64.  
  65. [climatology]
  66. ## options related to producing climatologies, typically to compare against
  67. ## observations and previous runs
  68.  
  69. # the first year over which to average climatalogies
  70. startYear = 2
  71. # the last year over which to average climatalogies
  72. endYear = 9999
  73.  
  74. [timeSeries]
  75. ## options related to producing time series plots, often to compare against
  76. ## observations and previous runs
  77.  
  78. # start and end years for timeseries analysis. Using out-of-bounds values
  79. # like start_year = 1 and end_year = 9999 will be clipped to the valid range
  80. # of years, and is a good way of insuring that all values are used.
  81. startYear = 2
  82. endYear = 9999
  83.  
  84. [oceanObservations]
  85. ## options related to ocean observations with which the results will be compared
  86.  
  87. # directory where ocean observations are stored
  88. baseDirectory = /global/project/projectdirs/acme/observations/Ocean/
  89. sstSubdirectory = SST
  90. sssSubdirectory = SSS
  91. mldSubdirectory = MLD
  92.  
  93. [oceanPreprocessedReference]
  94. ## options related to preprocessed ocean reference run with which the results
  95. ## will be compared (e.g. a POP, CESM or ACME v0 run)
  96.  
  97. # directory where ocean reference simulation results are stored
  98. baseDirectory = /global/project/projectdirs/acme/ACMEv0_lowres/B1850C5_ne30_v0.4/ocn/postprocessing
  99.  
  100. [seaIceObservations]
  101. ## options related to sea ice observations with which the results will be
  102. ## compared
  103.  
  104. # directory where sea ice observations are stored
  105. baseDirectory = /global/project/projectdirs/acme/observations/SeaIce
  106.  
  107. [seaIcePreprocessedReference]
  108. ## options related to preprocessed sea ice reference run with which the results
  109. ## will be compared (e.g. a CICE, CESM or ACME v0 run)
  110.  
  111. # directory where ocean reference simulation results are stored
  112. baseDirectory = /global/project/projectdirs/acme/ACMEv0_lowres/B1850C5_ne30_v0.4/ice/postprocessing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement