Custom Query (116 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (49 - 51 of 116)

Ticket Resolution Summary Owner Reporter
#51 fixed How does XIOS manage the "multiple_file" output ? ymipsl theetten
Description

Hi,

Curiosity question : I noticed that using xios in "attached mode" with "multiple file" option, the output files does not correspond to the domain decomposition used for the simulation. For example using 5 x 5 subdomains for the simulation, xios will create 25 files but not in the "shape" than the defined subdomain shape. The recombination of the files looks OK.

Thanks, Sébastien

#125 fixed Impact of "indexed_output" on fields on the same grid rlacroix aclsce
Description

It seems the use of "indexed_output" field attribute impacts the following fields written on the same grid.

  • Example 1 :
       <file id="output" name="output" >
          <field field_ref="field_A" />
        </file>
        <file id="output_indexed" name="output_indexed" >
          <field field_ref="field_A" indexed_output="true" />
        </file>
        <file id="output_noindexed" name="output_noindexed">
             <field field_ref="field_A" />
         </file>
    
    • Results
      • field_A in output.nc file is OK
      • field_A in output_noindexed.nc is NOT OK
  • Example 2 :
       <file id="output" name="output" >
          <field field_ref="field_A" />
        </file>
        <file id="output_noindexed" name="output_noindexed">
             <field field_ref="field_A" />
         </file>
        <file id="output_indexed" name="output_indexed" >
          <field field_ref="field_A" indexed_output="true" />
        </file>
    
    • Results
      • field_A in output.nc file is OK
      • field_A in output_noindexed.nc is OK
#105 fixed Implement grid type gaussian for interpolation ymipsl ymipsl
Description

Actually gaussian grid are considered like unstructured, ie edge are geodesic line (a great circle on the sphere). When interpolation is performed, interpolation error is increasing near the pole. Gaussian grid must specifie to the mapper that vertex on same latitude are linked with a small circle (like regular lon lat grid)

Note: See TracQuery for help on using queries.