Warning, /verification/offline_exf_seaice/input/data.diagnostics is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit 8fa4d47c on 2013-01-21 19:14:22 UTC
5041945476 Patr*0001 # Diagnostic Package Choices
d05250e4cd Jean*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
5041945476 Patr*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|
d05250e4cd Jean*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
5041945476 Patr*0013 # levels(:,n) : list of levels to write to file (Notes: declared as REAL)
d05250e4cd Jean*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 #--------------------
961c26b165 Jean*0020 # This example dumps EXF diagnostics as snapshot after 10 time-steps
0021 # Note: EXF air-sea fluxes over Sea-Ice are wrong
d05250e4cd Jean*0022 &DIAGNOSTICS_LIST
0023 dumpAtLast = .TRUE.,
0024 #--
0025 fields(1:11,1) = 'EXFtaux ','EXFtauy ','EXFqnet ','EXFempmr',
0026 'EXFhl ','EXFhs ','EXFswnet','EXFlwnet',
0027 'EXFuwind','EXFvwind','EXFatemp',
961c26b165 Jean*0028 # fileName(1) = 'exfDiag',
0029 frequency(1) = 86400.,
0030
0031 # fields(1:12,2) = 'SIarea ','SIheff ','SIhsnow ',
0032 # 'SIuice ','SIvice ',
0033 # 'oceFWflx','oceSflux','oceQnet ',
0034 # 'SItices ','SIatmFW ','SIatmQnt',
0035 # 'SIempmr ','SIqnet ','SIqsw ',
0036 fields(1:11,2) = 'SI_Fract','SI_Thick','THETA ','SI_Tsrf ',
0037 # 'SI_Tsrf ','SI_Tice1','SI_Tice2',
0038 # 'SI_Qice1','SI_Qice2',
0039 # 'SIsnwPrc','SIalbedo','SIsnwAge',
0040 'SIflx2oc','SIfrw2oc','SIsaltFx',
0041 'SIflxAtm','SIfrwAtm',
0042 'SIuice ','SIvice ',
0043 # 'EXFqnet ','EXFempmr',
0044 fileName(2) = 'iceDiag',
0045 frequency(2) = 86400.,
ba2ffb1295 Jean*0046 missing_value(2) = -999.,
8fa4d47c31 Jean*0047 fields(1:7,3) = 'SIuice ','SIvice ','SIheff ',
961c26b165 Jean*0048 'SI_Fract','SI_Thick','SI_Tsrf ',
0049 'THETA ',
0050 fileName(3) = 'snapshot',
0051 frequency(3) = -86400.,
0052 timePhase(3) = 0.,
ba2ffb1295 Jean*0053 missing_value(3) = -999.,
5041945476 Patr*0054 &
0055
d05250e4cd Jean*0056 #--------------------
5041945476 Patr*0057 # Parameter for Diagnostics of per level statistics:
d05250e4cd Jean*0058 #--------------------
0059 # diagSt_mnc (logical): write stat-diags to NetCDF files (default=diag_mnc)
0060 # diagSt_regMaskFile : file containing the region-mask to read-in
0061 # nSetRegMskFile : number of region-mask sets within the region-mask file
0062 # set_regMask(i) : region-mask set-index that identifies the region "i"
0063 # val_regMask(i) : region "i" identifier value in the region mask
0064 #--for each output-stream:
0065 # stat_fName(n) : prefix of the output file name (max 80c long) for outp.stream n
5041945476 Patr*0066 # stat_freq(n):< 0 : write snap-shot output every |stat_freq| seconds
0067 # > 0 : write time-average output every stat_freq seconds
0068 # stat_phase(n) : write at time = stat_phase + multiple of |stat_freq|
0069 # stat_region(:,n) : list of "regions" (default: 1 region only=global)
d05250e4cd Jean*0070 # stat_fields(:,n) : list of selected diagnostics fields (8.c) in outp.stream n
0071 # (see "available_diagnostics.log" file for the full list of diags)
0072 #--------------------
5041945476 Patr*0073 &DIAG_STATIS_PARMS
961c26b165 Jean*0074 #stat_fields(1:12,1) = 'SIarea ','SIheff ','SIhsnow ',
0075 # 'oceFWflx','oceSflux','oceQnet ',
0076 # 'SItices ','SIatmFW ','SIatmQnt',
0077 # 'SIempmr ','SIqnet ','SIqsw ',
0078 # 'oceQsw ',
0079 stat_fName(1) = 'iceStDiag',
0080 stat_freq(1) = 7200.,
0081 stat_phase(1) = 1800.,
0082 stat_fields(1:14,1) = 'SI_Fract','SI_Thick','THETA ',
0083 'SI_Tsrf ','SI_Tice1','SI_Tice2',
0084 'SIflx2oc','SIfrw2oc','SIsaltFx',
0085 'SIflxAtm','SIfrwAtm','SI_SnowH',
0086 'SIuice ','SIvice ',
5041945476 Patr*0087 &