source: LMDZ6/trunk/DefLists/context_lmdzdyn.xml @ 4146

Last change on this file since 4146 was 4146, checked in by Laurent Fairhead, 2 years ago

Source code and xml files needed for XIOS output in the LMDZ LonLat? dynamical core.
One flag controls everything: ok_dyn_xios. Parameters controlling outputs need to be put in the xml
files, nothing is set in the code
Work to follow on the dynzon file and the modipsl/libIGCM framework.
ok_dyn_xios = n should not change anything

File size: 2.5 KB
Line 
1<!-- Context LMDZDYN -->
2<context id="LMDZDYN">
3<!--  <calendar type="D360" start_date="1980-01-01 00:00:00" /> -->
4
5  <!-- Define available variables -->
6  <field_definition src="./field_def_lmdzdyn.xml"/>
7
8  <!-- Define output files
9              Each file contains the list of variables and their output levels -->
10
11  <file_definition src="./file_def_histdynav_lmdz.xml"/>
12  <file_definition src="./file_def_histdyn_lmdz.xml"/>
13  <file_definition src="./file_def_dynzon_lmdz.xml"/>
14 
15  <!-- Define domains and groups of domains -->
16  <domain_definition>
17    <domain id="domain_U" data_dim="2" />
18  </domain_definition>
19  <domain_definition>
20    <domain id="domain_V" data_dim="2" />
21  </domain_definition>
22  <domain_definition>
23    <domain id="domain_T" data_dim="2" />
24  </domain_definition>
25 
26  <!-- Need to define a grid? Do it here -->
27<!--  <grid_definition>
28    <grid_group id="vertical" axis_ref="presnivs" />
29  </grid_> -->
30
31<!-- Define Scalar grid for GHG, orbital parameters and solar constants -->
32  <grid_definition>
33    <grid id="grid_scalar" >
34    <scalar/>
35    </grid>
36  </grid_definition>
37 
38  <!-- Define groups of vertical axes -->
39  <axis_definition>
40    <axis id="presnivs" standard_name="Vertical levels" unit="Pa">
41    </axis>
42    <axis id="Ahyb" standard_name="Ahyb comp of Hyb Cord" unit="Pa">
43    </axis> 
44    <axis id="Bhyb" standard_name="Bhyb comp of Hyb Cord" unit="">
45    </axis>
46    <axis id="Ahyb_inter" standard_name="A comp of Hyb Cord at interface" unit="Pa">
47    </axis> 
48    <axis id="Bhyb_inter" standard_name="B comp of Hyb Cord at interface" unit="">
49    </axis>
50    <axis id="Alt" standard_name="Height approx for scale heigh of 8km at levels" unit="km">
51    </axis>
52    <axis id="plev" standard_name="model_level_number" unit="Pa">
53    </axis>
54    <axis id="klev"  prec="8" long_name = "hybrid sigma pressure coordinate"
55          standard_name ="atmosphere_hybrid_sigma_pressure_coordinate" unit="1">
56    </axis>
57
58  </axis_definition>
59
60  <grid_definition>
61<!-- Define Scalar grid for GHG, orbital parameters and solar constants -->
62    <grid id="grid_scalar">
63    </grid>
64
65     <grid id="grid_gloT">
66        <domain id="domain_T" />
67     </grid>
68
69     <grid id="grid_gloT_presnivs">
70        <domain id="domain_T" />
71        <axis id="presnivs" />
72     </grid>
73
74     <grid id="grid_gloU_presnivs">
75        <domain id="domain_U" />
76        <axis id="presnivs" />
77     </grid>
78
79     <grid id="grid_gloV_presnivs">
80        <domain id="domain_V" />
81        <axis id="presnivs" />
82     </grid>
83
84
85  </grid_definition>
86
87</context>
88
Note: See TracBrowser for help on using the repository browser.