Ignore:
Timestamp:
09/15/15 17:31:13 (9 years ago)
Author:
mhnguyen
Message:

Modifying the interface of interpolation domain

+) Change node name from interpolate_from_file_domain to interpolate_domain and add some new atrributes
+) Add more tests into test_remap

Test
+) On Curie
+) test_remap works for direct weight calculation and reading weight calculation from file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/inputs/REMAP/iodef.xml

    r688 r689  
    99     <field id="src_field"  operation="instant" grid_ref="src_grid"/> 
    1010     <field id="dst_field"  operation="instant" field_ref="src_field" grid_ref="dst_grid"/> 
     11     <field id="dst_field_regular"  operation="instant" field_ref="src_field" grid_ref="dst_grid_regular"/> 
    1112   </field_definition> 
    1213 
     
    1415   <file_definition type="multiple_file" par_access="collective" output_freq="1ts" output_level="10" enabled=".TRUE."> 
    1516     <file id="output" name="output"> 
    16 <!--        <field field_ref="src_field" name="field" />--> 
     17        <field field_ref="src_field" name="field" /> 
    1718     </file> 
    1819     <file id="output_dst" name="output_dst"> 
    1920        <field field_ref="dst_field" name="field" /> 
     21     </file> 
     22     <file id="output_dst_regular" name="output_dst_regular"> 
     23        <field field_ref="dst_field_regular" name="field" /> 
    2024     </file> 
    2125   </file_definition> 
     
    2832     <domain id="src_domain" /> 
    2933     <domain id="dst_domain" domain_src="src_domain"> 
     34       <interpolate_domain file="weight.nc"/> 
     35     </domain> 
     36     <domain id="dst_domain_regular" domain_src="src_domain"> 
    3037       <generate_rectilinear_domain /> 
    31        <interpolate_from_file_domain file="weight.nc" /> 
     38       <interpolate_domain/> 
    3239     </domain> 
    3340   </domain_definition> 
     
    3643     <grid id="dst_grid"> 
    3744       <domain domain_ref="dst_domain" /> 
     45     </grid> 
     46     <grid id="dst_grid_regular"> 
     47       <domain domain_ref="dst_domain_regular" /> 
    3848     </grid> 
    3949     <grid id="src_grid"> 
Note: See TracChangeset for help on using the changeset viewer.