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

Ignore:
Timestamp:
2017-10-10T12:43:01+02:00 (7 years ago)
Author:
jpalmier
Message:

JPALM -- enable to scale Chl sent to the UM and choose between surf or MLD chl

File:
1 edited

Legend:

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

    r8521 r8607  
    8585      &  jriver_n,jriver_si,jriver_c,jriver_alk,jriver_dep,   & 
    8686      &  xsdiss,                                              & 
    87       &  sedlam,sedlostpoc,jpkb,jdms,jdms_input,jdms_model 
     87      &  sedlam,sedlostpoc,jpkb,jdms,jdms_input,jdms_model,   & 
     88      &  scl_chl, chl_out 
    8889#if defined key_roam 
    8990      NAMELIST/natroam/ xthetaphy,xthetazoo,xthetanit,        & 
     
    246247      jdms_input  = 0 
    247248      jdms_model  = 0 
     249      scl_chl     = 0.5 
     250      chl_out     = 1 
    248251             
    249252      !REWIND(numnatm) 
     
    400403!!                      1 = ANDR, 2 = SIMO, 3 = ARAN, 4 = HALL, 5 = ANDM 
    401404!! 
     405!! UKESM1 - exported Chl to UM 
     406!!       scl_chl     : scaling factor to tune the chl field sent to the UM 
     407!!       chl_out     : select the chl field to send at the UM: 
     408!!                     1- Surf Chl ; 2- MLD Chl  
     409 
    402410      IF(lwp) THEN 
    403411!! 
     
    909917!! 
    910918!! UKESM1 - new diagnostics  !! Jpalm; AXY (08/07/15) 
    911          WRITE(numout,*) '=== UKESM1-related parameters' 
     919         WRITE(numout,*) '=== UKESM1-related parameters ===' 
     920         WRITE(numout,*) ' ---- --- ---' 
     921         WRITE(numout,*) '=== UKESM1 --  coupled DMS to the UM' 
    912922         WRITE(numout,*)     & 
    913923         &   ' include DMS diagnostic?,                                   jdms        = ', jdms 
     
    935945            &   ' choice of DMS model passed to atmosphere,                  jdms_model  = Anderson et al. (2001; modified)' 
    936946         endif 
     947         WRITE(numout,*) '=== UKESM1 --  coupled Chl to the UM' 
     948         WRITE(numout,*)        & 
     949            &   ' Scaling factor to export tuned Chl to the UM               scl_chl  = ', scl_chl 
     950         IF (chl_out .eq. 1) THEN 
     951            WRITE(numout,*)        & 
     952            &   ' Chl field to be scaled and sent to the UM:                 chl_out  = Surface Chl field ' 
     953         ELSEIF (chl_out .eq. 2) THEN 
     954            WRITE(numout,*)        & 
     955            &   ' Chl field to be scaled and sent to the UM:                 chl_out  = MLD Chl field ' 
     956         ENDIF 
    937957!! 
    938958      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.