Changeset 2985 for trunk/LMDZ.GENERIC


Ignore:
Timestamp:
Jun 28, 2023, 4:05:56 PM (17 months ago)
Author:
romain.vande
Message:

Generic PEM :

Adapt PEM to run with the generic model.
(CPP_STD keyword to exclude some part of the code at the compilation)

RV

Location:
trunk/LMDZ.GENERIC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/deftank/field_def_physics.xml

    r2737 r2985  
    1414                   unit="degrees" />
    1515        </field_group>
     16
     17        <field_group id="fields_altitude" grid_ref="altitude_grid">
     18            <field id="aps"
     19                   long_name="aps" />
     20            <field id="bps"
     21                   long_name="bps" />
     22        </field_group>
     23
     24        <field_group id="fields_interlayer" grid_ref="interlayer_grid">
     25            <field id="ap"
     26                   long_name="ap" />
     27            <field id="bp"
     28                   long_name="bp" />
     29        </field_group>
     30
    1631       <!-- 1D variables (spectral)-->
    1732       <field_group id="IR_fields" grid_ref="grid_IR">
     
    4257                   long_name="Absorbed stellar radiation"
    4358                    unit="W/m2" /> 
     59            <field id="tsurf"
     60                   long_name="Surface Temperature"
     61                   unit="K" />
     62            <field id="co2ice"
     63                   long_name="CO2 ice thickness"
     64                   unit="kg/m2" />
     65            <field id="h2o_ice_s"
     66                   long_name="H2O ice thickness"
     67                   unit="kg/m2" />
     68            <field id="h2o_cropped"
     69                   long_name="h2o in the first layer" 
     70                   unit="kg/kg" />
     71            <field id="co2_cropped"
     72                   long_name="co2 in the first layer" 
     73                   unit="kg/kg" />
    4474        </field_group>
    4575
     
    74104                   long_name="Plume vertical velocity"
    75105                   unit="m/s" />
     106        </field_group>
    76107
    77         </field_group>
    78108        <!--Spectral IR 3D variables-->
    79109        <field_group id="spectral_IR_3D" grid_ref="grid_IR_3D">
  • trunk/LMDZ.GENERIC/libf/phystd/physiq_mod.F90

    r2972 r2985  
    26952695         CALL send_xios_field('h2o_vap',zq(:,:,igcm_h2o_vap))
    26962696         CALL send_xios_field('h2o_ice',zq(:,:,igcm_h2o_ice))
     2697
     2698         CALL send_xios_field('h2o_layer1',zq(:,1,igcm_h2o_vap))
     2699         CALL send_xios_field('co2_layer1',zq(:,1,igcm_co2_ice))
     2700         CALL send_xios_field('tsurf',tsurf)
     2701         CALL send_xios_field('co2ice',qsurf(1:ngrid,igcm_co2_ice))
     2702         CALL send_xios_field('h2o_ice_s',qsurf(1:ngrid,igcm_h2o_ice))
    26972703      ENDIF
    26982704
Note: See TracChangeset for help on using the changeset viewer.