source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/INCA/src/INCA_XML/context_input_inca.xml @ 6610

Last change on this file since 6610 was 6610, checked in by acosce, 10 months ago

INCA used for ICOLMDZORINCA_CO2_Transport_GMD_2023

File size: 3.1 KB
Line 
1<context id="inca">
2
3<!-- **************************************************** -->
4<!-- **************************************************** -->
5<!-- test avec lecture de tous les pas de temps d'un coup -->
6<!-- **************************************************** -->
7<!-- **************************************************** -->
8
9<!-- ******************************************************************************************  --> 
10<!-- definition des champs et du domaine pour lire les fichiers de vents 10m en haute resolution -->
11<!-- ******************************************************************************************  --> 
12
13<file_definition>
14
15  <file id="npp_file" name="npp" mode="read" output_freq="1mo" type="one_file" time_counter_name="toto" >
16
17    <field id="npp_id" name="NPP" operation="instant"  grid_ref="npp_grid" freq_offset="0ts"  />
18    <field id="timenpp_id" name="time" axis_ref="npp_time" operation="instant" freq_offset="0ts" />
19
20  </file>
21
22
23  <file id="landuse_file" name="landuse" mode="read" output_freq="1y" type="one_file">
24
25    <field id="landuse_id" name="fraction_landuse" operation="instant"  grid_ref="landuse_grid" freq_offset="0ts"  />
26    <field id="typelanduse_id" name="type" operation="instant"  axis_ref="landuse_type" freq_offset="0ts"  />
27
28  </file>
29
30
31</file_definition>
32
33
34<domain_definition>
35
36  <domain id="npp_dom" type="rectilinear">
37    <generate_rectilinear_domain   />
38  </domain>
39
40
41  <domain id="landuse_dom" type="rectilinear">
42    <generate_rectilinear_domain   />
43  </domain>
44
45
46</domain_definition>
47
48
49<grid_definition>
50
51    <grid id="npp_grid">
52      <domain domain_ref="npp_dom" />
53      <axis axis_ref="npp_time"  />
54    </grid>
55
56
57    <grid id="landuse_grid">
58      <domain domain_ref="landuse_dom" />
59      <axis axis_ref="landuse_type"  />
60    </grid>
61
62
63</grid_definition>
64
65<axis_definition>
66
67  <axis id="npp_time" name="time" /> 
68  <axis id="landuse_type" name="type" /> 
69
70</axis_definition>
71
72
73<field_definition>
74
75  <field id ="npp_read" field_ref="npp_id"  read_access="true" />
76  <field id ="timenpp_read" field_ref="timenpp_id"  read_access="true" />
77
78  <field id ="landuse_read" field_ref="landuse_id"  read_access="true" />
79  <field id ="typelanduse_read" field_ref="typelanduse_id" read_access="true"/>
80
81  <field id ="npp_interp" field_ref="npp_read"  read_access="true" grid_ref="grid_from_npp" /> 
82  <field id ="landuse_interp" field_ref="landuse_read"  read_access="true" grid_ref="grid_from_landuse" /> 
83
84</field_definition>
85
86
87<domain_definition>
88
89  <domain id="dom_from_npp" domain_ref="dom_chem">
90      <interpolate_domain order="1" />
91  </domain>
92
93  <domain id="dom_from_landuse" domain_ref="dom_chem">
94      <interpolate_domain order="1" />
95  </domain>
96
97</domain_definition>
98
99<grid_definition>
100
101    <grid id="grid_from_npp">
102      <domain domain_ref="dom_from_npp" />
103      <axis axis_ref="npp_time"  />
104    </grid>
105
106
107    <grid id="grid_from_landuse">
108      <domain domain_ref="dom_from_landuse" />
109      <axis axis_ref="landuse_type"  />
110    </grid>
111
112
113</grid_definition>
114
115
116</context>
117       
118
119       
120
121
122
123
124
125
126
127
128       
129
130
131
132       
133
134
135
136
137
138
139       
140       
141       
142       
143       
144
145       
146
147
148
149
150
151
152       
153       
154       
155       
156       
157
158       
159
160
161
162
Note: See TracBrowser for help on using the repository browser.