New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 4341 for branches – NEMO

Changeset 4341 for branches


Ignore:
Timestamp:
2014-01-09T15:24:38+01:00 (10 years ago)
Author:
acc
Message:

Branch dev_MERGE_2013. Bug fix for #1211; addition of missing definitions to field_def.xml. key_vvl now working again with key_iomput

Location:
branches/2013/dev_MERGE_2013/NEMOGCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_MERGE_2013/NEMOGCM/CONFIG/SHARED/field_def.xml

    r4256 r4341  
    4949         <!-- variables available with key_diaar5 --> 
    5050         <field id="botpres"      long_name="Pressure at sea floor"                     unit="dbar"                     /> 
     51         <!-- variables available with key_diaar5/key_vvl --> 
    5152         <field id="cellthc"      long_name="Cell thickness"                            unit="m"    grid_ref="grid_T_3D"/> 
     53         <!-- variables available with key_vvl --> 
     54         <field id="tpt_dep"      long_name="T-point depth"                             unit="m"    grid_ref="grid_T_3D"/> 
     55         <field id="e3tdef"       long_name="T-cell thickness deformation"              unit="%"    grid_ref="grid_T_3D"/> 
    5256     </field_group> 
    5357 
  • branches/2013/dev_MERGE_2013/NEMOGCM/NEMO/OPA_SRC/DOM/domvvl.F90

    r4338 r4341  
    617617      ! ============= 
    618618      z_e3t_def(:,:,:) = ( ( fse3t_n(:,:,:) - e3t_0(:,:,:) ) / e3t_0(:,:,:) * 100 * tmask(:,:,:) ) ** 2 
    619       CALL iom_put( "e3t_n" , fse3t_n  (:,:,:) ) 
    620       CALL iom_put( "dept_n" , fsde3w_n (:,:,:) ) 
    621       CALL iom_put( "e3tdef" , z_e3t_def(:,:,:) ) 
     619      CALL iom_put( "cellthc" , fse3t_n  (:,:,:) ) 
     620      CALL iom_put( "tpt_dep" , fsde3w_n (:,:,:) ) 
     621      CALL iom_put( "e3tdef"  , z_e3t_def(:,:,:) ) 
    622622 
    623623      ! write restart file 
Note: See TracChangeset for help on using the changeset viewer.