Back to home page

MITgcm

 
 

    


Warning, /verification/tutorial_reentrant_channel/input/data.diagnostics is written in an unsupported language. File is not indexed.

view on githubraw file Latest commit 7d702a56 on 2020-04-01 20:14:16 UTC
9acfcdc58c Jeff*0001 # Diagnostic Package Choices
7d702a5697 Jeff*0002 #--------------------
                0003 #  dumpAtLast (logical): always write output at the end of simulation (default=F)
                0004 #  diag_mnc   (logical): write to NetCDF files (default=useMNC)
                0005 #--for each output-stream:
                0006 #  fileName(n) : prefix of the output file name (max 80c long) for outp.stream n
                0007 #  frequency(n):< 0 : write snap-shot output every |frequency| seconds
                0008 #               > 0 : write time-average output every frequency seconds
                0009 #  timePhase(n)     : write at time = timePhase + multiple of |frequency|
                0010 #    averagingFreq  : frequency (in s) for periodic averaging interval
                0011 #    averagingPhase : phase     (in s) for periodic averaging interval
                0012 #    repeatCycle    : number of averaging intervals in 1 cycle
                0013 #  levels(:,n) : list of levels to write to file (Notes: declared as REAL)
                0014 #                when this entry is missing, select all common levels of this list
                0015 #  fields(:,n) : list of selected diagnostics fields (8.c) in outp.stream n
                0016 #                (see "available_diagnostics.log" file for the full list of diags)
                0017 #  missing_value(n) : missing value for real-type fields in output file "n"
                0018 #  fileFlags(n)     : specific code (8c string) for output file "n"
                0019 #--------------------
                0020  &DIAGNOSTICS_LIST
9acfcdc58c Jeff*0021 # write pkg diagnostics output to separate subdirectory
                0022  diagMdsDir = 'Diags'
                0023 
                0024 # 2D diagnostics
                0025  fields(1:3,1) = 'TRELAX  ','MXLDEPTH', 'ETAN    ',
                0026  frequency(1) = 31104000.,
                0027  filename(1) = '2D_diags',
                0028 
                0029 # 3D state variables
                0030  fields(1:5,2) =   'THETA   ', 'VVEL    ', 'UVEL    ',
                0031                    'WVEL    ', 'CONVADJ ',
                0032  frequency(2) = 31104000.,
                0033  filename(2) = 'state',
                0034 
                0035 # Heat budget terms
                0036  fields(1:7,3) = 'ADVx_TH ', 'ADVy_TH ', 'ADVr_TH ',
                0037                  'DFxE_TH ', 'DFyE_TH ', 'DFrI_TH ',
                0038                  'DFrE_TH ',
                0039  frequency(3) = 31104000.,
                0040  filename(3) = 'heat_3D',
                0041 
                0042 # Residual mean flow - Layers Package
                0043  fields(1:3,4) = 'LaVH1TH ', 'LaHs1TH ', 'LaVa1TH '
                0044  frequency(4) = 31104000.,
                0045  fileName(4) = 'layDiag',
                0046 
                0047 # GM diagnostics
                0048 #- Note: comment out this diagnostics list below if useGMRedi=.FALSE.
                0049 #        or you will get warnings messages in STDERR
                0050  fields(1:2,5) = 'GM_PsiX ', 'GM_PsiY ',
                0051  frequency(5) = 31104000.,
                0052  filename(5) = 'GM_diags',
                0053 
                0054 #---------------------------------------
                0055 #- Eddy-permitting run, diagnose vorticity (not computed when using uniform Ah)
                0056 # fields(1:2,6) = 'momVort3', 'momHDiv ',
                0057 # frequency(6) = 31104000.,
                0058 # filename(6) = 'state_vort',
                0059  &
                0060 
7d702a5697 Jeff*0061 #--------------------
                0062 # Parameter for Diagnostics of per level statistics:
                0063 #--------------------
                0064 #  diagSt_mnc (logical): write stat-diags to NetCDF files (default=diag_mnc)
                0065 #  diagSt_regMaskFile : file containing the region-mask to read-in
                0066 #  nSetRegMskFile   : number of region-mask sets within the region-mask file
                0067 #  set_regMask(i)   : region-mask set-index that identifies the region "i"
                0068 #  val_regMask(i)   : region "i" identifier value in the region mask
                0069 #--for each output-stream:
                0070 #  stat_fName(n) : prefix of the output file name (max 80c long) for outp.stream n
                0071 #  stat_freq(n):< 0 : write snap-shot output every |stat_freq| seconds
                0072 #               > 0 : write time-average output every stat_freq seconds
                0073 #  stat_phase(n)    : write at time = stat_phase + multiple of |stat_freq|
                0074 #  stat_region(:,n) : list of "regions" (default: 1 region only=global)
                0075 #  stat_fields(:,n) : list of selected diagnostics fields (8.c) in outp.stream n
                0076 #                (see "available_diagnostics.log" file for the full list of diags)
                0077 #--------------------
9acfcdc58c Jeff*0078  &DIAG_STATIS_PARMS
                0079  stat_fields(1:2,1) =  'THETA   ','TRELAX  ',
                0080  stat_freq(1) = 864000.,
                0081  stat_fName(1) = 'dynStDiag',
                0082  &