Skip to content
Snippets Groups Projects
nam_asminc 2.2 KiB
Newer Older
Nicolas Martin's avatar
Nicolas Martin committed
!-----------------------------------------------------------------------
&nam_asminc    !   assimilation increments                              ('key_asminc')
!-----------------------------------------------------------------------
   ln_bkgwri     = .false.    ! Logical switch for writing out background state
   ln_trainc     = .false.    ! Logical switch for applying tracer increments
   ln_dyninc     = .false.    ! Logical switch for applying velocity increments
   ln_sshinc     = .false.    ! Logical switch for applying SSH increments
   ln_sicinc     = .false.    ! Logical switch for applying sea ice concentration increments
   ln_sitinc     = .false.    ! Logical switch for applying sea ice thickness increments
   ln_asmdin     = .false.    ! Logical switch for Direct Initialization (DI)
   ln_asmiau     = .false.    ! Logical switch for Incremental Analysis Updating (IAU)
   nn_itbkg      = 0          ! Timestep of background in [0,nitend-nit000-1]
   nn_itdin      = 0          ! Timestep of background for DI in [0,nitend-nit000-1]
   nn_itiaustr   = 1          ! Timestep of start of IAU interval in [0,nitend-nit000-1]
   nn_itiaufin   = 15         ! Timestep of end of IAU interval in [0,nitend-nit000-1]
   nn_iaufn      = 0          ! Type of IAU weighting function
   ln_temnofreeze=.false.     ! Don't allow the temperature to drop below freezing
   nn_divdmp     = 0          ! Number of iterations of divergence damping operator
   ln_bv_check   = .false.    ! Don't apply T/S increments where Brunt-Vaisala (N2) checks fail
   rn_bv_thres   = 0.0        ! Brunt-Vaisala threshold for applying T/S increments
   rn_zmin_bv    = 400.0      ! Min depth to verify Brunt-Vaisala (N2) values
   rn_zmax_bv    = 1500.0     ! Max depth to verify Brunt-Vaisala (N2) values
   ln_salfix     = .false.    ! Logical switch for ensuring that the sa > salfixmin
   rn_salfixmin  = -9999.0    ! Minimum salinity after applying the increments
   rn_zhi_damin  = 0.45       ! Ice thickness for new sea ice from DA increment
   rn_ai_damin   = 0.15       ! Minimum total ice concentration to apply ice thickness increments
   rn_acat_damin = 0.01       ! Minimum ice concentration at category level to apply ice thickness increments
Nicolas Martin's avatar
Nicolas Martin committed
/