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