1 |
jmc |
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 |
|
|
dumpAtLast = .TRUE., |
22 |
|
|
#-- |
23 |
jmc |
1.2 |
fields(1:11,1) = 'CH_TAIR ','CH_QAIR ','THETA ', |
24 |
|
|
'SI_Fract','SI_Thick', |
25 |
jmc |
1.1 |
'SIflxAtm','SIfrwAtm', |
26 |
jmc |
1.2 |
'CH_QNET ','CH_EmP ','CH_SH ','CH_LH ', |
27 |
jmc |
1.1 |
# 'CH_Uwind','CH_Vwind', |
28 |
|
|
fileName(1) = 'cheapAML', |
29 |
|
|
frequency(1) = -43200., |
30 |
|
|
timePhase(1) = -3600., |
31 |
jmc |
1.2 |
|
32 |
jmc |
1.1 |
fields(1:11,2) = 'SI_Fract','SI_Thick','THETA ','SI_Tsrf ', |
33 |
|
|
# 'SI_Tsrf ','SI_Tice1','SI_Tice2', |
34 |
|
|
# 'SI_Qice1','SI_Qice2', |
35 |
|
|
# 'SIsnwPrc','SIalbedo','SIsnwAge', |
36 |
|
|
# 'oceQnet ','oceQsw ','oceFWflx','oceSflux', |
37 |
jmc |
1.2 |
'SIflx2oc','SIfrw2oc','SIsaltFx','oceQsw ', |
38 |
jmc |
1.1 |
'SIflxAtm','SIfrwAtm', |
39 |
|
|
'CH_SH ','CH_LH ', |
40 |
|
|
fileName(2) = 'iceDiag', |
41 |
|
|
frequency(2) = 86400., |
42 |
|
|
& |
43 |
|
|
|
44 |
|
|
#-------------------- |
45 |
|
|
# Parameter for Diagnostics of per level statistics: |
46 |
|
|
#-------------------- |
47 |
|
|
# diagSt_mnc (logical): write stat-diags to NetCDF files (default=diag_mnc) |
48 |
|
|
# diagSt_regMaskFile : file containing the region-mask to read-in |
49 |
|
|
# nSetRegMskFile : number of region-mask sets within the region-mask file |
50 |
|
|
# set_regMask(i) : region-mask set-index that identifies the region "i" |
51 |
|
|
# val_regMask(i) : region "i" identifier value in the region mask |
52 |
|
|
#--for each output-stream: |
53 |
|
|
# stat_fName(n) : prefix of the output file name (max 80c long) for outp.stream n |
54 |
|
|
# stat_freq(n):< 0 : write snap-shot output every |stat_freq| seconds |
55 |
|
|
# > 0 : write time-average output every stat_freq seconds |
56 |
|
|
# stat_phase(n) : write at time = stat_phase + multiple of |stat_freq| |
57 |
|
|
# stat_region(:,n) : list of "regions" (default: 1 region only=global) |
58 |
|
|
# stat_fields(:,n) : list of selected diagnostics fields (8.c) in outp.stream n |
59 |
|
|
# (see "available_diagnostics.log" file for the full list of diags) |
60 |
|
|
#-------------------- |
61 |
|
|
&DIAG_STATIS_PARMS |
62 |
jmc |
1.2 |
stat_fields(1:20,1) = 'SI_Fract','SI_Thick','THETA ', |
63 |
jmc |
1.1 |
'SI_Tsrf ','SI_Tice1','SI_Tice2', |
64 |
|
|
# 'oceQnet ','oceQsw ','oceFWflx','oceSflux', |
65 |
|
|
'SIflx2oc','SIfrw2oc','SIsaltFx', |
66 |
|
|
'SIflxAtm','SIfrwAtm', |
67 |
|
|
'CH_TAIR ','CH_QAIR ', |
68 |
|
|
'CH_QNET ','CH_EmP ','CH_SH ','CH_LH ', |
69 |
jmc |
1.2 |
'CH_Prec ','CH_q100 ','CH_ssqt ', |
70 |
jmc |
1.1 |
stat_fName(1) = 'iceStDiag', |
71 |
|
|
stat_freq(1) = 43200., |
72 |
|
|
stat_phase(1) = 3600., |
73 |
|
|
& |