source: branches/ORCHIDEE_2_2/ORCHIDEE/src_xml/context_init_routing_native_orchidee.xml @ 8367

Last change on this file since 8367 was 8228, checked in by yann.meurdesoif, 9 months ago

Add xml files for native routing.
These 2 files must be included at iodef.xml level

YM

File size: 1.2 KB
Line 
1<context id="orchidee_init_routing">
2  <calendar type="d360" start_date="2000-01-01 00:00:00" time_origin="2000-01-01 00:00:00" timestep="1s"/>
3 
4  <domain_definition>
5    <domain id="routing_domain" type="rectilinear"/>
6    <domain id="routing_domain_expand" domain_ref="routing_domain">
7      <expand_domain type="edge" i_periodic="true" j_periodic="true" />
8    </domain>
9  </domain_definition>
10 
11  <field_definition>
12    <field id="trip_r_init" domain_ref="routing_domain" />
13    <field id="trip_r_final" domain_ref="routing_domain" />
14
15    <field id="trip_r" domain_ref="routing_domain" />
16    <field id="trip_rp1" field_ref="trip_r" domain_ref="routing_domain_expand" read_access="true"/>
17   
18    <field id="state_r" domain_ref="routing_domain" />
19    <field id="state_rp1" field_ref="state_r" domain_ref="routing_domain_expand" read_access="true"/>
20  </field_definition>
21 
22  <file_definition>
23    <file id="routing_correction" type="one_file" output_freq="1ts" sync_freq="1ts" enabled=".TRUE." >
24      <field field_ref="trip_r"  operation="instant"/>
25      <field field_ref="state_r" operation="instant"/>
26      <field field_ref="trip_r_init" operation="once"/>
27      <field field_ref="trip_r_final" operation="once"/>
28    </file>
29  </file_definition>
30
31</context>
Note: See TracBrowser for help on using the repository browser.