source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/INCA/src/INCA_XML/context_inca_speed.xml @ 6610

Last change on this file since 6610 was 6610, checked in by acosce, 10 months ago

INCA used for ICOLMDZORINCA_CO2_Transport_GMD_2023

File size: 6.1 KB
Line 
1<!-- =========================================================================================================== -->
2<!-- ORCHIDEE context                                                                                            -->
3<!-- context_orchidee.xml : Configuration file for ORCHIDEE for production of output files using XIOS            -->
4<!-- =========================================================================================================== -->
5<context id="inca">
6 
7 
8  <!-- =========================================================================================================== -->
9  <!-- Definition of all existing variables                                                                        -->
10  <!-- DO NOT CHANGE THIS FILE                                                                                     -->
11  <!-- =========================================================================================================== -->
12  <field_definition src="./field_def_inca.xml"/>
13  <!-- =========================================================================================================== -->
14  <!-- Definition of output files                                                                                  -->
15  <!-- Definition of variables or groups included in the different files                                           -->
16  <!-- CHANGE THIS FILE BY ADDING THE FILES AND/OR VARIABLES YOU WANT TO PRODUCE                                   -->
17  <!-- Only variables and groups existing in field_def_orchidee.xml can be used                                    -->
18  <!-- =========================================================================================================== -->
19  <file_definition src="./file_def_inca.xml"/>
20  <file_definition src="./file_def_inca_restart.xml"/>
21
22 
23  <!-- =========================================================================================================== -->
24  <!-- Definition of horizontal domain                                                                             -->
25  <!-- =========================================================================================================== -->
26  <domain_definition>
27    <domain id="dom_chem"/>
28
29
30    <!-- Standard output horizontal domain:                                                                         -->
31    <!-- The same as the model grid is used by default for regular longitude-latitude grid. If the model is running -->
32    <!-- on an unstructred grid, this dom_cheù will be changed to dom_chem_regular, see below.     -->   
33    <domain id="dom_chem_out" domain_ref="dom_chem" />
34
35
36    <!-- Interpolated output horizontal domain:                                                                   -->
37    <!-- This domain is used for output when the modele is running on an unstructured grid. For that case,        -->
38    <!-- the INCA fortran code will switch so that dom_chem_out make reference to this domain.       -->
39<!-- attention dim en dur -->
40    <domain id="dom_chem_regular" ni_glo="144" nj_glo="143" type="rectilinear"  >
41      <generate_rectilinear_domain lat_start="-90" lat_end="90" lon_start="0"/>
42      <interpolate_domain order="1" renormalize="true" detect_missing_value="true"/>
43    </domain>
44
45    <!-- Output horizontal domain used for CMIP6 simulations:                                                    -->
46    <!-- This domain is only used when running with the workflow CMIP6 and dr2xml_inca.xml files.            -->
47    <domain id="greordered"  domain_ref="dom_glo">
48      <reorder_domain invert_lat="true" shift_lon_fraction="0.5" min_lon="0" max_lon="360" />
49    </domain> 
50
51
52  </domain_definition>
53 
54  <!-- =========================================================================================================== -->
55  <!-- Definition of vertical axis and extra dimensions                                                            -->
56  <!-- =========================================================================================================== -->
57 
58  <!-- Define groups of vertical axes -->
59  <axis_definition>
60
61    <axis id="presnivs" standard_name="Vertical levels" unit="Pa" />
62    <axis id="paprsniv" prec="8" long_name = "number of layer interfaces" standard_name ="number of layer interfaces" unit="1"/>
63    <axis id="veget" />
64    <axis id="surf" />
65    <axis id="klev"  prec="8" long_name = "number of layers" standard_name ="number of layers" unit="1" />
66    <axis id="bnds" standard_name="bounds" unit="1" />
67
68    <axis id="axis_lat" standard_name="Latitude axis">
69        <reduce_domain operation="average" direction="iDir" />
70    </axis>
71
72
73  </axis_definition>
74
75  <grid_definition>
76
77<!-- specifics grids without lon/lat -->
78
79    <grid id="klev_bnds"> 
80       <axis axis_ref="klev" /> 
81       <axis axis_ref="bnds" /> 
82    </grid>
83
84    <grid id="klevp1_bnds"> 
85       <axis axis_ref="paprsniv" /> 
86       <axis axis_ref="bnds" /> 
87    </grid>
88
89    <grid id="grid_vertical">
90      <axis axis_ref="presnivs" /> 
91    </grid>
92
93<!-- grid 2D -->
94     <grid id="grid_chem">
95        <domain domain_ref="dom_chem" />
96     </grid>
97
98     <grid id="grid_chem_out">
99        <domain domain_ref="dom_chem_out" />
100     </grid>
101
102<!-- grids 3D -->
103
104     <grid id="grid_presnivs">
105        <domain domain_ref="dom_chem" />
106        <axis axis_ref="presnivs" />
107     </grid>
108
109     <grid id="grid_presnivs_out">
110        <domain domain_ref="dom_chem_out" />
111        <axis axis_ref="presnivs" />
112     </grid>
113
114     <grid id="grid_surf">
115        <domain domain_ref="dom_chem" />
116        <axis axis_ref="surf" />
117     </grid>
118
119     <grid id="grid_surf_out">
120        <domain domain_ref="dom_chem_out" />
121        <axis axis_ref="surf" />
122     </grid>
123
124     <grid id="grid_veget">
125        <domain domain_ref="dom_chem" />
126        <axis axis_ref="veget" />
127     </grid>
128
129     <grid id="grid_veget_out">
130        <domain domain_ref="dom_chem_out" />
131        <axis axis_ref="veget" />
132     </grid>
133
134     <grid id="grid_paprsniv">
135        <domain domain_ref="dom_chem" />
136        <axis axis_ref="paprsniv" />
137     </grid>
138
139     <grid id="grid_paprsniv_out">
140        <domain domain_ref="dom_chem_out" />
141        <axis axis_ref="paprsniv" />
142     </grid>
143
144  </grid_definition>
145
146</context>
Note: See TracBrowser for help on using the repository browser.