source: trunk/LMDZ.VENUS/deftank/context_lmdz_physics.xml @ 3315

Last change on this file since 3315 was 2971, checked in by emillour, 18 months ago

Venus PCM:
Update and reorganization of xml files.
Split context_lmdz_physics.xml in three files:
context_lmdz_physics.xml contains grid definitions and includes two other files:

  • field_def_physics.xml which contains the definitions of the variables and which should always be in sync with the source code
  • file_def_physics.xml which contains the definitions of the output files and their content.

EM

File size: 1.4 KB
Line 
1<context id="LMDZ">
2
3    <!-- Definition of a calendar is done in code via wxios_set_cal -->
4   
5    <!-- Definition of domains and groups of domains -->
6    <domain_definition>
7        <domain id="dom_glo" data_dim="2" />
8    </domain_definition>
9       
10    <!-- Definition of vertical axes
11         NB: these must be defined and set in code via
12         wxios_add_vaxis -->
13    <axis_definition>
14        <axis id="presnivs" 
15              standard_name="Pseudo-pressure of model vertical levels" 
16              unit="Pa">
17        </axis>
18        <axis id="altitude" 
19              standard_name="Pseudo-altitude of model vertical levels" 
20              unit="km">
21        </axis>
22    </axis_definition>
23   
24    <scalar_definition>
25           <scalar id="scalar" />
26    </scalar_definition>
27
28    <grid_definition>
29        <!-- toggle axis id below to change output vertical axis -->
30        <grid id="grid_3d">
31            <domain id="dom_glo" />
32                <axis id="presnivs" />
33                <!-- <axis id="altitude" /> -->
34        </grid>
35        <!-- to output scalars -->
36        <grid id="scalarpoint" >
37            <scalar />
38        </grid>
39    </grid_definition>
40   
41    <!-- Definition of model variables -->
42    <field_definition src="./field_def_physics.xml" />
43   
44    <!-- Definition of model output files and their contents -->
45    <file_definition src="./file_def_physics.xml" />
46
47</context>
Note: See TracBrowser for help on using the repository browser.