| 1 |
dimitri |
1.1 |
# Diagnostic Package Choices |
| 2 |
|
|
#-------------------- |
| 3 |
|
|
# dumpAtLast (logical): always write output at the end of simulation (default=F) |
| 4 |
|
|
# diag_mnc (logical): write to NetCDF files (default=useMNC) |
| 5 |
|
|
#--for each output-stream: |
| 6 |
|
|
# fileName(n) : prefix of the output file name (max 80c long) for outp.stream n |
| 7 |
|
|
# frequency(n):< 0 : write snap-shot output every |frequency| seconds |
| 8 |
|
|
# > 0 : write time-average output every frequency seconds |
| 9 |
|
|
# timePhase(n) : write at time = timePhase + multiple of |frequency| |
| 10 |
|
|
# averagingFreq : frequency (in s) for periodic averaging interval |
| 11 |
|
|
# averagingPhase : phase (in s) for periodic averaging interval |
| 12 |
|
|
# repeatCycle : number of averaging intervals in 1 cycle |
| 13 |
|
|
# levels(:,n) : list of levels to write to file (Notes: declared as REAL) |
| 14 |
|
|
# when this entry is missing, select all common levels of this list |
| 15 |
|
|
# fields(:,n) : list of selected diagnostics fields (8.c) in outp.stream n |
| 16 |
|
|
# (see "available_diagnostics.log" file for the full list of diags) |
| 17 |
|
|
# missing_value(n) : missing value for real-type fields in output file "n" |
| 18 |
|
|
# fileFlags(n) : specific code (8c string) for output file "n" |
| 19 |
|
|
#-------------------- |
| 20 |
|
|
&DIAGNOSTICS_LIST |
| 21 |
|
|
fields(1:10,1) = 'ETAN ','ETANSQ ','DETADT2 ','PHIBOT ','PHIBOTSQ', |
| 22 |
|
|
'DICTFLX ','DICOFLX ','DICCFLX ','DICPCO2 ','DICPHAV ', |
| 23 |
|
|
levels(1,1) = 1., |
| 24 |
|
|
fileName(1) = 'surfDiag', |
| 25 |
|
|
frequency(1) = 432000., |
| 26 |
|
|
frequency(1) = 172800., |
| 27 |
|
|
fields(1:18,2) = 'UVEL ','VVEL ','WVEL ','PHIHYD ', |
| 28 |
|
|
'UVELMASS','VVELMASS', |
| 29 |
|
|
'UVELSQ ','VVELSQ ','UV_VEL_C','THETASQ ', |
| 30 |
|
|
'THETA ','UTHMASS ','VTHMASS ','WVELTH ', |
| 31 |
|
|
'SALT ','USLTMASS','VSLTMASS','WVELSLT ', |
| 32 |
|
|
# fileName(2) = 'dynDiag', |
| 33 |
|
|
frequency(2) = 0., |
| 34 |
|
|
fields(1:5,3) = 'DICBIOA ','DICCARB ', |
| 35 |
|
|
'TRAC05 ','ADVxTr05','DFrITr05', |
| 36 |
|
|
# fileName(3) = 'dicDiag', |
| 37 |
|
|
frequency(3) = 172800., |
| 38 |
|
|
fields(1:8,4) = 'ADVx_TH ','ADVy_TH ','ADVr_TH ', |
| 39 |
|
|
'DFxE_TH ','DFyE_TH ','DFrE_TH ', |
| 40 |
|
|
'DFrI_TH ', |
| 41 |
|
|
'ADVx_SLT', |
| 42 |
|
|
# fileName(4) = 'flxDiag', |
| 43 |
|
|
frequency(4) = 0., |
| 44 |
|
|
& |
| 45 |
|
|
|
| 46 |
|
|
#-------------------- |
| 47 |
|
|
# Parameter for Diagnostics of per level statistics: |
| 48 |
|
|
#-------------------- |
| 49 |
|
|
# diagSt_mnc (logical): write stat-diags to NetCDF files (default=diag_mnc) |
| 50 |
|
|
# diagSt_regMaskFile : file containing the region-mask to read-in |
| 51 |
|
|
# nSetRegMskFile : number of region-mask sets within the region-mask file |
| 52 |
|
|
# set_regMask(i) : region-mask set-index that identifies the region "i" |
| 53 |
|
|
# val_regMask(i) : region "i" identifier value in the region mask |
| 54 |
|
|
#--for each output-stream: |
| 55 |
|
|
# stat_fName(n) : prefix of the output file name (max 80c long) for outp.stream n |
| 56 |
|
|
# stat_freq(n):< 0 : write snap-shot output every |stat_freq| seconds |
| 57 |
|
|
# > 0 : write time-average output every stat_freq seconds |
| 58 |
|
|
# stat_phase(n) : write at time = stat_phase + multiple of |stat_freq| |
| 59 |
|
|
# stat_region(:,n) : list of "regions" (default: 1 region only=global) |
| 60 |
|
|
# stat_fields(:,n) : list of selected diagnostics fields (8.c) in outp.stream n |
| 61 |
|
|
# (see "available_diagnostics.log" file for the full list of diags) |
| 62 |
|
|
#-------------------- |
| 63 |
|
|
&DIAG_STATIS_PARMS |
| 64 |
|
|
#- an example just to check the agreement with MONITOR output: |
| 65 |
|
|
#stat_fields(1:5,1) = 'ETAN ','UVEL ','VVEL ','WVEL ', 'THETA ', |
| 66 |
|
|
# stat_fName(1) = 'dynStDiag', |
| 67 |
|
|
# stat_freq(1) = -864000., |
| 68 |
|
|
# stat_phase(1) = 0., |
| 69 |
|
|
& |