Changeset 4998
- Timestamp:
- 2014-12-22T17:16:45+01:00 (10 years ago)
- Location:
- trunk/NEMOGCM/NEMO/OPA_SRC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90
r4990 r4998 56 56 LOGICAL, PUBLIC, PARAMETER :: lk_asminc = .FALSE. !: No assimilation increments 57 57 #endif 58 LOGICAL, PUBLIC :: ln_bkgwri !: No output of the background state fields59 LOGICAL, PUBLIC :: ln_asmiau !: No applying forcing with an assimilation increment60 LOGICAL, PUBLIC :: ln_asmdin !: No direct initialization61 LOGICAL, PUBLIC :: ln_trainc !: No tracer (T and S) assimilation increments62 LOGICAL, PUBLIC :: ln_dyninc !: No dynamics (u and v) assimilation increments63 LOGICAL, PUBLIC :: ln_sshinc !: No sea surface height assimilation increment64 LOGICAL, PUBLIC :: ln_seaiceinc !: No sea ice concentration increment65 LOGICAL, PUBLIC :: ln_salfix !: Apply minimum salinity check58 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 !: No sea ice concentration increment 65 LOGICAL, PUBLIC :: ln_salfix = .FALSE. !: Apply minimum salinity check 66 66 LOGICAL, PUBLIC :: ln_temnofreeze = .FALSE. !: Don't allow the temperature to drop below freezing 67 INTEGER, PUBLIC :: nn_divdmp !: Apply divergence damping filter nn_divdmp times67 INTEGER, PUBLIC :: nn_divdmp !: Apply divergence damping filter nn_divdmp times 68 68 69 69 REAL(wp), PUBLIC, DIMENSION(:,:,:), ALLOCATABLE :: t_bkg , s_bkg !: Background temperature and salinity -
trunk/NEMOGCM/NEMO/OPA_SRC/DOM/domvvl.F90
r4990 r4998 44 44 45 45 !!* Namelist nam_vvl 46 LOGICAL , PUBLIC :: ln_vvl_zstar ! zstar vertical coordinate47 LOGICAL , PUBLIC :: ln_vvl_ztilde ! ztilde vertical coordinate48 LOGICAL , PUBLIC :: ln_vvl_layer ! level vertical coordinate49 LOGICAL , PUBLIC :: ln_vvl_ztilde_as_zstar ! ztilde vertical coordinate50 LOGICAL , PUBLIC :: ln_vvl_zstar_at_eqtor ! ztilde vertical coordinate51 LOGICAL , PUBLIC :: ln_vvl_kepe ! kinetic/potential energy transfer52 ! ! conservation: not used yet46 LOGICAL , PUBLIC :: ln_vvl_zstar = .FALSE. ! zstar vertical coordinate 47 LOGICAL , PUBLIC :: ln_vvl_ztilde = .FALSE. ! ztilde vertical coordinate 48 LOGICAL , PUBLIC :: ln_vvl_layer = .FALSE. ! level vertical coordinate 49 LOGICAL , PUBLIC :: ln_vvl_ztilde_as_zstar = .FALSE. ! ztilde vertical coordinate 50 LOGICAL , PUBLIC :: ln_vvl_zstar_at_eqtor = .FALSE. ! ztilde vertical coordinate 51 LOGICAL , PUBLIC :: ln_vvl_kepe = .FALSE. ! kinetic/potential energy transfer 52 ! ! conservation: not used yet 53 53 REAL(wp) :: rn_ahe3 ! thickness diffusion coefficient 54 54 REAL(wp) :: rn_rst_e3t ! ztilde to zstar restoration timescale [days] 55 55 REAL(wp) :: rn_lf_cutoff ! cutoff frequency for low-pass filter [days] 56 56 REAL(wp) :: rn_zdef_max ! maximum fractional e3t deformation 57 LOGICAL , PUBLIC :: ln_vvl_dbg 57 LOGICAL , PUBLIC :: ln_vvl_dbg = .FALSE. ! debug control prints 58 58 59 59 !! * Module variables
Note: See TracChangeset
for help on using the changeset viewer.