Custom Query (116 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 116)

Ticket Owner Reporter Resolution Summary
#45 ymipsl jgipsl fixed problem including a file containing a context in iodef.xml
Description

Following exemple does not work :

iodef.xml :

<?xml version="1.0"?>
<simulation>
  <context id="xios">
    <variable_definition>
      <variable_group id="buffer">
            buffer_size = 80000000
            buffer_server_factor_size = 2
         </variable_group>
      <variable_group id="parameters">
        <variable id="using_server" type="boolean">false</variable>
        <variable id="info_level" type="int">0</variable>
      </variable_group>
    </variable_definition>
  </context>

  <context src=".context_orchidee.xml"/>

</simulation>

context_orchidee.xml :

  <context id="orchidee">
    <field_definition src="./field_def_orchidee.xml"/>
    <file_definition src="./file_def_orchidee.xml"/>

    <domain_definition>
      <domain id="domain_landpoints"/>
    </domain_definition>

    <axis_definition>
      <!-- Vertical axis and extra dimensions in sechiba -->
      <axis id="veget" standard_name="model_level_number" long_name="Vegetation types" unit="1"/>
      <axis id="laiax" standard_name="model_level_number" long_name="Nb LAI" unit="1"/>
      <axis id="solth" standard_name="model_level_number" long_name="Soil levels" unit="m"/>
      <axis id="soiltyp" standard_name="model_level_number" long_name="Soil types" unit="1"/>
      <axis id="nobio" standard_name="model_level_number" long_name="Other surface types" unit="1"/>
      <axis id="albtyp" standard_name="model_level_number" long_name="Albedo types" unit="1"/>
      <axis id="solay" standard_name="model_level_number" long_name="Hydrol soil levels" unit="m"/>
      <!-- Vertical axis and extra dimensions in stomate -->
      <axis id="PFT" standard_name="model_level_number" long_name="Plant functional type" unit="1"/>
      <axis id="P10" standard_name="model_level_number" long_name="Pool 10 years" unit="1"/>
      <axis id="P100" standard_name="model_level_number" long_name="Pool 100 years" unit="1"/>
      <axis id="P11" standard_name="model_level_number" long_name="Pool 10 years + 1" unit="1"/>
      <axis id="P101" standard_name="model_level_number" long_name="Pool 100 years + 1" unit="1"/>
    </axis_definition>
  </context>

The same example works if putting the contents from the file context_orchidee.xml directly into iodef.xml instead of including the file by src.

#50 mhnguyen ymipsl fixed Create interface for setting/getting variables value from code
#52 mhnguyen aclsce fixed time_counter_bnds
Description

Is it possible to have time_counter_bnds variable in XIOS output file in order to have something similar to :

double time_counter(time_counter) ;

time_counter:axis = "T" ; time_counter:standard_name = "time" ; time_counter:units = "seconds since 1850-01-01 00:00:00" ; time_counter:calendar = "noleap" ; time_counter:title = "Time" ; time_counter:long_name = "Time axis" ; time_counter:time_origin = " 1850-JAN-01 00:00:00" ; time_counter:bounds = "time_counter_bnds" ;

double time_counter_bnds(time_counter, tbnds) ;

with :

time_counter = 43200, 129600, 216000, 302400, 388800 ;

}

time_counter_bnds =

0, 86400, 86400, 172800, 172800, 259200, 259200, 345600, 345600, 432000 ;

}

Thanks ! Arnaud

Note: See TracQuery for help on using queries.