| 1 |
# Diagnostic Package Choices |
| 2 |
#----------------- |
| 3 |
# for each output-stream: |
| 4 |
# filename(n) : prefix of the output file name (only 8.c long) for outp.stream n |
| 5 |
# frequency(n):< 0 : write snap-shot output every |frequency| seconds |
| 6 |
# > 0 : write time-average output every frequency seconds |
| 7 |
# timePhase(n) : write at time = timePhase + multiple of |frequency| |
| 8 |
# levels(:,n) : list of levels to write to file (Notes: declared as REAL) |
| 9 |
# when this entry is missing, select all common levels of this list |
| 10 |
# fields(:,n) : list of diagnostics fields (8.c) (see "available_diagnostics" file |
| 11 |
# for the list of all available diag. in this particular config) |
| 12 |
#----------------- |
| 13 |
&diagnostics_list |
| 14 |
diag_mnc = .TRUE., |
| 15 |
frequency(1) = 12000., |
| 16 |
levels(1,1) = 1., |
| 17 |
fields(1,1) = 'ETAN ','ETANSQ ','DETADT2 ', |
| 18 |
filename(1) = 'surfDiag', |
| 19 |
frequency(2) = 2592000., |
| 20 |
levels(1,2) = 1.,2.,3.,4.,5., |
| 21 |
fields(1,2) = 'UVEL ','VVEL ','WVEL ','THETA ','SHAP_dU ', |
| 22 |
filename(2) = 'dynDiag', |
| 23 |
frequency(3) = 2592000., |
| 24 |
levels(1,3) = 1.,2.,3.,4.,5., |
| 25 |
fields(1,3) = 'UVELSQ ','VVELSQ ','THETASQ ','UV_VEL_C', |
| 26 |
'UTHMASS ','VTHMASS ','WVELTH ', |
| 27 |
filename(3) = 'secmoms', |
| 28 |
& |
| 29 |
|
| 30 |
# Parameter for Diagnostics of per level statistics: |
| 31 |
#----------------- |
| 32 |
# for each output-stream: |
| 33 |
# stat_fname(n) : prefix of the output file name (only 8.c long) for outp.stream n |
| 34 |
# stat_freq(n):< 0 : write snap-shot output every |stat_freq| seconds |
| 35 |
# > 0 : write time-average output every stat_freq seconds |
| 36 |
# stat_phase(n) : write at time = stat_phase + multiple of |stat_freq| |
| 37 |
# stat_region(:,n) : list of "regions" (default: 1 region only=global) |
| 38 |
# stat_fields(:,n) : list of diagnostics fields (8.c) (see "available_diagnostics.log" |
| 39 |
# file for the list of all available diag. in this particular config) |
| 40 |
#----------------- |
| 41 |
&DIAG_STATIS_PARMS |
| 42 |
#- an example just to check the agreement with MONITOR output: |
| 43 |
#stat_fields(1,1)= 'ETAN ','UVEL ','VVEL ','WVEL ', 'THETA ', |
| 44 |
# stat_fname(1)= 'dynStDiag', |
| 45 |
# stat_freq(1)= -864000., |
| 46 |
# stat_phase(1)= 0., |
| 47 |
& |