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 9187 for branches/NERC/dev_r5518_GO6_MEDUSA_DMS_TUNING/NEMOGCM/NEMO/TOP_SRC/MEDUSA/trcnam_medusa.F90 – NEMO

Ignore:
Timestamp:
2018-01-05T17:33:15+01:00 (6 years ago)
Author:
jpalmier
Message:

JPALM -- GMED #365 -- enable Anderson DMS tuning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/NERC/dev_r5518_GO6_MEDUSA_DMS_TUNING/NEMOGCM/NEMO/TOP_SRC/MEDUSA/trcnam_medusa.F90

    r9114 r9187  
    8787      &  xsdiss,                                              & 
    8888      &  sedlam,sedlostpoc,jpkb,jdms,jdms_input,jdms_model,   & 
    89       &  scl_chl, chl_out 
     89      &  scl_chl, chl_out, dmsmin, dmscut, dmsslp 
    9090#if defined key_roam 
    9191      NAMELIST/natroam/ xthetaphy,xthetazoo,xthetanit,        & 
     
    250250      scl_chl     = 1. 
    251251      chl_out     = 1 
     252      dmsmin      = 2.29 !! Anderson DMS default 
     253      dmscut      = 1.72 !! Anderson DMS default 
     254      dmsslp      = 8.24 !! Anderson DMS default 
    252255             
    253256      !REWIND(numnatm) 
     
    403406!!       jdms_model  :  choice of DMS model passed to atmosphere 
    404407!!                      1 = ANDR, 2 = SIMO, 3 = ARAN, 4 = HALL, 5 = ANDM 
    405 !! 
     408!!       dmsmin      : DMS minimum value for DMS Anderson (ANDR) sheme ONLY 
     409!!       dmscut      : DMS cutoff value for DMS Anderson (ANDR) sheme ONLY 
     410!!       dmsslp      : DMS slope value for DMS Anderson (ANDR) sheme ONLY 
    406411!! UKESM1 - exported Chl to UM 
    407412!!       scl_chl     : scaling factor to tune the chl field sent to the UM 
     
    948953               &   ' choice of DMS model passed to atmosphere,                  jdms_model  = Anderson et al. (2001; modified)' 
    949954            endif 
    950           
     955            if (jdms_model .eq. 1) then 
     956               WRITE(numout,*)     & 
     957               &   ' Anderson DMS model tuned parameters:                       DMS minimum = ',dmsmin,'. -- Default = 2.29 ' 
     958               WRITE(numout,*)     & 
     959               &   ' Anderson DMS model tuned parameters:                       DMS cutoff  = ',dmscut,'. -- Default = 1.72 ' 
     960               WRITE(numout,*)     & 
     961               &   ' Anderson DMS model tuned parameters:                       DMS slope   = ',dmsslp,'. -- Default = 8.24 ' 
     962            endif 
     963 
    951964            WRITE(numout,*) '=== UKESM1 --  coupled Chl to the atmosphere' 
    952965            WRITE(numout,*)        & 
Note: See TracChangeset for help on using the changeset viewer.