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.
namdyn_ldf in branches/2017/dev_merge_2017/DOC/Namelists – NEMO

source: branches/2017/dev_merge_2017/DOC/Namelists/namdyn_ldf @ 9355

Last change on this file since 9355 was 9355, checked in by nicolasmartin, 6 years ago

Set mime-type SVN property for all namelists for syntax highlighting under Trac

  • Property svn:mime-type set to text/x-fortran
File size: 2.0 KB
RevLine 
[2282]1!-----------------------------------------------------------------------
[9019]2&namdyn_ldf    !   lateral diffusion on momentum                        (default: NO selection)
[2282]3!-----------------------------------------------------------------------
[4147]4   !                       !  Type of the operator :
[9019]5   ln_dynldf_NONE=  .false.    !  No operator (i.e. no explicit diffusion)
[6140]6   ln_dynldf_lap =  .false.    !    laplacian operator
7   ln_dynldf_blp =  .false.    !  bilaplacian operator
[4147]8   !                       !  Direction of action  :
[6140]9   ln_dynldf_lev =  .false.    !  iso-level
10   ln_dynldf_hor =  .false.    !  horizontal (geopotential)
11   ln_dynldf_iso =  .false.    !  iso-neutral
[2540]12   !                       !  Coefficient
[6140]13   nn_ahm_ijk_t  = 0           !  space/time variation of eddy coef
14   !                                !  =-30  read in eddy_viscosity_3D.nc file
15   !                                !  =-20  read in eddy_viscosity_2D.nc file
16   !                                !  =  0  constant
17   !                                !  = 10  F(k)=c1d
18   !                                !  = 20  F(i,j)=F(grid spacing)=c2d
19   !                                !  = 30  F(i,j,k)=c2d*c1d
20   !                                !  = 31  F(i,j,k)=F(grid spacing and local velocity)
[9019]21   !                                !  = 32  F(i,j,k)=F(local gridscale and deformation rate)
22   ! Caution in 20 and 30 cases the coefficient have to be given for a 1 degree grid (~111km)
[6140]23   rn_ahm_0      =  40000.     !  horizontal laplacian eddy viscosity   [m2/s]
24   rn_ahm_b      =      0.     !  background eddy viscosity for ldf_iso [m2/s]
25   rn_bhm_0      = 1.e+12      !  horizontal bilaplacian eddy viscosity [m4/s]
[9019]26   !                       !  Smagorinsky settings (nn_ahm_ijk_t  = 32) :
27   rn_csmc       = 3.5         !  Smagorinsky constant of proportionality
28   rn_minfac     = 1.0         !  multiplier of theorectical lower limit
29   rn_maxfac     = 1.0         !  multiplier of theorectical upper limit
[2540]30/
Note: See TracBrowser for help on using the repository browser.