source: XIOS/trunk/inputs/COMPLETE/context_atmosphere.xml @ 624

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

Final tests of zoom and inverse on axis

+) Modify test_client and test_complete to work with new grid definition
+) Correct some bugs causing memory leak
+) Clean abundant code
+) Add more comments to new files

Test
+) On Curie
+) test_client and test_complete pass with correct results

File size: 1.4 KB
Line 
1<!-- Context atm -->
2
3<context id="atmosphere">
4
5  <field_definition level="1" enabled=".FALSE." default_value="9.96921e+36">
6    <field id="field_A_atm"  name="field_A_atm_origin" operation="average" freq_op="1ts" grid_ref="grid_A_atm" />
7    <field id="field_A_atm_zoom"  name="field_A_atm" operation="average" freq_op="1ts" field_ref="field_A_atm" grid_ref="grid_A_atm_zoom" />
8  </field_definition>
9
10  <file_definition type="multiple_file" par_access="collective" output_freq="6h" sync_freq="6h" output_level="10" enabled=".TRUE.">
11    <file id="output_atmosphere" name="output_atmosphere">
12      <field field_ref="field_A_atm_zoom" />
13    </file>
14    <file id="output_atmosphere_zoom" name="output_atmosphere_zoom">
15      <field field_ref="field_A_atm" name="field_A_atm_zoom" />
16    </file>
17  </file_definition>
18
19  <axis_definition>
20    <axis id="axis_atm"/>
21    <axis id="axis_atm_zoom" axis_ref="axis_atm">
22      <zoom_axis zoom_size="2" zoom_end="2" />
23    </axis>
24  </axis_definition>
25
26  <domain_definition>
27    <domain id="domain_atm" />
28    <domain id="domain_atm_zoom" />
29  </domain_definition>
30
31  <grid_definition>
32   <grid id="grid_A_atm">
33     <domain domain_ref="domain_atm" />
34     <axis axis_ref="axis_atm" />
35   </grid>
36   <grid id="grid_A_atm_zoom">
37     <domain domain_ref="domain_atm" />
38     <axis axis_ref="axis_atm_zoom" />
39   </grid>
40  </grid_definition>
41
42
43</context>
Note: See TracBrowser for help on using the repository browser.