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: svn://forge.ipsl.jussieu.fr/orchidee/tags/ORCHIDEE_2_0/ORCHIDEE/src_xml/file_def_input_orchidee.xml $ --> |
---|
10 | <!-- $Date: 2017-08-28 17:07:44 +0200 (lun. 28 août 2017) $ --> |
---|
11 | <!-- $Revision: 4577 $ --> |
---|
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 > 1e10) ? 0 : this </field> |
---|
26 | <field id="mask_moistc_in" name="moistc" operation="instant" grid_ref="grid_inputfile_moistc" freq_offset="1ts" > (this > 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 > 1e10) ? 0 : this </field> |
---|
31 | <field id="snowrho_in" name="snowrho" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this > 1e10) ? 0 : this </field> |
---|
32 | <field id="snowtemp_in" name="snowtemp" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this > 1e10) ? 0 : this </field> |
---|
33 | <field id="mask_snow_in" name="snowdz" operation="instant" grid_ref="grid_inputfile_snow" freq_offset="1ts" > (this > 1e10) ? 0 : 1 </field> |
---|
34 | </file> |
---|
35 | |
---|
36 | </file_definition> |
---|