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 3092 for branches/2011/dev_LOCEAN_CMCC_2011/NEMOGCM/NEMO/OPA_SRC/ASM – NEMO

Ignore:
Timestamp:
2011-11-14T15:46:00+01:00 (13 years ago)
Author:
cetlod
Message:

dev_LOCEAN_CMCC_2011:follow coding rules for ndivdmp namelist parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_LOCEAN_CMCC_2011/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90

    r3084 r3092  
    5656   LOGICAL, PUBLIC :: ln_sshinc = .FALSE. !: No sea surface height assimilation increment 
    5757   LOGICAL, PUBLIC :: ln_salfix = .FALSE. !: Apply minimum salinity check 
    58    INTEGER, PUBLIC ::   ndivdmp = 0       !: Apply divergence damping filter ndivdmp times 
     58   INTEGER, PUBLIC :: nn_divdmp = 0       !: Apply divergence damping filter nn_divdmp times 
    5959 
    6060   REAL(wp), PUBLIC, DIMENSION(:,:,:), ALLOCATABLE ::   t_bkg   , s_bkg      !: Background temperature and salinity 
     
    129129         &                 nitbkg, nitdin, nitiaustr, nitiaufin, niaufn,   & 
    130130         &                 nittrjfrq, ln_salfix, salfixmin,                & 
    131          &                 ndivdmp 
     131         &                 nn_divdmp 
    132132      !!---------------------------------------------------------------------- 
    133133 
     
    437437 
    438438 
    439       IF ( ln_dyninc .AND. ndivdmp.gt.0 ) THEN 
     439      IF ( ln_dyninc .AND. nn_divdmp > 0 ) THEN 
    440440 
    441441       IF( wrk_in_use( 2, 1) ) THEN 
     
    444444 
    445445 
    446        DO  jt = 1, ndivdmp 
     446       DO  jt = 1, nn_divdmp 
    447447 
    448448           DO jk = 1, jpkm1 
Note: See TracChangeset for help on using the changeset viewer.