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

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

Merge: from revisions [4491:4695/trunk/ORCHIDEE]

Merge done in [4671:4718/perso/albert.jornet/MICT_MERGE]

  • Property svn:keywords set to Date Revision HeadURL
File size: 3.3 KB
Line 
1<!-- =========================================================================================================== -->
2<!-- file_def_input_orchidee.xml : Definition of input files                                                     -->
3<!--                                                                                                             -->
4<!-- This file contains the definition of input files and there variables for ORCHIDEE read by XIOS.             -->
5<!-- The section for input files should not be modified. The model will enable true or false these files         -->
6<!-- according to if they are needed by the simulation set up.                                                   -->
7<!--                                                                                                             -->
8<!--                                                                                                             -->
9<!-- $HeadURL$         -->
10<!-- $Date$                                                       -->
11<!-- $Revision$                                                                                           -->
12<!-- =========================================================================================================== -->
13
14<file_definition type="one_file" par_access="collective" enabled=".TRUE." min_digits="4">
15
16  <!-- ========================================================================================================= -->
17  <!-- Definition of input files                                                                                 -->
18  <!-- The input files are activated or desactivated from the source code depending on simulation set up.        -->
19  <!-- The variables are here on the input source grid.                                                          -->
20  <!-- Values higher than 1e10 are considered as missing and the field is then set to 0. A normalization using   -->
21  <!-- the fraction of the grid cell with valied values are done in the field_def_orchidee.xml. If only missing  -->
22  <!-- values are found for a grid cell, then a default value is set, also in field_def_orchidee.xml.            -->
23  <!-- ========================================================================================================= -->
24  <file id="nudge_moistc" name="nudge_moistc" type="one_file" mode="read" output_freq="1d">
25    <field  id="moistc_in" name="moistc" operation="instant" grid_ref="grid_inputfile_moistc" freq_offset="1ts" > (this &gt; 1e10) ? 0 : this </field>
26    <field  id="mask_moistc_in" name="moistc" operation="instant" grid_ref="grid_inputfile_moistc" freq_offset="1ts" > (this &gt; 1e10) ? 0 : 1 </field>
27  </file>
28
29  <file id="nudge_snow" name="nudge_snow" type="one_file" mode="read" output_freq="1d">
30    <field  id="snowdz_in" name="snowdz" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this &gt; 1e10) ? 0 : this </field>
31    <field  id="snowrho_in" name="snowrho" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this &gt; 1e10) ? 0 : this </field>
32    <field  id="snowtemp_in" name="snowtemp" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this &gt; 1e10) ? 0 : this </field>
33    <field  id="mask_snow_in" name="snowdz" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this &gt; 1e10) ? 0 : 1 </field>
34  </file>
35 
36</file_definition>
Note: See TracBrowser for help on using the repository browser.