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 6808 for branches/NERC/dev_r5549_BDY_ZEROGRAD/NEMOGCM/CONFIG/GYRE_XIOS/EXP00/namelist_cfg – NEMO

Ignore:
Timestamp:
2016-07-19T10:38:35+02:00 (8 years ago)
Author:
jamesharle
Message:

merge with trunk@6232 for consistency with SSB code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/NERC/dev_r5549_BDY_ZEROGRAD/NEMOGCM/CONFIG/GYRE_XIOS/EXP00/namelist_cfg

    r5407 r6808  
    2929&namzgr        !   vertical coordinate 
    3030!----------------------------------------------------------------------- 
    31    ln_zco      = .true.    !  z-coordinate - full    steps   (T/F)      ("key_zco" may also be defined) 
    32    ln_zps      = .false.   !  z-coordinate - partial steps   (T/F) 
     31   ln_zco      = .true.    !  z-coordinate - full    steps 
     32   ln_linssh   = .true.    !  linear free surface 
    3333/ 
    3434!----------------------------------------------------------------------- 
     
    4040!----------------------------------------------------------------------- 
    4141   nn_bathy    =    0      !  compute (=0) or read (=1) the bathymetry file 
    42    rn_rdt      = 7200.     !  time step for the dynamics (and tracer if nn_acc=0) 
     42   rn_rdt      = 7200.     !  time step for the dynamics  
    4343!   nn_baro     =   60      !  number of barotropic time step            ("key_dynspg_ts") 
    44    rn_rdtmin   = 7200.           !  minimum time step on tracers (used if nn_acc=1) 
    45    rn_rdtmax   = 7200.           !  maximum time step on tracers (used if nn_acc=1) 
    4644   jphgr_msh   =       5                 !  type of horizontal mesh 
    4745   ppglam0     =       0.0               !  longitude of first raw and column T-point (jphgr_msh = 1) 
     
    150148/ 
    151149!----------------------------------------------------------------------- 
    152 &namcla        !   cross land advection 
    153 !----------------------------------------------------------------------- 
    154 / 
    155 !----------------------------------------------------------------------- 
    156 &namobc        !   open boundaries parameters                           ("key_obc") 
    157 !----------------------------------------------------------------------- 
    158 / 
    159 !----------------------------------------------------------------------- 
    160150&namagrif      !  AGRIF zoom                                            ("key_agrif") 
    161151!----------------------------------------------------------------------- 
     
    183173/ 
    184174!----------------------------------------------------------------------- 
    185 &nambbc        !   bottom temperature boundary condition 
    186 !----------------------------------------------------------------------- 
    187    ln_trabbc   = .false.   !  Apply a geothermal heating at the ocean bottom 
    188    nn_geoflx   =    0      !  geothermal heat flux: = 0 no flux 
     175&nambbc        !   bottom temperature boundary condition                (default: NO) 
     176!----------------------------------------------------------------------- 
    189177/ 
    190178!----------------------------------------------------------------------- 
     
    200188&namtra_adv    !   advection scheme for tracer 
    201189!----------------------------------------------------------------------- 
    202    ln_traadv_msc_ups=  .false.  !  use upstream scheme within muscl  
     190   ln_traadv_fct =  .true.    !  FCT scheme 
     191      nn_fct_h   =  2               !  =2/4, horizontal 2nd / 4th order  
     192      nn_fct_v   =  2               !  =2/4, vertical   2nd / COMPACT 4th order  
     193      nn_fct_zts =  0               !  >=1,  2nd order FCT scheme with vertical sub-timestepping 
     194      !                             !        (number of sub-timestep = nn_fct_zts) 
    203195/ 
    204196!----------------------------------------------------------------------- 
     
    209201&namtra_ldf    !   lateral diffusion scheme for tracers 
    210202!---------------------------------------------------------------------------------- 
    211    rn_aeiv_0        =     0.    !  eddy induced velocity coefficient [m2/s] 
    212    rn_aht_0         =  1000.    !  horizontal eddy diffusivity for tracers [m2/s] 
     203   !                       !  Operator type: 
     204   ln_traldf_lap   =  .true.   !    laplacian operator 
     205   ln_traldf_blp   =  .false.  !  bilaplacian operator 
     206   !                       !  Direction of action: 
     207   ln_traldf_lev   =  .false.  !  iso-level 
     208   ln_traldf_hor   =  .false.  !  horizontal (geopotential) 
     209   ln_traldf_iso   =  .true.   !  iso-neutral (standard operator) 
     210   ln_traldf_triad =  .false.  !  iso-neutral (triad    operator) 
     211   ! 
     212   !                       !  iso-neutral options:         
     213   ln_traldf_msc   =  .true.   !  Method of Stabilizing Correction (both operators) 
     214   rn_slpmax       =   0.01    !  slope limit                      (both operators) 
     215   ln_triad_iso    =  .false.  !  pure horizontal mixing in ML              (triad only) 
     216   rn_sw_triad     =  1        !  =1 switching triad ; =0 all 4 triads used (triad only) 
     217   ln_botmix_triad =  .false.  !  lateral mixing on bottom                  (triad only) 
     218   ! 
     219   !                       !  Coefficients: 
     220   nn_aht_ijk_t    = 0         !  space/time variation of eddy coef 
     221   !                                !   =-20 (=-30)    read in eddy_induced_velocity_2D.nc (..._3D.nc) file 
     222   !                                !   =  0           constant  
     223   !                                !   = 10 F(k)      =ldf_c1d  
     224   !                                !   = 20 F(i,j)    =ldf_c2d  
     225   !                                !   = 21 F(i,j,t)  =Treguier et al. JPO 1997 formulation 
     226   !                                !   = 30 F(i,j,k)  =ldf_c2d + ldf_c1d 
     227   !                                !   = 31 F(i,j,k,t)=F(local velocity) 
     228   rn_aht_0        = 1000.     !  lateral eddy diffusivity   (lap. operator) [m2/s] 
     229   rn_bht_0        = 1.e+12    !  lateral eddy diffusivity (bilap. operator) [m4/s] 
     230/ 
     231!---------------------------------------------------------------------------------- 
     232&namtra_ldfeiv !   eddy induced velocity param. 
     233!---------------------------------------------------------------------------------- 
     234   ln_ldfeiv     =.false.   ! use eddy induced velocity parameterization 
    213235/ 
    214236!----------------------------------------------------------------------- 
     
    235257/ 
    236258!----------------------------------------------------------------------- 
    237 !namdyn_spg    !   surface pressure gradient   (CPP key only) 
    238 !----------------------------------------------------------------------- 
     259&namdyn_spg    !   surface pressure gradient 
     260!----------------------------------------------------------------------- 
     261   ln_dynspg_ts  = .true.  !  split-explicit free surface 
     262/ 
    239263!----------------------------------------------------------------------- 
    240264&namdyn_ldf    !   lateral diffusion on momentum 
     
    274298/ 
    275299!----------------------------------------------------------------------- 
    276 &namsol        !   elliptic solver / island / free surface 
    277 !----------------------------------------------------------------------- 
    278    nn_solv     =      2    !  elliptic solver: =1 preconditioned conjugate gradient (pcg) 
    279    nn_nmin     =    210    !  minimum of iterations for the SOR solver 
    280    rn_sor      =  1.96     !  optimal coefficient for SOR solver (to be adjusted with the domain) 
    281 / 
    282 !----------------------------------------------------------------------- 
    283300&nammpp        !   Massively Parallel Processing                        ("key_mpp_mpi) 
    284301!----------------------------------------------------------------------- 
     
    328345!----------------------------------------------------------------------- 
    329346/ 
    330 !----------------------------------------------------------------------- 
    331 &namdyn_nept  !   Neptune effect (simplified: lateral and vertical diffusions removed) 
    332 !----------------------------------------------------------------------- 
    333    ln_neptramp       = .false.  ! ramp down Neptune velocity in shallow water 
    334 / 
Note: See TracChangeset for help on using the changeset viewer.