source: XIOS/trunk/inputs/CONNECTIVITY/test.xml @ 1078

Last change on this file since 1078 was 1078, checked in by mhnguyen, 7 years ago

Adding rectilinear and curvilinear domain for expand_domain transformation
-) Rectilinear/curvilinear is expanded not only locally but also globally, its global size ni_glo, nj_glo become ni_glo+2 and nj_glo+2
-) Two attributes i_periodic, j_periodic are only used for rectilinear/curvilinear to process priodic condition

+) Do some minor modification

Test
+) Add test_connectivity_expand
+) On Curie
+) Work (but need more real tests)

File size: 1.2 KB
Line 
1 
2
3 <context id="test">
4   <calendar type="Gregorian" start_date="2012-03-01 15:00:00" time_origin="2012-02-28 15:00:00 + 1d" />
5
6
7   <field_definition level="1" enabled=".TRUE.">
8     <field id="field_A"  operation="average" freq_op="3600s" grid_ref="grid_A"/>
9   </field_definition>
10
11
12   <file_definition type="one_file" par_access="collective" output_freq="6h" output_level="10" enabled=".TRUE.">
13     <file id="output" name="output">
14        <field field_ref="field_A" name="field_A" />
15     </file>
16     <file id="output_expand" name="output_expand">
17        <field id="field_B" name="field_B" field_ref="field_A" grid_ref="grid_B"/>
18     </file>
19   </file_definition>
20
21
22   <axis_definition>
23     <axis id="axis_A"/>
24   </axis_definition>
25
26   <domain_definition>
27     <domain id="domain_A" />
28   </domain_definition>
29
30   <grid_definition>
31     <grid id="grid_A">
32       <domain domain_ref="domain_A" />
33       <axis axis_ref="axis_A" />
34     </grid>
35     <grid id="grid_B">
36       <domain id="domain_B" domain_ref="domain_A" >
37         <expand_domain type="edge" i_periodic=".TRUE." j_periodic=".TRUE." />
38       </domain>
39       <axis axis_ref="axis_A" />
40     </grid>
41   </grid_definition>
42  </context>
Note: See TracBrowser for help on using the repository browser.