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 9067 for branches/2017 – NEMO

Changeset 9067 for branches/2017


Ignore:
Timestamp:
2017-12-14T23:49:18+01:00 (6 years ago)
Author:
jchanut
Message:

Adapt VORTEX namelists and restore ssh initialization in domvvl

Location:
branches/2017/dev_merge_2017/NEMOGCM/CONFIG/TEST_CASES/VORTEX
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/CONFIG/TEST_CASES/VORTEX/EXP00/1_namelist_cfg

    r8901 r9067  
    6969/ 
    7070!----------------------------------------------------------------------- 
    71 &nambfr        !   bottom friction 
    72 !----------------------------------------------------------------------- 
    73    nn_bfr      =    0     !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    74                           !                              = 2 : nonlinear friction 
    75 / 
    76 !----------------------------------------------------------------------- 
    7771&nambbc        !   bottom temperature boundary condition                (default: NO) 
    7872!----------------------------------------------------------------------- 
     
    10498      nn_fct_h   =  2            !  =2/4, horizontal 2nd / 4th order 
    10599      nn_fct_v   =  2            !  =2/4, vertical   2nd / COMPACT 4th order 
    106       nn_fct_zts =  0            !  >=1,  2nd order FCT scheme with vertical sub-timestepping 
    107       !                          !        (number of sub-timestep = nn_fct_zts) 
    108100   ln_traadv_mus = .false. !  MUSCL scheme 
    109101      ln_mus_ups = .false.       !  use upstream scheme near river mouths 
     
    119111&namtra_ldf    !   lateral diffusion scheme for tracers 
    120112!----------------------------------------------------------------------- 
    121    !                       !  Operator type:    both false = No lateral diffusion 
     113  !                       !  Operator type: 
     114   ln_traldf_NONE  =  .true.  !  No explicit diffusion 
    122115   ln_traldf_lap   =  .false.  !    laplacian operator 
    123116   ln_traldf_blp   =  .false.  !  bilaplacian operator 
     
    139132   ln_dynadv_cen2= .false. !  flux form - 2nd order centered scheme 
    140133   ln_dynadv_ubs = .true.  !  flux form - 3rd order UBS      scheme 
    141    ln_dynzad_zts = .false. !  Use (T) sub timestepping for vertical momentum advection 
    142134/ 
    143135!----------------------------------------------------------------------- 
     
    178170!----------------------------------------------------------------------- 
    179171   !                       !  Type of the operator : 
    180    !                           !  no diffusion: set ln_dynldf_lap=..._blp=F  
     172   ln_dynldf_NONE=  .true.    !  No operator (i.e. no explicit diffusion) 
    181173   ln_dynldf_lap =  .false.    !    laplacian operator 
    182174   ln_dynldf_blp =  .false.    !  bilaplacian operator 
    183175   !                       !  Direction of action  : 
    184    ln_dynldf_lev =  .true.      !  iso-level 
    185    ln_dynldf_hor =  .false.     !  horizontal (geopotential) 
    186    ln_dynldf_iso =  .false.     !  iso-neutral 
     176   ln_dynldf_lev =  .false.    !  iso-level 
     177   ln_dynldf_hor =  .true.    !  horizontal (geopotential) 
     178   ln_dynldf_iso =  .false.    !  iso-neutral 
    187179   !                       !  Coefficient 
    188    nn_ahm_ijk_t  = 0         !  space/time variation of eddy coef 
     180   nn_ahm_ijk_t  = 0           !  space/time variation of eddy coef 
    189181   !                                !  =-30  read in eddy_viscosity_3D.nc file 
    190182   !                                !  =-20  read in eddy_viscosity_2D.nc file 
    191    !                                !  =  0  constant  
     183   !                                !  =  0  constant 
    192184   !                                !  = 10  F(k)=c1d 
    193185   !                                !  = 20  F(i,j)=F(grid spacing)=c2d 
    194186   !                                !  = 30  F(i,j,k)=c2d*c1d 
    195187   !                                !  = 31  F(i,j,k)=F(grid spacing and local velocity) 
     188   !                                !  = 32  F(i,j,k)=F(local gridscale and deformation rate) 
     189   ! Caution in 20 and 30 cases the coefficient have to be given for a 1 degree grid (~111km) 
    196190   rn_ahm_0      =     0.01    !  horizontal laplacian eddy viscosity   [m2/s] 
    197191   rn_ahm_b      =     0.      !  background eddy viscosity for ldf_iso [m2/s] 
    198192   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    199 / 
    200 !----------------------------------------------------------------------- 
    201 &namzdf        !   vertical physics 
    202 !----------------------------------------------------------------------- 
    203    rn_avm0     =   0.     !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    204    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    205    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    206    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     193   !                       !  Smagorinsky settings (nn_ahm_ijk_t  = 32) : 
     194   rn_csmc       = 3.5         !  Smagorinsky constant of proportionality 
     195   rn_minfac     = 1.0         !  multiplier of theorectical lower limit 
     196   rn_maxfac     = 1.0         !  multiplier of theorectical upper limit 
     197/ 
     198!----------------------------------------------------------------------- 
     199&namdrg            !   top/bottom drag coefficient                      (default: NO selection) 
     200!----------------------------------------------------------------------- 
     201   ln_NONE    = .true.    !  free-slip       : Cd = 0 
     202/ 
     203!----------------------------------------------------------------------- 
     204&namzdf        !   vertical physics                                     (default: NO selection) 
     205!----------------------------------------------------------------------- 
     206   !                       ! type of vertical closure 
     207   ln_zdfcst   = .true.       !  constant mixing 
     208   ! 
     209   !                       ! convection 
     210   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     211   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     212   ! 
     213   !                       ! coefficients 
     214   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     215   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     216   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     217   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    207218/ 
    208219!----------------------------------------------------------------------- 
  • branches/2017/dev_merge_2017/NEMOGCM/CONFIG/TEST_CASES/VORTEX/EXP00/namelist_cfg

    r8901 r9067  
    6969/ 
    7070!----------------------------------------------------------------------- 
    71 &nambfr        !   bottom friction 
    72 !----------------------------------------------------------------------- 
    73    nn_bfr      =    0     !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    74                           !                              = 2 : nonlinear friction 
    75 / 
    76 !----------------------------------------------------------------------- 
    7771&nambbc        !   bottom temperature boundary condition                (default: NO) 
    7872!----------------------------------------------------------------------- 
     
    10498      nn_fct_h   =  2            !  =2/4, horizontal 2nd / 4th order 
    10599      nn_fct_v   =  2            !  =2/4, vertical   2nd / COMPACT 4th order 
    106       nn_fct_zts =  0            !  >=1,  2nd order FCT scheme with vertical sub-timestepping 
    107       !                          !        (number of sub-timestep = nn_fct_zts) 
    108100   ln_traadv_mus = .false. !  MUSCL scheme 
    109101      ln_mus_ups = .false.       !  use upstream scheme near river mouths 
     
    119111&namtra_ldf    !   lateral diffusion scheme for tracers 
    120112!----------------------------------------------------------------------- 
    121    !                       !  Operator type:    both false = No lateral diffusion 
     113  !                       !  Operator type: 
     114   ln_traldf_NONE  =  .true.  !  No explicit diffusion 
    122115   ln_traldf_lap   =  .false.  !    laplacian operator 
    123116   ln_traldf_blp   =  .false.  !  bilaplacian operator 
     
    139132   ln_dynadv_cen2= .false. !  flux form - 2nd order centered scheme 
    140133   ln_dynadv_ubs = .true.  !  flux form - 3rd order UBS      scheme 
    141    ln_dynzad_zts = .false. !  Use (T) sub timestepping for vertical momentum advection 
    142134/ 
    143135!----------------------------------------------------------------------- 
     
    178170!----------------------------------------------------------------------- 
    179171   !                       !  Type of the operator : 
    180    !                           !  no diffusion: set ln_dynldf_lap=..._blp=F  
     172   ln_dynldf_NONE=  .true.    !  No operator (i.e. no explicit diffusion) 
    181173   ln_dynldf_lap =  .false.    !    laplacian operator 
    182174   ln_dynldf_blp =  .false.    !  bilaplacian operator 
    183175   !                       !  Direction of action  : 
    184    ln_dynldf_lev =  .true.      !  iso-level 
    185    ln_dynldf_hor =  .false.     !  horizontal (geopotential) 
    186    ln_dynldf_iso =  .false.     !  iso-neutral 
     176   ln_dynldf_lev =  .false.    !  iso-level 
     177   ln_dynldf_hor =  .true.    !  horizontal (geopotential) 
     178   ln_dynldf_iso =  .false.    !  iso-neutral 
    187179   !                       !  Coefficient 
    188    nn_ahm_ijk_t  = 0         !  space/time variation of eddy coef 
     180   nn_ahm_ijk_t  = 0           !  space/time variation of eddy coef 
    189181   !                                !  =-30  read in eddy_viscosity_3D.nc file 
    190182   !                                !  =-20  read in eddy_viscosity_2D.nc file 
    191    !                                !  =  0  constant  
     183   !                                !  =  0  constant 
    192184   !                                !  = 10  F(k)=c1d 
    193185   !                                !  = 20  F(i,j)=F(grid spacing)=c2d 
    194186   !                                !  = 30  F(i,j,k)=c2d*c1d 
    195187   !                                !  = 31  F(i,j,k)=F(grid spacing and local velocity) 
     188   !                                !  = 32  F(i,j,k)=F(local gridscale and deformation rate) 
     189   ! Caution in 20 and 30 cases the coefficient have to be given for a 1 degree grid (~111km) 
    196190   rn_ahm_0      =     0.01    !  horizontal laplacian eddy viscosity   [m2/s] 
    197191   rn_ahm_b      =     0.      !  background eddy viscosity for ldf_iso [m2/s] 
    198192   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    199 / 
    200 !----------------------------------------------------------------------- 
    201 &namzdf        !   vertical physics 
    202 !----------------------------------------------------------------------- 
    203    rn_avm0     =   0.     !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    204    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    205    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    206    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     193   !                       !  Smagorinsky settings (nn_ahm_ijk_t  = 32) : 
     194   rn_csmc       = 3.5         !  Smagorinsky constant of proportionality 
     195   rn_minfac     = 1.0         !  multiplier of theorectical lower limit 
     196   rn_maxfac     = 1.0         !  multiplier of theorectical upper limit 
     197/ 
     198!----------------------------------------------------------------------- 
     199&namdrg            !   top/bottom drag coefficient                      (default: NO selection) 
     200!----------------------------------------------------------------------- 
     201   ln_NONE    = .true.    !  free-slip       : Cd = 0 
     202/ 
     203!----------------------------------------------------------------------- 
     204&namzdf        !   vertical physics                                     (default: NO selection) 
     205!----------------------------------------------------------------------- 
     206   !                       ! type of vertical closure 
     207   ln_zdfcst   = .true.       !  constant mixing 
     208   ! 
     209   !                       ! convection 
     210   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     211   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     212   ! 
     213   !                       ! coefficients 
     214   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     215   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     216   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     217   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    207218/ 
    208219!----------------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.