source: XIOS/dev/branch_yushan_merged/inputs/Unstruct/iodef.xml @ 1179

Last change on this file since 1179 was 1179, checked in by yushan, 7 years ago

MARK! This version is working for test_client and test_complete with large number of procs and threads

File size: 3.7 KB
Line 
1<?xml version="1.0"?>
2<simulation>
3
4 <context id="surface">
5   <calendar type="Gregorian" start_date="2012-03-01 15:00:00" time_origin="2012-02-28 15:00:00 + 1d" />
6
7   <field_definition level="1" enabled=".TRUE." default_value="1000">
8     <field id="field_A_srf"  operation="average" freq_op="3600s" grid_ref="grid_A"/>
9     <field id="field_B_srf"  operation="average" freq_op="3600s" grid_ref="grid_A"/>
10     <field id="field_A_expand"  operation="average" grid_ref="grid_dst" field_ref="field_A_srf"/>
11   </field_definition>
12
13   <file_definition type="one_file" par_access="collective" output_freq="1h" output_level="10" enabled=".TRUE." >
14     <file id="output" name="output">
15<!--        <field field_ref="field_A_expand" name="field"/> -->
16        <field field_ref="field_A_srf" name="field_A"/>
17        <field field_ref="field_A_srf" name="field_rect" grid_ref="grid_rect"/>
18        <field field_ref="field_A_srf" name="field_rect2" grid_ref="grid_rect2"/>
19      <!--  <field field_ref="field_A_srf" name="field_curv" grid_ref="grid_curv"/> -->
20     </file>
21
22     <!-- <file id="output_src_curvilinear" name="output_src_curvilinear" mode="read" >
23       <field id="src_field_curvilinear" name="field_A" grid_ref="src_grid_curvilinear_read" operation="instant"/>
24     </file> --> 
25 
26   </file_definition>
27
28   <axis_definition>
29     <axis id="axis_srf" positive="up"/>
30      <axis id="src_axis_curvilinear_read" positive="down" />
31   </axis_definition>
32
33   <domain_definition>
34     <domain id="domain_srf" />   
35 
36     <domain id="domain_dst" domain_ref="domain_srf" >
37       <expand_domain/>
38       <compute_connectivity_domain id="compute" type="node"/>
39     </domain>
40
41     <domain id="dst_domain_regular_pole" ni_glo="90" nj_glo="45" type="rectilinear">
42       <generate_rectilinear_domain id="domain_regular_pole"/>
43       <interpolate_domain write_weight="false" order="1" renormalize="true"/>       
44     </domain>
45
46     <domain id="dst_domain_regular_pole2" ni_glo="90" nj_glo="90" type="rectilinear">
47       <generate_rectilinear_domain id="domain_regular_pole2"/>
48       <interpolate_domain write_weight="false" order="1" renormalize="true"/>       
49     </domain>
50
51     <domain id="src_domain_curvilinear_read" type="curvilinear">
52        <generate_rectilinear_domain />
53     </domain>
54
55   </domain_definition>
56
57   <grid_definition>
58     <grid id="grid_A">
59       <domain domain_ref="domain_srf" />
60       <axis axis_ref="axis_srf" />
61     </grid>
62
63     <grid id="grid_dst">
64       <domain domain_ref="domain_dst" />
65       <axis axis_ref="axis_srf" />
66     </grid>
67
68     <grid id="grid_rect">
69       <domain domain_ref="dst_domain_regular_pole" />
70       <axis axis_ref="axis_srf" />
71     </grid>
72
73     <grid id="grid_rect2">
74       <domain domain_ref="dst_domain_regular_pole2" />
75       <axis axis_ref="axis_srf" />
76     </grid>
77
78     <grid id="grid_curv">
79       <domain id="src_domain_curvilinear_read" />
80       <axis axis_ref="axis_srf" />
81     </grid>
82
83     <grid id="src_grid_curvilinear_read">
84        <domain id="src_domain_curvilinear_read"/>
85        <axis axis_ref="src_axis_curvilinear_read" />
86     </grid> 
87
88   </grid_definition>
89  </context>
90
91  <context id="xios">
92      <variable_definition>
93        <variable_group id="buffer">
94            <variable id="optimal_buffer_size" type="string">performance</variable>
95            <variable id="buffer_size_factor" type="double">1.0</variable>
96         </variable_group>
97
98        <variable_group id="parameters" >
99          <variable id="using_server" type="bool">false</variable>
100          <variable id="info_level" type="int">50</variable>
101          <variable id="print_file" type="bool">true</variable>
102        </variable_group>
103      </variable_definition>
104  </context>
105
106</simulation>
107
Note: See TracBrowser for help on using the repository browser.