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

Changeset 12830


Ignore:
Timestamp:
2020-04-29T16:02:03+02:00 (4 years ago)
Author:
cguiavarch
Message:

Add lateral melting output

Location:
NEMO/branches/UKMO/NEMO_4.0.2_GO8_package
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.2_GO8_package/cfgs/SHARED/field_def_nemo-ice.xml

    r12824 r12830  
    213213          <field id="dmisum"       long_name="sea-ice mass change through surface melting"             standard_name="tendency_of_sea_ice_amount_due_to_surface_melting"                       unit="kg/m2/s" /> 
    214214          <field id="dmibom"       long_name="sea-ice mass change through bottom melting"              standard_name="tendency_of_sea_ice_amount_due_to_basal_melting"                         unit="kg/m2/s" /> 
     215     <field id="dmilam"       long_name="sea-ice mass change through lateral melting"             standard_name="tendency_of_sea_ice_amount_due_to_lateral_melting"                       unit="kg/m2/s" /> 
    215216          <field id="dmsspr"       long_name="snow mass change through snow fall"                      standard_name="snowfall_flux"                                                           unit="kg/m2/s" /> 
    216217          <field id="dmsmel"       long_name="snow mass change through melt"                           standard_name="surface_snow_melt_flux"                                                  unit="kg/m2/s" /> 
     
    550551          <field field_ref="dmisum"           name="sidmassmelttop"   /> 
    551552          <field field_ref="dmibom"           name="sidmassmeltbot"   /> 
     553          <field field_ref="dmilam"           name="sidmassmeltlat"   /> 
    552554          <field field_ref="dmsspr"           name="sndmasssnf"       /> 
    553555          <field field_ref="dmsmel"           name="sndmassmelt"      /> 
  • NEMO/branches/UKMO/NEMO_4.0.2_GO8_package/src/ICE/icewri.F90

    r12660 r12830  
    177177      IF( iom_use('dmisum') )   CALL iom_put( 'dmisum', - wfx_sum                                                             ) ! Sea-ice mass change through surface melting 
    178178      IF( iom_use('dmibom') )   CALL iom_put( 'dmibom', - wfx_bom                                                             ) ! Sea-ice mass change through bottom melting 
     179      IF( iom_use('dmilam') )   CALL iom_put( 'dmilam', - wfx_lam                                                             ) ! Sea-ice mass change through lateral melting 
    179180      IF( iom_use('dmtsub') )   CALL iom_put( 'dmtsub', - wfx_sub                                                             ) ! Sea-ice mass change through evaporation and sublimation 
    180181      IF( iom_use('dmssub') )   CALL iom_put( 'dmssub', - wfx_snw_sub                                                         ) ! Snow mass change through sublimation 
Note: See TracChangeset for help on using the changeset viewer.