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 6533 for branches/UKMO/dev_r5518_GO6_package/NEMOGCM/CONFIG – NEMO

Ignore:
Timestamp:
2016-05-13T15:22:14+02:00 (8 years ago)
Author:
davestorkey
Message:

Update mixed-layer depth diagnostic code in UKMO/dev_r5518_GO6_package branch.
Custom merge into /branches/UKMO/dev_r5518_GO6_package/NEMOGCM: r6335 cf. r5534 of /branches/UKMO/dev_r5107_mld_zint/NEMOGCM@6532

Location:
branches/UKMO/dev_r5518_GO6_package/NEMOGCM/CONFIG/SHARED
Files:
2 edited

Legend:

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

    r6501 r6533  
    5454         <field id="mldr10_1max"  long_name="Max of Mixed Layer Depth (dsigma = 0.01 wrt 10m)"   field_ref="mldr10_1"   operation="maximum"                                                                          /> 
    5555         <field id="mldr10_1min"  long_name="Min of Mixed Layer Depth (dsigma = 0.01 wrt 10m)"   field_ref="mldr10_1"   operation="minimum"                                                                          /> 
    56          <field id="mldzint"      long_name="Mixed Layer Depth interpolated"                     standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta"                                unit="m"          /> 
     56         <field id="mldzint_1"    long_name="Mixed Layer Depth interpolated"                     standard_name="ocean_mixed_layer_thickness"                                                       unit="m"          /> 
     57         <field id="mldzint_2"    long_name="Mixed Layer Depth interpolated"                     standard_name="ocean_mixed_layer_thickness"                                                       unit="m"          /> 
     58         <field id="mldzint_3"    long_name="Mixed Layer Depth interpolated"                     standard_name="ocean_mixed_layer_thickness"                                                       unit="m"          /> 
     59         <field id="mldzint_4"    long_name="Mixed Layer Depth interpolated"                     standard_name="ocean_mixed_layer_thickness"                                                       unit="m"          /> 
     60         <field id="mldzint_5"    long_name="Mixed Layer Depth interpolated"                     standard_name="ocean_mixed_layer_thickness"                                                       unit="m"          /> 
     61         <field id="mldhtc_1"     long_name="Mixed Layer Depth integrated heat content"          standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content"   unit="J/m2"       /> 
     62         <field id="mldhtc_2"     long_name="Mixed Layer Depth integrated heat content"          standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content"   unit="J/m2"       /> 
     63         <field id="mldhtc_3"     long_name="Mixed Layer Depth integrated heat content"          standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content"   unit="J/m2"       /> 
     64         <field id="mldhtc_4"     long_name="Mixed Layer Depth integrated heat content"          standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content"   unit="J/m2"       /> 
     65         <field id="mldhtc_5"     long_name="Mixed Layer Depth integrated heat content"          standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content"   unit="J/m2"       /> 
    5766         <field id="heatc"        long_name="Heat content vertically integrated"                 standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content"   unit="J/m2"       /> 
    5867         <field id="saltc"        long_name="Salt content vertically integrated"                                                                                                                   unit="1e-3*kg/m2" /> 
  • branches/UKMO/dev_r5518_GO6_package/NEMOGCM/CONFIG/SHARED/namelist_ref

    r6498 r6533  
    883883!!             Tracers & Dynamics vertical physics namelists 
    884884!!====================================================================== 
    885 !!    namzdf            vertical physics 
    886 !!    namzdf_ric        richardson number dependent vertical mixing     ("key_zdfric") 
    887 !!    namzdf_tke        TKE dependent vertical mixing                   ("key_zdftke") 
    888 !!    namzdf_kpp        KPP dependent vertical mixing                   ("key_zdfkpp") 
    889 !!    namzdf_ddm        double diffusive mixing parameterization        ("key_zdfddm") 
    890 !!    namzdf_tmx        tidal mixing parameterization                   ("key_zdftmx") 
     885!!    namzdf        vertical physics 
     886!!    namzdf_ric    richardson number dependent vertical mixing         ("key_zdfric") 
     887!!    namzdf_tke    TKE dependent vertical mixing                       ("key_zdftke") 
     888!!    namzdf_kpp    KPP dependent vertical mixing                       ("key_zdfkpp") 
     889!!    namzdf_ddm    double diffusive mixing parameterization            ("key_zdfddm") 
     890!!    namzdf_tmx    tidal mixing parameterization                       ("key_zdftmx") 
    891891!!    namzdf_tmx_new    new tidal mixing parameterization               ("key_zdftmx_new") 
     892!!    namzdf_mldzint vertically-interpolated mixed-layer depth parameters 
    892893!!====================================================================== 
    893894! 
     
    10031004   ln_tsdiff   = .true.    !  account for differential T/S mixing (T) or not (F) 
    10041005/ 
     1006!------------------------------------------------------------------------------------------ 
     1007&namzdf_mldzint    !   Parameters for vertically-interpolated mixed-layer depth diagnostic 
     1008!------------------------------------------------------------------------------------------ 
     1009   nn_mld_diag = 0         !  Number of MLD diagnostics to use from below 
     1010 
     1011!              ! MLD criterion ! Reference ! Finite difference ! Gradient layer ! 
     1012!              ! type          ! depth     ! criterion         ! criterion      ! 
     1013   sn_mld1     =       1       ,    10.0   ,        0.2        ,       0.1 
     1014   sn_mld2     =       ''      ,      ''   ,         ''        ,        '' 
     1015   sn_mld3     =       ''      ,      ''   ,         ''        ,        '' 
     1016   sn_mld4     =       ''      ,      ''   ,         ''        ,        '' 
     1017   sn_mld5     =       ''      ,      ''   ,         ''        ,        '' 
     1018/ 
     1019 
    10051020!!====================================================================== 
    10061021!!                  ***  Miscellaneous namelists  *** 
Note: See TracChangeset for help on using the changeset viewer.