Ignore:
Timestamp:
06/22/15 13:36:37 (9 years ago)
Author:
mhnguyen
Message:

Final tests of zoom and inverse on axis

+) Modify test_client and test_complete to work with new grid definition
+) Correct some bugs causing memory leak
+) Clean abundant code
+) Add more comments to new files

Test
+) On Curie
+) test_client and test_complete pass with correct results

File:
1 edited

Legend:

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

    r554 r624  
    77 
    88   <field_definition level="1" enabled=".FALSE."> 
    9      <field id="field_A"  operation="average" freq_op="3600s" domain_ref="domain_A"  axis_ref="axis_A" /> 
     9     <field id="field_A"  operation="average" freq_op="3600s" grid_ref="grid_A"/> 
     10     <field id="field_A_zoom"  operation="average" freq_op="3600s" field_ref="field_A" grid_ref="grid_A_zoom"/> 
    1011   </field_definition> 
    1112 
     
    1314   <file_definition type="multiple_file" par_access="collective" output_freq="6h" output_level="10" enabled=".TRUE."> 
    1415     <file id="output" name="output"> 
    15         <field field_ref="field_A" /> 
     16        <field field_ref="field_A_zoom" name="field_A" /> 
    1617     </file> 
    1718   </file_definition> 
     
    1920 
    2021   <axis_definition> 
    21      <axis id="axis_A" zoom_size="2" zoom_end="2" /> 
     22     <axis id="axis_A"/> 
     23     <axis id="axis_A_zoom" axis_ref="axis_A"> 
     24       <zoom_axis zoom_begin="1" zoom_size="2" /> 
     25     </axis> 
    2226   </axis_definition> 
    2327 
     
    2630   </domain_definition> 
    2731 
    28    <grid_definition /> 
    29  
     32   <grid_definition> 
     33     <grid id="grid_A"> 
     34       <domain domain_ref="domain_A" /> 
     35       <axis axis_ref="axis_A" /> 
     36     </grid> 
     37     <grid id="grid_A_zoom"> 
     38       <domain domain_ref="domain_A" /> 
     39       <axis axis_ref="axis_A_zoom" /> 
     40     </grid> 
     41   </grid_definition> 
    3042  </context> 
    3143 
Note: See TracChangeset for help on using the changeset viewer.