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