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 6437 – NEMO

Changeset 6437


Ignore:
Timestamp:
2016-04-07T15:57:52+02:00 (8 years ago)
Author:
timgraham
Message:

Dynamic SSH put in diaar5 instead as didn't work doing it with XIOS alone. Updated field_def to match
Removed iom_put call for bn2 from zdftmx (as it's now in diawri and can therefore be used with both the old and new tidal mixing schemes)

Location:
branches/UKMO/v3_6_extra_CMIP6_diagnostics/NEMOGCM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/v3_6_extra_CMIP6_diagnostics/NEMOGCM/CONFIG/SHARED/field_def.xml

    r6435 r6437  
    8686         <!-- variables available with key_diaar5 --> 
    8787         <field id="botpres"      long_name="Pressure at sea floor"   standard_name="sea_water_pressure_at_sea_floor"   unit="dbar" /> 
    88          <field id="sshdyn"       long_name="dynamic sea surface height"     standard_name="dynamic_sea_surface_height_above_geoid"     unit="m" > ssh - sshtot </field> 
     88         <field id="sshdyn"       long_name="dynamic sea surface height"     standard_name="dynamic_sea_surface_height_above_geoid"     unit="m" /> 
     89         <field id="sshdyn2"      long_name="square of dynamic sea surface height"     standard_name="dynamic_sea_surface_height_above_geoid_squared"     unit="m2" > sshdyn * sshdyn </field> 
    8990 
    9091         <!-- variables available with key_vvl --> 
  • branches/UKMO/v3_6_extra_CMIP6_diagnostics/NEMOGCM/NEMO/OPA_SRC/DIA/diaar5.F90

    r6427 r6437  
    9595      CALL iom_put( 'voltot', zvol               ) 
    9696      CALL iom_put( 'sshtot', zvolssh / area_tot ) 
     97      CALL iom_put( 'sshdyn', sshn(:,:) - (zvolssh / area_tot) ) 
    9798 
    9899      !                      
  • branches/UKMO/v3_6_extra_CMIP6_diagnostics/NEMOGCM/NEMO/OPA_SRC/ZDF/zdftmx.F90

    r6427 r6437  
    918918         CALL iom_put( "pcmap_tmx", pcmap_tmx ) 
    919919      ENDIF 
    920       CALL iom_put( "bn2", rn2 ) 
    921920      CALL iom_put( "emix_tmx", emix_tmx ) 
    922921       
Note: See TracChangeset for help on using the changeset viewer.