source: XIOS/xios_training/hands-on-6/answer/iodef.xml_1 @ 2046

Last change on this file since 2046 was 2046, checked in by ymipsl, 3 years ago
File size: 1.3 KB
Line 
1<?xml version="1.0"?>
2<simulation>
3 <context id="test">
4   <calendar type="Gregorian" time_origin="2021-01-01" start_date="2021-03" />
5
6   <domain_definition>
7     <domain id="domain" type="rectilinear" ni_glo="20" nj_glo="20"/>
8   </domain_definition>
9
10   <grid_definition>
11     <grid id="grid">
12       <domain domain_ref="domain"/>
13     </grid>
14   </grid_definition>
15   
16   <field_definition>
17     <field id="temp" name="temperature" operation="instant" grid_ref="grid"/>
18   </field_definition>
19
20   <file_definition>
21     <file id="output" name="output" output_freq="1h" type="one_file" >
22       <field field_ref="temp" />
23     </file>
24
25     <file name="output_wmax" output_freq="7d" type="one_file" >
26       <field field_ref="temp" name="weekly_max_at_noon" operation="maximum" freq_offset="11h" freq_op="1d"/>
27     </file>
28
29     <file name="output_wmin" output_freq="7d" type="one_file" >
30       <field field_ref="temp" name="weekly_min_at_midnight" operation="minimum" freq_offset="23h" freq_op="1d"/>
31     </file>
32
33  </file_definition>
34
35 </context>
36
37  <context id="xios">
38     <variable_definition>
39        <variable_group id="parameters" >
40          <variable id="print_file" type="bool">true</variable>
41        </variable_group>
42     </variable_definition>
43  </context>
44
45</simulation>
46
Note: See TracBrowser for help on using the repository browser.