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 3901 for branches/2013/dev_r3853_CNRS9_ConfSetting/NEMOGCM/NEMO/OPA_SRC/ASM – NEMO

Ignore:
Timestamp:
2013-05-03T14:35:21+02:00 (11 years ago)
Author:
clevy
Message:

Configuration Setting/Step2, see ticket:#1074

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3853_CNRS9_ConfSetting/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90

    r3875 r3901  
    5656    LOGICAL, PUBLIC, PARAMETER :: lk_asminc = .FALSE.  !: No assimilation increments 
    5757#endif 
    58    LOGICAL, PUBLIC :: ln_bkgwri = .FALSE. !: No output of the background state fields 
    59    LOGICAL, PUBLIC :: ln_asmiau = .FALSE. !: No applying forcing with an assimilation increment 
    60    LOGICAL, PUBLIC :: ln_asmdin = .FALSE. !: No direct initialization 
    61    LOGICAL, PUBLIC :: ln_trainc = .FALSE. !: No tracer (T and S) assimilation increments 
    62    LOGICAL, PUBLIC :: ln_dyninc = .FALSE. !: No dynamics (u and v) assimilation increments 
    63    LOGICAL, PUBLIC :: ln_sshinc = .FALSE. !: No sea surface height assimilation increment 
    64    LOGICAL, PUBLIC :: ln_seaiceinc = .FALSE. !: No sea ice concentration increment 
    65    LOGICAL, PUBLIC :: ln_salfix = .FALSE. !: Apply minimum salinity check 
     58   LOGICAL, PUBLIC :: ln_bkgwri     !: No output of the background state fields 
     59   LOGICAL, PUBLIC :: ln_asmiau     !: No applying forcing with an assimilation increment 
     60   LOGICAL, PUBLIC :: ln_asmdin     !: No direct initialization 
     61   LOGICAL, PUBLIC :: ln_trainc     !: No tracer (T and S) assimilation increments 
     62   LOGICAL, PUBLIC :: ln_dyninc     !: No dynamics (u and v) assimilation increments 
     63   LOGICAL, PUBLIC :: ln_sshinc     !: No sea surface height assimilation increment 
     64   LOGICAL, PUBLIC :: ln_seaiceinc !: No sea ice concentration increment 
     65   LOGICAL, PUBLIC :: ln_salfix     !: Apply minimum salinity check 
    6666   LOGICAL, PUBLIC :: ln_temnofreeze = .FALSE. !: Don't allow the temperature to drop below freezing 
    67    INTEGER, PUBLIC :: nn_divdmp = 0       !: Apply divergence damping filter nn_divdmp times 
     67   INTEGER, PUBLIC :: nn_divdmp     !: Apply divergence damping filter nn_divdmp times 
    6868 
    6969   REAL(wp), PUBLIC, DIMENSION(:,:,:), ALLOCATABLE ::   t_bkg   , s_bkg      !: Background temperature and salinity 
     
    144144      !----------------------------------------------------------------------- 
    145145 
    146       ! Set default values 
    147       ln_bkgwri = .FALSE. 
    148       ln_trainc = .FALSE. 
    149       ln_dyninc = .FALSE. 
    150       ln_sshinc = .FALSE. 
    151146      ln_seaiceinc = .FALSE. 
    152       ln_asmdin = .FALSE. 
    153       ln_asmiau = .TRUE. 
    154       ln_salfix = .FALSE. 
    155147      ln_temnofreeze = .FALSE. 
    156       salfixmin = -9999 
    157       nitbkg    = 0 
    158       nitdin    = 0       
    159       nitiaustr = 1 
    160       nitiaufin = 150      ! = 10 days with ORCA2 
    161       niaufn    = 0 
    162148 
    163149      REWIND( numnam_ref )              ! Namelist nam_asminc in reference namelist : Assimilation increment 
Note: See TracChangeset for help on using the changeset viewer.