source: XIOS/trunk/inputs/Version2/iodef.xml @ 542

Last change on this file since 542 was 542, checked in by mhnguyen, 10 years ago

Modifying some codes to compromise with the new type of xios and do some final tests

+) Use new stricter type bool
+) Change set_timestep to set_context_attr

Test
+) On Curie
+) test_client and test_complete passed
+) test with LMDZ passed

TODO: It seems the bug of undefined referenced object has gone but there's a need of more tests

File size: 2.0 KB
Line 
1<?xml version="1.0"?>
2<simulation>
3
4 <context id="test" calendar_type="Gregorian" start_date="2012-03-01 15:00:00" time_origin="2012-02-29 15:00:00">
5
6
7   <field_definition level="1" enabled=".FALSE.">
8<!--     <field id="field_A"  operation="average" freq_op="3600s" domain_ref="domain_A"  axis_ref="axis_A" />-->
9     <field id="field_A"  operation="average" freq_op="3600s" grid_ref="grid_A" />
10   </field_definition>
11
12
13   <file_definition type="multiple_file" par_access="collective" output_freq="6h" output_level="10" enabled=".TRUE.">
14     <file id="output" name="output">
15        <field field_ref="field_A" />
16     </file>
17   </file_definition>
18
19
20   <axis_definition>
21     <axis id="axis_A" zoom_size="2" zoom_end="3" />
22     <axis id="axis_B" zoom_size="2" zoom_end="3" />
23   </axis_definition>
24
25   <domain_definition>
26     <domain id="domain_A" />
27   </domain_definition>
28
29   <grid_definition>
30     <grid_group id="gridGroup">
31       <grid id="grid_A">
32         <domain domain_ref="domain_A" />
33         <axis axis_ref="axis_A" />
34       <!--       <axis axis_ref="axis_A" />-->
35<!--       <domain id="domain_A" />-->
36<!--       <axis axis_ref="axis_B" />-->
37      <!--       <axis id="axis_A" />-->
38<!--       <axis id="axis_B" />-->
39       </grid>
40     </grid_group>
41   </grid_definition>
42
43  </context>
44
45  <context id="toto" >
46  </context>
47
48  <context id="titi">
49  </context>
50
51  <context id="tata">
52  </context>
53
54  <context id="xios">
55      <variable_definition>
56        <variable_group id="buffer">
57            <variable id="optimal_buffer_size" type="string">performance</variable>
58            <variable id="buffer_factor_size" type="double">1.0</variable>
59         </variable_group>
60
61        <variable_group id="parameters" >
62          <variable id="using_server" type="bool">false</variable>
63          <variable id="info_level" type="int">50</variable>
64                <variable id="print_file" type="bool">true</variable>
65        </variable_group>
66      </variable_definition>
67  </context>
68
69</simulation>
70
Note: See TracBrowser for help on using the repository browser.