source: trunk/LMDZ.MARS/deftank/file_def_physics_mars.xml @ 3977

Last change on this file since 3977 was 3977, checked in by jbclement, 5 days ago

PEM:

  • All operations computed by the PEM on the PCM data (averages, minima) are now performed by XIOS with two dedicated file. One is for daily operation outputs ("Xoutdaily4pem*.nc") and the other for yearly operation outputs ("Xoutyearly4pem*.nc").
  • Deletion of the reshaping tool "reshape_XIOS_output" used to convert XIOS outputs onto the PCM grid. Thus, the PEM is now able to read directly the format of XIOS outputs.
  • Addition of subroutines to convert data between a lon x lat array and a vector.

JBC

File size: 9.4 KB
Line 
1<!-- =========================================================================================================== -->
2<!-- file_def_physics_mars.xml                                                                                   -->
3<!-- Definition of output files from Martian physics                                                             -->
4<!-- =========================================================================================================== -->
5
6    <!-- Definition of output files -->
7    <file_definition>
8        <!-- FILE 1: Instantaneous outputs; output_freq is every physics time steps -->
9        <file id="histins"
10              name="Xhistins"
11              output_freq="12ts"
12              time_units="days"
13              type="one_file"
14              enabled=".false.">
15
16            <!-- VARS 0D -->
17            <field_group operation="instant"
18                         freq_op="1ts">
19                <field field_ref="Ls" />
20            </field_group>
21
22            <!-- VARS 2D -->
23            <field_group operation="instant"
24                         freq_op="1ts">
25                <field field_ref="area" operation="once" />
26                <field field_ref="ps" />
27                <field field_ref="tsurf" />
28                <field field_ref="co2ice" />
29                <field field_ref="fluxsurf_dn_sw" name="ISR" />
30                <field field_ref="fluxtop_lw" name="OLR" />
31            </field_group>
32
33            <!-- VARS 3D -->
34            <field_group operation="instant"
35                         freq_op="1ts">
36                <field field_ref="temp" />
37                <field field_ref="u" />
38                <field field_ref="v" />
39                <field field_ref="dustq" />
40                <field field_ref="dustN" />
41                <field field_ref="h2o_vap" />
42                <field field_ref="h2o_ice" />
43            </field_group>
44
45            <!-- VARS soil -->
46            <field_group operation="instant"
47                         freq_op="1ts">
48                <field field_ref="soiltemp" name="tsoil" />
49                <field field_ref="inertiedat" />
50            </field_group>
51        </file>
52
53        <!-- FILE 2: diurnal averages outputs; output_freq is every day -->
54        <file id="diurnalave"
55              name="Xdiurnalave"
56              output_freq="1d"
57              time_units="days"
58              type="one_file"
59              enabled=".false.">
60
61            <!-- VARS 0D -->
62            <field_group operation="average"
63                         freq_op="1ts">
64                <field field_ref="Ls" />
65            </field_group>
66
67            <!-- VARS 2D -->
68            <field_group operation="average"
69                         freq_op="1ts">
70                <field field_ref="area" operation="once" />
71                <field field_ref="ps" />
72            </field_group>
73
74            <!-- VARS 3D -->
75            <field_group operation="average"
76                         freq_op="1ts">
77                <field field_ref="temp" />
78                <field field_ref="u" />
79                <field field_ref="v" />
80            </field_group>
81        </file>
82
83        <!-- FILE 3: DAILY outputs for the PEM WITHOUT slope -->
84        <file id="outdaily4pem"
85              name="Xoutdaily4pem"
86              output_freq="1d"
87              type="one_file"
88              time_units="days"
89              enabled=".true.">
90
91            <!-- Daily average -->
92            <field_group operation="average"
93                         freq_op="1ts">
94                <field field_ref="ps" />
95                <field field_ref="h2o_layer1" />
96                <field field_ref="co2_layer1" />
97                <field field_ref="soiltemp" />
98                <field field_ref="waterdensity_soil" />
99            </field_group>
100        </file>
101
102        <!-- FILE 4: YEARLY outputs for the PEM WITHOUT sub-slope -->
103        <file id="outyearly4pem"
104              name="Xoutyearly4pem"
105              output_freq="1y"
106              type="one_file"
107              time_units="days"
108              enabled=".true.">
109
110            <!-- Yearly average -->
111            <field_group operation="average"
112                         freq_op="1ts">
113                <field field_ref="ps" />
114                <field field_ref="tsurf" />
115                <field field_ref="soiltemp" />
116                <field field_ref="waterdensity_surface" />
117            </field_group>
118
119            <!-- Yearly minimum -->
120            <field_group operation="minimum"
121                         freq_op="1ts">
122                <field field_ref="co2ice" />
123                <field field_ref="h2o_ice_s" />
124                <field field_ref="watercap" />
125                <field field_ref="perennial_co2ice" />
126            </field_group>
127        </file>
128
129        <!-- FILE 5: DAILY outputs for the PEM WITH sub-slopes -->
130        <file id="outdaily4pem_s"
131              name="Xoutdaily4pem"
132              output_freq="1d"
133              type="one_file"
134              time_units="days"
135              enabled=".false.">
136
137            <!-- Daily average -->
138            <field_group operation="average"
139                         freq_op="1ts">
140                <field field_ref="ps" name="ps_day_mean" />
141                <field field_ref="h2o_layer1" />
142                <field field_ref="co2_layer1" />
143                <field field_ref="soiltemp_slope01" />
144                <field field_ref="soiltemp_slope02" />
145                <field field_ref="soiltemp_slope03" />
146                <field field_ref="soiltemp_slope04" />
147                <field field_ref="soiltemp_slope05" />
148                <field field_ref="soiltemp_slope06" />
149                <field field_ref="soiltemp_slope07" />
150                <field field_ref="waterdensity_soil_slope01" />
151                <field field_ref="waterdensity_soil_slope02" />
152                <field field_ref="waterdensity_soil_slope03" />
153                <field field_ref="waterdensity_soil_slope04" />
154                <field field_ref="waterdensity_soil_slope05" />
155                <field field_ref="waterdensity_soil_slope06" />
156                <field field_ref="waterdensity_soil_slope07" />
157            </field_group>
158        </file>
159
160        <!-- FILE 6: YEARLY outputs for the PEM WITH sub-slope -->
161        <file id="outyearly4pem_s"
162              name="Xoutyearly4pem"
163              output_freq="1y"
164              type="one_file"
165              time_units="days"
166              enabled=".false.">
167
168            <!-- Yearly average -->
169            <field_group operation="average"
170                         freq_op="1ts">
171                <field field_ref="ps" name="ps_year_mean" />
172                <field field_ref="tsurf_slope01" />
173                <field field_ref="tsurf_slope02" />
174                <field field_ref="tsurf_slope03" />
175                <field field_ref="tsurf_slope04" />
176                <field field_ref="tsurf_slope05" />
177                <field field_ref="tsurf_slope06" />
178                <field field_ref="tsurf_slope07" />
179                <field field_ref="soiltemp_slope01" />
180                <field field_ref="soiltemp_slope02" />
181                <field field_ref="soiltemp_slope03" />
182                <field field_ref="soiltemp_slope04" />
183                <field field_ref="soiltemp_slope05" />
184                <field field_ref="soiltemp_slope06" />
185                <field field_ref="soiltemp_slope07" />
186                <field field_ref="waterdensity_surface_slope01" />
187                <field field_ref="waterdensity_surface_slope02" />
188                <field field_ref="waterdensity_surface_slope03" />
189                <field field_ref="waterdensity_surface_slope04" />
190                <field field_ref="waterdensity_surface_slope05" />
191                <field field_ref="waterdensity_surface_slope06" />
192                <field field_ref="waterdensity_surface_slope07" />
193            </field_group>
194
195            <!-- Yearly minimum -->
196            <field_group operation="minimum"
197                         freq_op="1ts">
198                <field field_ref="co2ice" />
199                <field field_ref="co2ice_slope01" />
200                <field field_ref="co2ice_slope02" />
201                <field field_ref="co2ice_slope03" />
202                <field field_ref="co2ice_slope04" />
203                <field field_ref="co2ice_slope05" />
204                <field field_ref="co2ice_slope06" />
205                <field field_ref="co2ice_slope07" />
206                <field field_ref="h2o_ice_s_slope01" />
207                <field field_ref="h2o_ice_s_slope02" />
208                <field field_ref="h2o_ice_s_slope03" />
209                <field field_ref="h2o_ice_s_slope04" />
210                <field field_ref="h2o_ice_s_slope05" />
211                <field field_ref="h2o_ice_s_slope06" />
212                <field field_ref="h2o_ice_s_slope07" />
213                <field field_ref="watercap_slope01" />
214                <field field_ref="watercap_slope02" />
215                <field field_ref="watercap_slope03" />
216                <field field_ref="watercap_slope04" />
217                <field field_ref="watercap_slope05" />
218                <field field_ref="watercap_slope06" />
219                <field field_ref="watercap_slope07" />
220                <field field_ref="perennial_co2ice_slope01" />
221                <field field_ref="perennial_co2ice_slope02" />
222                <field field_ref="perennial_co2ice_slope03" />
223                <field field_ref="perennial_co2ice_slope04" />
224                <field field_ref="perennial_co2ice_slope05" />
225                <field field_ref="perennial_co2ice_slope06" />
226                <field field_ref="perennial_co2ice_slope07" />
227            </field_group>
228        </file>
229
230    </file_definition>
Note: See TracBrowser for help on using the repository browser.