source: CONFIG_DEVT/IPSLCM6.5_work_ENSEMBLES/modeles/ORCHIDEE/src_xml/context_orchidee.xml @ 5501

Last change on this file since 5501 was 5501, checked in by aclsce, 3 years ago

First import of IPSLCM6.5_work_ENSEMBLES working configuration

File size: 12.1 KB
Line 
1<!-- =========================================================================================================== -->
2<!-- ORCHIDEE context                                                                                            -->
3<!-- context_orchidee.xml : Configuration file for ORCHIDEE for production of output files using XIOS            -->
4<!--                                                                                                             -->
5<!-- $HeadURL: svn://forge.ipsl.jussieu.fr/orchidee/branches/ORCHIDEE_2_2/ORCHIDEE/src_xml/context_orchidee.xml $                -->
6<!-- $Date: 2019-08-05 11:11:40 +0200 (Mon, 05 Aug 2019) $                                                     -->
7<!-- $Revision: 6151 $                                                                                           -->
8<!-- =========================================================================================================== -->
9<context id="orchidee">
10 
11 
12  <!-- =========================================================================================================== -->
13  <!-- Definition of all existing variables                                                                        -->
14  <!-- DO NOT CHANGE THIS FILE                                                                                     -->
15  <!-- =========================================================================================================== -->
16  <field_definition src="./field_def_orchidee.xml"/>
17 
18 
19  <!-- =========================================================================================================== -->
20  <!-- Definition of output files                                                                                  -->
21  <!-- Definition of variables included in the different files                                                     -->
22  <!-- CHANGE THIS FILE BY ADDING THE FILES AND/OR VARIABLES YOU WANT TO PRODUCE                                   -->
23  <!-- Only variables and groups existing in field_def_orchidee.xml can be used                                    -->
24  <!-- =========================================================================================================== -->
25  <file_definition src="./file_def_orchidee.xml"/>
26 
27 
28  <!-- =========================================================================================================== -->
29  <!-- Definition of horizontal domain                                                                             -->
30  <!-- =========================================================================================================== -->
31  <domain_definition>
32
33    <!-- Model horizontal domain -->
34    <domain id="domain_landpoints"/>
35
36    <!-- Standard output horizontal domain:                                                                         -->
37    <!-- The same as the model grid is used by default for regular longitude-latitude grid. If the model is running -->
38    <!-- on an unstructred grid, this domain_landpoints will be changed to domain_landoints_regular, see below.     -->   
39    <domain id="domain_landpoints_out" domain_ref="domain_landpoints"/>
40
41    <!-- Interpolated output horizontal domain:                                                                   -->
42    <!-- This domain is used for output when the modele is running on an unstructured grid. For that case,        -->
43    <!-- the ORCHIDEE fortran code will switch so that domain_landpoints_out make reference to this domain.       -->
44    <domain id="domain_landpoints_regular" ni_glo="144" nj_glo="143" type="rectilinear"  >
45      <generate_rectilinear_domain lat_start="-90" lat_end="90" lon_start="0"/>
46      <interpolate_domain order="1" renormalize="true" detect_missing_value="true"/>
47    </domain>
48
49    <!-- Output horizontal domain used for CMIP6 simulations:                                                    -->
50    <!-- This domain is only used when running with the workflow CMIP6 and dr2xml_orchidee.xml files.            -->
51    <domain id="greordered"  domain_ref="domain_landpoints">
52      <reorder_domain invert_lat="true" shift_lon_fraction="0.5" min_lon="0" max_lon="360" />
53    </domain>
54   
55  </domain_definition>
56
57  <!-- =========================================================================================================== -->
58  <!-- Definition of vertical axis and extra dimensions                                                            -->
59  <!-- =========================================================================================================== -->
60  <axis_definition>
61    <!-- Vertical axis and extra dimensions -->
62    <axis id="nvm" name="veget" standard_name="model_level_number" long_name="Vegetation types" unit="1"/>
63    <axis id="nlut" name="nlut" standard_name="landusetype4" long_name="Number of land use types specified by LUMIP" unit="1"/>
64    <axis id="ncarb" name="ncarb" standard_name="ncarb" long_name="Number of soil carbon pools" unit="1"/>
65    <axis id="nparts" name="nparts" standard_name="nparts" long_name="Number of biomass compartments" unit="1"/>
66    <axis id="nlaip1" name="laiax" standard_name="model_level_number" long_name="Interface of LAI layers" unit="1"/>
67    <axis id="ngrnd" name="solth" standard_name="model_level_number" long_name="Thermal soil levels" unit="m"/>
68    <axis id="nstm" name="soiltyp" standard_name="model_level_number" long_name="Soil tiles" unit="1"/>
69    <axis id="nnobio" name="nobio" standard_name="model_level_number" long_name="Other surface types" unit="1"/>
70    <axis id="albtyp" standard_name="model_level_number" long_name="Albedo types" unit="1"/>
71    <axis id="nslm" name="solay" standard_name="model_level_number" long_name="Hydrological soil levels" unit="1"/>
72    <axis id="ncsm" name="ncsm"    standard_name="model_level_number" long_name="Soil type" unit="1"/>
73    <axis id="nsnow" name="snowlev" standard_name="model_level_number" long_name="Snow levels" unit="1"/>
74    <axis id="P10" standard_name="model_level_number" long_name="Pool 10 years" unit="1"/>
75    <axis id="P100" standard_name="model_level_number" long_name="Pool 100 years" unit="1"/>
76    <axis id="P11" standard_name="model_level_number" long_name="Pool 10 years + 1" unit="1"/>
77    <axis id="P101" standard_name="model_level_number" long_name="Pool 100 years + 1" unit="1"/>
78    <axis id="lai_time" />
79  </axis_definition>
80
81
82  <!-- =========================================================================================================== -->
83  <!-- Definition of model and output grids                                                                        -->
84  <!-- A grid is a combination of the horizontal domain and optionally one or several axes.                        -->
85  <!-- All grids are specified twice: the grid used by the model "grid_axis", and the grid used for output         -->
86  <!-- "grid_axis_out", where "axis" represents one or several axes used in the grid, see below.                   -->
87  <!-- When the model runs on the default regular longitude-latitude grid, "grid_axis_out" is the same as          -->
88  <!-- "grid_axis", no interpolation will be done. When the model runs on an unstructured grid, grid_axis_out is   --> 
89  <!-- different from grid_axis and XIOS will do the interpolation.                                                -->
90  <!-- =========================================================================================================== -->
91  <grid_definition>
92
93    <!-- Definition of horizontal grid, 2D grid -->
94    <grid id="grid_landpoints">
95      <domain domain_ref="domain_landpoints" />
96    </grid>
97    <grid id="grid_landpoints_out">
98      <domain domain_ref="domain_landpoints_out" />
99    </grid>
100
101    <!-- Definition of grids with fields having one extra dimension (one vertical axis or another dimension), 3D grids -->
102    <grid id="grid_nvm">
103      <domain domain_ref="domain_landpoints" />
104      <axis axis_ref="nvm" />
105    </grid>
106    <grid id="grid_nvm_out">
107      <domain domain_ref="domain_landpoints_out" />
108      <axis axis_ref="nvm" />
109    </grid>
110
111    <grid id="grid_nlut">
112      <domain domain_ref="domain_landpoints" />
113      <axis axis_ref="nlut" />
114    </grid>
115    <grid id="grid_nlut_out">
116      <domain domain_ref="domain_landpoints_out" />
117      <axis axis_ref="nlut" />
118    </grid>
119   
120    <grid id="grid_ncarb">
121      <domain domain_ref="domain_landpoints" />
122      <axis axis_ref="ncarb" />
123    </grid>
124    <grid id="grid_ncarb_out">
125      <domain domain_ref="domain_landpoints_out" />
126      <axis axis_ref="ncarb" />
127    </grid>
128   
129    <grid id="grid_nstm">
130      <domain domain_ref="domain_landpoints" />
131      <axis axis_ref="nstm" />
132    </grid>
133    <grid id="grid_nstm_out">
134      <domain domain_ref="domain_landpoints_out" />
135      <axis axis_ref="nstm" />
136    </grid>
137
138    <grid id="grid_nslm">
139      <domain domain_ref="domain_landpoints" />
140      <axis axis_ref="nslm" />
141    </grid>
142    <grid id="grid_nslm_out">
143      <domain domain_ref="domain_landpoints_out" />
144      <axis axis_ref="nslm" />
145    </grid>
146
147    <grid id="grid_ngrnd">
148      <domain domain_ref="domain_landpoints" />
149      <axis axis_ref="ngrnd" />
150    </grid>
151    <grid id="grid_ngrnd_out">
152      <domain domain_ref="domain_landpoints_out" />
153      <axis axis_ref="ngrnd" />
154    </grid>
155
156    <grid id="grid_nparts">
157      <domain domain_ref="domain_landpoints" />
158      <axis axis_ref="nparts" />
159    </grid>
160    <grid id="grid_nparts_out">
161      <domain domain_ref="domain_landpoints_out" />
162      <axis axis_ref="nparts" />
163    </grid>
164
165    <grid id="grid_albtyp">
166      <domain domain_ref="domain_landpoints" />
167      <axis axis_ref="albtyp" />
168    </grid>
169    <grid id="grid_albtyp_out">
170      <domain domain_ref="domain_landpoints_out" />
171      <axis axis_ref="albtyp" />
172    </grid>
173
174    <grid id="grid_nnobio">
175      <domain domain_ref="domain_landpoints" />
176      <axis axis_ref="nnobio" />
177    </grid>
178    <grid id="grid_nnobio_out">
179      <domain domain_ref="domain_landpoints_out" />
180      <axis axis_ref="nnobio" />
181    </grid>
182
183    <grid id="grid_nlaip1">
184      <domain domain_ref="domain_landpoints" />
185      <axis axis_ref="nlaip1" />
186    </grid>
187    <grid id="grid_nlaip1_out">
188      <domain domain_ref="domain_landpoints_out" />
189      <axis axis_ref="nlaip1" />
190    </grid>
191
192    <grid id="grid_nsnow">
193      <domain domain_ref="domain_landpoints" />
194      <axis axis_ref="nsnow" />
195    </grid>
196    <grid id="grid_nsnow_out">
197      <domain domain_ref="domain_landpoints_out" />
198      <axis axis_ref="nsnow" />
199    </grid>
200
201    <grid id="grid_P10">
202      <domain domain_ref="domain_landpoints" />
203      <axis axis_ref="P10" />
204    </grid>
205    <grid id="grid_P10_out">
206      <domain domain_ref="domain_landpoints_out" />
207      <axis axis_ref="P10" />
208    </grid>
209   
210    <grid id="grid_P11">
211      <domain domain_ref="domain_landpoints" />
212      <axis axis_ref="P11" />
213    </grid>
214    <grid id="grid_P11_out">
215      <domain domain_ref="domain_landpoints_out" />
216      <axis axis_ref="P11" />
217    </grid>
218
219    <grid id="grid_P100">
220      <domain domain_ref="domain_landpoints" />
221      <axis axis_ref="P100" />
222    </grid>
223    <grid id="grid_P100_out">
224      <domain domain_ref="domain_landpoints_out" />
225      <axis axis_ref="P100" />
226    </grid>
227
228    <grid id="grid_P101">
229      <domain domain_ref="domain_landpoints" />
230      <axis axis_ref="P101" />
231    </grid>
232    <grid id="grid_P101_out">
233      <domain domain_ref="domain_landpoints_out" />
234      <axis axis_ref="P101" />
235    </grid>
236
237
238    <!-- Definition of grids with fields having two extra dimensions, 4D grids -->
239    <grid id="grid_nslm_nstm">
240      <domain domain_ref="domain_landpoints" >
241        <interpolate_domain order="1"/>
242      </domain>
243      <axis axis_ref="nslm" />
244      <axis axis_ref="nstm" />
245    </grid>
246    <grid id="grid_nslm_nstm_out">
247      <domain domain_ref="domain_landpoints_out" />
248      <axis axis_ref="nslm" />
249      <axis axis_ref="nstm" />
250    </grid>
251
252    <grid id="grid_nvm_nstm">
253      <domain domain_ref="domain_landpoints" />
254      <axis axis_ref="nvm" />
255      <axis axis_ref="nstm" />
256    </grid>
257    <grid id="grid_nvm_nstm_out">
258      <domain domain_ref="domain_landpoints_out" />
259      <axis axis_ref="nvm" />
260      <axis axis_ref="nstm" />
261    </grid>
262
263  </grid_definition>
264 
265 
266</context>
Note: See TracBrowser for help on using the repository browser.