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

Last change on this file since 567 was 567, checked in by mhnguyen, 9 years ago

Implementing a grid formed by only one axis or group of axis

+) Add several new attributes to axis. From now on, each axis can be distributed on client side
+) Modify mask of grid to make it more flexible to different dimension
+) Fix some bugs relating to calculation of local data index on client
+) Clean some redundant codes

Test
+) On Curie, only test_new_features.f90
+) Test cases:

  • Grid composed of: 1 domain and 1 axis, 3 axis, 1 axis
  • Mode: Attached and connected
  • No of client-server: 6-2(Connected), 2 (Attached)

+) All tests passed and results are correct

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