source: branches/publications/ORCHIDEE_GLUC_r6545/src_xml/context_orchidee.xml @ 6737

Last change on this file since 6737 was 5058, checked in by albert.jornet, 6 years ago

Fix: due to an error in XIOS, the interpolate option in context_orchidee.xml is removed until is fixed. It prevents Orchidee from running.
Clean: create temporary array in thermosoil. This removes a performance run-time warning message.

  • Property svn:keywords set to Date Revision HeadURL
File size: 9.4 KB
Line 
1<!-- =========================================================================================================== -->
2<!-- ORCHIDEE context                                                                                            -->
3<!-- context_orchidee.xml : Configuration file for ORCHIDEE for production of output files using XIOS            -->
4<!--                                                                                                             -->
5<!-- $HeadURL$                -->
6<!-- $Date$                                                     -->
7<!-- $Revision$                                                                                           -->
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 input files                                                                                   -->
21  <!-- DO NOT CHANGE THIS FILE                                                                                     -->
22  <!-- =========================================================================================================== -->
23  <file_definition src="./file_def_input_orchidee.xml"/>
24
25
26  <!-- =========================================================================================================== -->
27  <!-- Definition of output files                                                                                  -->
28  <!-- Definition of variables or groups included in the different files                                           -->
29  <!-- CHANGE THIS FILE BY ADDING THE FILES AND/OR VARIABLES YOU WANT TO PRODUCE                                   -->
30  <!-- Only variables and groups existing in field_def_orchidee.xml can be used                                    -->
31  <!-- =========================================================================================================== -->
32  <file_definition src="./file_def_orchidee.xml"/>
33 
34 
35  <!-- =========================================================================================================== -->
36  <!-- Definition of horizontal domain                                                                             -->
37  <!-- =========================================================================================================== -->
38  <domain_definition>
39    <domain id="domain_landpoints"/>
40
41    <domain id="domain_inputfile_moistc" type="rectilinear">
42      <generate_rectilinear_domain />
43    </domain>
44
45    <domain id="domain_inputfile_snow" type="rectilinear">
46      <generate_rectilinear_domain />
47    </domain>
48  </domain_definition>
49 
50  <!-- =========================================================================================================== -->
51  <!-- Definition of vertical axis and extra dimensions                                                            -->
52  <!-- =========================================================================================================== -->
53  <axis_definition>
54    <!-- Vertical axis and extra dimensions in sechiba -->
55    <axis id="nvm" name="veget" standard_name="model_level_number" long_name="Vegetation types" unit="1"/>
56    <axis id="nlaip1" name="laiax" standard_name="model_level_number" long_name="Interface of LAI layers" unit="1"/>
57    <axis id="ngrnd" name="solth" standard_name="model_level_number" long_name="Thermal soil levels" unit="m"/>
58    <axis id="nstm" name="soiltyp" standard_name="model_level_number" long_name="Soil tiles" unit="1"/>
59    <axis id="nnobio" name="nobio" standard_name="model_level_number" long_name="Other surface types" unit="1"/>
60    <axis id="albtyp" standard_name="model_level_number" long_name="Albedo types" unit="1"/>
61    <axis id="nslm" name="solay" standard_name="model_level_number" long_name="Hydrological soil levels" unit="1"/>
62    <axis id="nsnow" name="snowlev" standard_name="model_level_number" long_name="Snow levels" unit="1"/>
63
64    <!-- Vertical axis and extra dimensions in stomate -->
65    <axis id="ndeep" standard_name="model_level_number" long_name="Number of soil layers" unit="1"/> 
66    <axis id="nwp" standard_name="model_level_number" long_name="Number of types of wood product pool considered" unit="1"/> 
67    <axis id="P10" standard_name="model_level_number" long_name="Pool 10 years" unit="1"/>
68    <axis id="P100" standard_name="model_level_number" long_name="Pool 100 years" unit="1"/>
69    <axis id="P11" standard_name="model_level_number" long_name="Pool 10 years + 1" unit="1"/>
70    <axis id="P101" standard_name="model_level_number" long_name="Pool 100 years + 1" unit="1"/>
71  </axis_definition>
72
73
74  <!-- =========================================================================================================== -->
75  <!-- Definition of output and input grids                                                                        -->
76  <!-- =========================================================================================================== -->
77  <grid_definition>
78
79    <!-- Definition of output grids -->
80    <grid id="grid_landpoints">
81      <domain id="domain_landpoints" />
82    </grid>
83
84    <grid id="grid_ndeep_nvm">
85      <domain domain_ref="domain_landpoints" />
86      <axis axis_ref="ndeep" />
87      <axis axis_ref="nvm" />
88    </grid>
89
90    <grid id="grid_nsnow_nvm">
91      <domain domain_ref="domain_landpoints" />
92      <axis axis_ref="nsnow" />
93      <axis axis_ref="nvm" />
94    </grid>
95
96    <grid id="grid_P10_nwp">
97      <domain domain_ref="domain_landpoints" />
98      <axis axis_ref="P10" />
99      <axis axis_ref="nwp" />
100    </grid>
101    <grid id="grid_P11_nwp">
102      <domain domain_ref="domain_landpoints" />
103      <axis axis_ref="P11" />
104      <axis axis_ref="nwp" />
105    </grid>
106    <grid id="grid_P100_nwp">
107      <domain domain_ref="domain_landpoints" />
108      <axis axis_ref="P100" />
109      <axis axis_ref="nwp" />
110    </grid>
111    <grid id="grid_P101_nwp">
112      <domain domain_ref="domain_landpoints" />
113      <axis axis_ref="P101" />
114      <axis axis_ref="nwp" />
115    </grid>
116
117    <grid id="grid_nslm_nstm">
118      <domain domain_ref="domain_landpoints" />
119      <axis axis_ref="nslm" />
120      <axis axis_ref="nstm" />
121    </grid>
122<!--    <grid id="grid_nslm_nstm">
123      <domain domain_ref="domain_landpoints" >
124        <interpolate_domain order="1"/>
125      </domain>
126      <axis axis_ref="nslm" />
127      <axis axis_ref="nstm" />
128    </grid>-->
129
130    <grid id="grid_nvm_nstm">
131      <domain domain_ref="domain_landpoints" />
132      <axis axis_ref="nvm" />
133      <axis axis_ref="nstm" />
134    </grid>
135
136    <grid id="grid_ngrnd_nvm">
137      <domain domain_ref="domain_landpoints" />
138      <axis axis_ref="ngrnd" />
139      <axis axis_ref="nvm" />
140    </grid>
141
142    <grid id="grid_nvm">
143      <domain domain_ref="domain_landpoints" />
144      <axis axis_ref="nvm" />
145    </grid>
146
147    <grid id="grid_nstm">
148      <domain domain_ref="domain_landpoints" />
149      <axis axis_ref="nstm" />
150    </grid>
151
152    <grid id="grid_nslm">
153      <domain domain_ref="domain_landpoints" />
154      <axis axis_ref="nslm" />
155    </grid>
156
157    <grid id="grid_ngrnd">
158      <domain domain_ref="domain_landpoints" />
159      <axis axis_ref="ngrnd" />
160    </grid>
161
162    <grid id="grid_albtyp">
163      <domain domain_ref="domain_landpoints" />
164      <axis axis_ref="albtyp" />
165    </grid>
166
167    <grid id="grid_nnobio">
168      <domain domain_ref="domain_landpoints" />
169      <axis axis_ref="nnobio" />
170    </grid>
171
172    <grid id="grid_nlaip1">
173      <domain domain_ref="domain_landpoints" />
174      <axis axis_ref="nlaip1" />
175    </grid>
176
177    <grid id="grid_nsnow">
178      <domain domain_ref="domain_landpoints" />
179      <axis axis_ref="nsnow" />
180    </grid>
181<!--    <grid id="grid_nsnow">
182      <domain domain_ref="domain_landpoints" >
183        <interpolate_domain order="1"/>
184      </domain>
185      <axis axis_ref="nsnow" />
186    </grid>-->
187
188    <grid id="grid_P10">
189      <domain domain_ref="domain_landpoints" />
190      <axis axis_ref="P10" />
191    </grid>
192
193    <grid id="grid_P11">
194      <domain domain_ref="domain_landpoints" />
195      <axis axis_ref="P11" />
196    </grid>
197
198    <grid id="grid_P100">
199      <domain domain_ref="domain_landpoints" />
200      <axis axis_ref="P100" />
201    </grid>
202
203    <grid id="grid_P101">
204      <domain domain_ref="domain_landpoints" />
205      <axis axis_ref="P101" />
206    </grid>
207
208    <grid id="grid_nwp">
209      <domain domain_ref="domain_landpoints" />
210      <axis axis_ref="nwp" />
211    </grid>
212
213    <grid id="grid_ndeep">
214      <domain domain_ref="domain_landpoints" />
215      <axis axis_ref="ndeep" />
216    </grid>
217
218    <!-- Definition of input grids -->
219    <grid id="grid_inputfile_moistc">
220      <domain domain_ref="domain_inputfile_moistc"/>
221      <axis axis_ref="nslm" />
222      <axis axis_ref="nstm" />
223    </grid> 
224
225    <grid id="grid_inputfile_snow">
226      <domain domain_ref="domain_inputfile_snow"/>
227      <axis axis_ref="nsnow" />
228    </grid> 
229  </grid_definition>
230 
231</context>
Note: See TracBrowser for help on using the repository browser.