source: branches/publications/ORCHIDEE_gmd-2018-57/src_xml/context_orchidee.xml

Last change on this file was 4482, checked in by fuxing.wang, 7 years ago

Modifing testrouting to make it work for XIOS. Finding the usable GRDC observation stations by comparing upstream basin area and distance between GRDC and model subbasin. The GRDC and the corresponding model subbasion information (Lon, Lat, Area, Discharge, etc.) is then written into river_grdc_XXXX.nc output. This nc file also contains the information of the pre-defined number of largest river basins. Another output grdc_river_desc.nc describes the all the matched GRDC river basins (for post-processing).

File size: 4.4 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="orchidee">
6 
7 
8  <!-- =========================================================================================================== -->
9  <!-- Definition of all existing variables                                                                        -->
10  <!-- DO NOT CHANGE THIS FILE                                                                                     -->
11  <!-- =========================================================================================================== -->
12  <field_definition src="./field_def_orchidee.xml"/>
13 
14 
15  <!-- =========================================================================================================== -->
16  <!-- Definition of output files                                                                                  -->
17  <!-- Definition of variables or groups included in the different files                                           -->
18  <!-- CHANGE THIS FILE BY ADDING THE FILES AND/OR VARIABLES YOU WANT TO PRODUCE                                   -->
19  <!-- Only variables and groups existing in field_def_orchidee.xml can be used                                    -->
20  <!-- =========================================================================================================== -->
21  <file_definition src="./file_def_orchidee.xml"/>
22 
23 
24  <!-- =========================================================================================================== -->
25  <!-- Definition of horizontal domain                                                                             -->
26  <!-- =========================================================================================================== -->
27  <domain_definition>
28    <domain id="domain_landpoints"/>
29    <domain id="domain_grdc"/>
30    <domain id="domain_largest"/>
31    <domain id="domain_landpt"/>
32  </domain_definition>
33 
34  <!-- =========================================================================================================== -->
35  <!-- Definition of vertical axis and extra dimensions                                                            -->
36  <!-- =========================================================================================================== -->
37  <axis_definition>
38    <!-- Vertical axis and extra dimensions in sechiba -->
39    <axis id="nvm" name="veget" standard_name="model_level_number" long_name="Vegetation types" unit="1"/>
40    <axis id="nlaip1" name="laiax" standard_name="model_level_number" long_name="Interface of LAI layers" unit="1"/>
41    <axis id="ngrnd" name="solth" standard_name="model_level_number" long_name="Thermal soil levels" unit="m"/>
42    <axis id="nstm" name="soiltyp" standard_name="model_level_number" long_name="Soil tiles" unit="1"/>
43    <axis id="nnobio" name="nobio" standard_name="model_level_number" long_name="Other surface types" unit="1"/>
44    <axis id="albtyp" standard_name="model_level_number" long_name="Albedo types" unit="1"/>
45    <axis id="nslm" name="solay" standard_name="model_level_number" long_name="Hydrological soil levels" unit="1"/>
46    <axis id="nbdl" name="soildiag" standard_name="model_level_number" long_name="Diagnostic soil levels" unit="m"/>
47    <axis id="nsnow" name="snowlev" standard_name="model_level_number" long_name="Snow levels" unit="1"/>
48
49    <!-- Vertical axis and extra dimensions in stomate -->
50    <axis id="P10" standard_name="model_level_number" long_name="Pool 10 years" unit="1"/>
51    <axis id="P100" standard_name="model_level_number" long_name="Pool 100 years" unit="1"/>
52    <axis id="P11" standard_name="model_level_number" long_name="Pool 10 years + 1" unit="1"/>
53    <axis id="P101" standard_name="model_level_number" long_name="Pool 100 years + 1" unit="1"/>
54  </axis_definition>
55
56  <grid_definition>
57    <grid id="grid_nslm_nstm">
58      <domain id="domain_landpoints" />
59      <axis id="nslm" />
60      <axis id="nstm" />
61    </grid>
62
63    <grid id="grid_nvm_nstm">
64      <domain id="domain_landpoints" />
65      <axis id="nvm" />
66      <axis id="nstm" />
67    </grid>
68  </grid_definition>
69
70</context>
Note: See TracBrowser for help on using the repository browser.