1 |
jmc |
1.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 |
|
|
# This example dumps all KPP diagnostics as |
14 |
|
|
# a snapshot after ten time steps |
15 |
|
|
&diagnostics_list |
16 |
|
|
# |
17 |
|
|
dumpatlast = .TRUE., |
18 |
|
|
# |
19 |
|
|
frequency(1) = -36000., |
20 |
|
|
fields(1,1) = 'EXFtaux ', |
21 |
|
|
filename(1) = 'EXFtaux ', |
22 |
|
|
# |
23 |
|
|
frequency(2) = -36000., |
24 |
|
|
fields(1,2) = 'EXFtauy ', |
25 |
|
|
filename(2) = 'EXFtauy ', |
26 |
|
|
# |
27 |
|
|
frequency(3) = -36000., |
28 |
|
|
fields(1,3) = 'EXFqnet ', |
29 |
|
|
filename(3) = 'EXFqnet ', |
30 |
|
|
# |
31 |
|
|
frequency(4) = -36000., |
32 |
|
|
fields(1,4) = 'EXFempmr', |
33 |
|
|
filename(4) = 'EXFempmr', |
34 |
|
|
# |
35 |
|
|
frequency(5) = -36000., |
36 |
|
|
fields(1,5) = 'EXFhl ', |
37 |
|
|
filename(5) = 'EXFhl ', |
38 |
|
|
# |
39 |
|
|
frequency(6) = -36000., |
40 |
|
|
fields(1,6) = 'EXFhs ', |
41 |
|
|
filename(6) = 'EXFhs ', |
42 |
|
|
# |
43 |
|
|
frequency(7) = -36000., |
44 |
|
|
fields(1,7) = 'EXFswnet', |
45 |
|
|
filename(7) = 'EXFswnet', |
46 |
|
|
# |
47 |
|
|
frequency(8) = -36000., |
48 |
|
|
fields(1,8) = 'EXFlwnet', |
49 |
|
|
filename(8) = 'EXFlwnet', |
50 |
|
|
# |
51 |
|
|
frequency(9) = -36000., |
52 |
|
|
fields(1,9) = 'EXFuwind', |
53 |
|
|
filename(9) = 'EXFuwind', |
54 |
|
|
# |
55 |
|
|
frequency(10) = -36000., |
56 |
|
|
fields(1,10) = 'EXFvwind', |
57 |
|
|
filename(10) = 'EXFvwind', |
58 |
|
|
# |
59 |
|
|
frequency(11) = -36000., |
60 |
|
|
fields(1,11) = 'EXFatemp', |
61 |
|
|
filename(11) = 'EXFatemp', |
62 |
|
|
# |
63 |
|
|
frequency(12) = 36000., |
64 |
|
|
fields(1,12) = 'SIarea ', |
65 |
|
|
filename(12) = 'SIarea ', |
66 |
|
|
# |
67 |
|
|
frequency(13) = 36000., |
68 |
|
|
fields(1,13) = 'SIheff ', |
69 |
|
|
filename(13) = 'SIheff ', |
70 |
|
|
# |
71 |
|
|
frequency(14) = 36000., |
72 |
|
|
fields(1,14) = 'SIhsnow ', |
73 |
|
|
filename(14) = 'SIhsnow ', |
74 |
|
|
# |
75 |
|
|
frequency(15) = 36000., |
76 |
|
|
fields(1,15) = 'SIuice ', |
77 |
|
|
filename(15) = 'SIuice ', |
78 |
|
|
# |
79 |
|
|
frequency(16) = 36000., |
80 |
|
|
fields(1,16) = 'SIvice ', |
81 |
|
|
filename(16) = 'SIvice ', |
82 |
|
|
# |
83 |
|
|
frequency(17) = 36000., |
84 |
|
|
fields(1,17) = 'SIempmr ', |
85 |
|
|
filename(17) = 'SIempmr ', |
86 |
|
|
# |
87 |
|
|
frequency(18) = 36000., |
88 |
|
|
fields(1,18) = 'SIqnet ', |
89 |
|
|
filename(18) = 'SIqnet ', |
90 |
|
|
# |
91 |
|
|
& |
92 |
|
|
|
93 |
|
|
# Parameter for Diagnostics of per level statistics: |
94 |
|
|
#----------------- |
95 |
|
|
# for each output-stream: |
96 |
|
|
# stat_fname(n) : prefix of the output file name (only 8.c long) for outp.stream n |
97 |
|
|
# stat_freq(n):< 0 : write snap-shot output every |stat_freq| seconds |
98 |
|
|
# > 0 : write time-average output every stat_freq seconds |
99 |
|
|
# stat_phase(n) : write at time = stat_phase + multiple of |stat_freq| |
100 |
|
|
# stat_region(:,n) : list of "regions" (default: 1 region only=global) |
101 |
|
|
# stat_fields(:,n) : list of diagnostics fields (8.c) (see "available_diagnostics.log" |
102 |
|
|
# file for the list of all available diag. in this particular config) |
103 |
|
|
#----------------- |
104 |
|
|
&DIAG_STATIS_PARMS |
105 |
|
|
#- an example just to check the agreement with MONITOR output: |
106 |
|
|
#stat_fields(1,1)= 'ETAN ','UVEL ','VVEL ','WVEL ', 'THETA ', |
107 |
|
|
# stat_fname(1)= 'dynStDiag', |
108 |
|
|
# stat_freq(1)= -36000., |
109 |
|
|
# stat_phase(1)= 0., |
110 |
|
|
# |
111 |
|
|
stat_fields(1,1)= 'ETAN ', |
112 |
|
|
stat_fname(1) = 'STAetan ', |
113 |
|
|
stat_freq(1) = 2635200.0, |
114 |
|
|
|
115 |
|
|
stat_fields(1,2)= 'PHIBOT ', |
116 |
|
|
stat_fname(2) = 'STAphibo', |
117 |
|
|
stat_freq(2) = 2635200.0, |
118 |
|
|
|
119 |
|
|
stat_fields(1,3)= 'PHIHYD ', |
120 |
|
|
stat_fname(3) = 'STAphihy', |
121 |
|
|
stat_freq(3) = 2635200.0, |
122 |
|
|
|
123 |
|
|
stat_fields(1,4)= 'THETA ', |
124 |
|
|
stat_fname(4) = 'STAtheta', |
125 |
|
|
stat_freq(4) = 2635200.0, |
126 |
|
|
|
127 |
|
|
stat_fields(1,5)= 'SALT ', |
128 |
|
|
stat_fname(5) = 'STAsalt ', |
129 |
|
|
stat_freq(5) = 2635200.0, |
130 |
|
|
|
131 |
|
|
stat_fields(1,6)= 'WVEL ', |
132 |
|
|
stat_fname(6) = 'STAwvel ', |
133 |
|
|
stat_freq(6) = 2635200.0, |
134 |
|
|
|
135 |
|
|
stat_fields(1,7)= 'SFLUX ', |
136 |
|
|
stat_fname(7) = 'STAsflux', |
137 |
|
|
stat_freq(7) = 2635200.0, |
138 |
|
|
|
139 |
|
|
stat_fields(1,8)= 'TFLUX ', |
140 |
|
|
stat_fname(8) = 'STAtflux', |
141 |
|
|
stat_freq(8) = 2635200.0, |
142 |
|
|
|
143 |
|
|
stat_fields(1,9)= 'WSLTMASS', |
144 |
|
|
stat_fname(9) = 'STAwsltm', |
145 |
|
|
stat_freq(9) = 2635200.0, |
146 |
|
|
|
147 |
|
|
stat_fields(1,10)='RHOAnoma', |
148 |
|
|
stat_fname(10) = 'STArhoan', |
149 |
|
|
stat_freq(10) = 2635200.0, |
150 |
|
|
# |
151 |
|
|
& |