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.
namelist_top_ref in branches/2013/dev_LOCEAN_2013/NEMOGCM/CONFIG/SHARED – NEMO

source: branches/2013/dev_LOCEAN_2013/NEMOGCM/CONFIG/SHARED/namelist_top_ref @ 4148

Last change on this file since 4148 was 4148, checked in by cetlod, 10 years ago

merge in trunk changes between r3853 and r3940 and commit the changes, see ticket #1169

File size: 6.5 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! NEMO/TOP1 :  1 - tracer definition                     (namtrc    )
3!!              2 - tracer data initialisation            (namtrc_dta)
4!!              3 - tracer advection                      (namtrc_adv)
5!!              4 - tracer lateral diffusion              (namtrc_ldf)
6!!              5 - tracer vertical physics               (namtrc_zdf)
7!!              6 - tracer newtonian damping              (namtrc_dmp)
8!!              7 - dynamical tracer trends               (namtrc_trd)
9!!              8 - tracer output diagonstics             (namtrc_dia)
10!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
11!'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
12&namtrc     !   tracers definition
13!,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
14   nn_dttrc      =  1        !  time step frequency for passive sn_tracers     
15   nn_writetrc   =  5475     !  time step frequency for sn_tracer outputs
16   ln_top_euler  = .false.   !  use Euler time-stepping for TOP
17   ln_rsttr      = .false.   !  start from a restart file (T) or not (F)
18   nn_rsttr      =   0       !  restart control = 0 initial time step is not compared to the restart file value
19                             !                  = 1 do not use the value in the restart file
20                             !                  = 2 calendar parameters read in the restart file
21   cn_trcrst_in  = "restart_trc"   !  suffix of pass. sn_tracer restart name (input)
22   cn_trcrst_out = "restart_trc"   !  suffix of pass. sn_tracer restart name (output)
23   ln_trcdta     =   .true.  !  Initialisation from data input file (T) or not (F)
24   ln_trcdmp     =  .false.  !  add a damping termn (T) or not (F)
25/
26!-----------------------------------------------------------------------
27&namtrc_dta      !    Initialisation from data input file
28!-----------------------------------------------------------------------
29!
30   cn_dir        =  './'      !  root directory for the location of the data files
31/
32!-----------------------------------------------------------------------
33&namtrc_adv    !   advection scheme for passive tracer
34!-----------------------------------------------------------------------
35   ln_trcadv_cen2    =  .false.  !  2nd order centered scheme   
36   ln_trcadv_tvd     =  .true.  !  TVD scheme
37   ln_trcadv_muscl   =  .false.   !  MUSCL scheme
38   ln_trcadv_muscl2  =  .false.  !  MUSCL2 scheme + cen2 at boundaries
39   ln_trcadv_ubs     =  .false.  !  UBS scheme
40   ln_trcadv_qck     =  .false.  !  QUICKEST scheme
41   ln_trcadv_msc_ups =  .false.  !  use upstream scheme within muscl
42/
43!-----------------------------------------------------------------------
44&namtrc_ldf    !   lateral diffusion scheme for passive tracer
45!-----------------------------------------------------------------------
46   ln_trcldf_diff   =  .true.   !  performs lateral diffusion (T) or not (F)
47!                               !  Type of the operator :
48   ln_trcldf_lap    =  .true.   !     laplacian operator       
49   ln_trcldf_bilap  =  .false.  !     bilaplacian operator     
50                                !  Direction of action  :
51   ln_trcldf_level  =  .false.  !     iso-level               
52   ln_trcldf_hor    =  .false.  !     horizontal (geopotential)         (require "key_ldfslp" when ln_sco=T)
53   ln_trcldf_iso    =  .true.   !     iso-neutral                       (require "key_ldfslp")
54!                               !  Coefficient
55   rn_ahtrc_0       =  2000.    !  horizontal eddy diffusivity for tracers [m2/s]
56   rn_ahtrb_0       =     0.    !     background eddy diffusivity for ldf_iso [m2/s]
57/
58!-----------------------------------------------------------------------
59&namtrc_zdf        !   vertical physics
60!-----------------------------------------------------------------------
61   ln_trczdf_exp   =  .false.  !  split explicit (T) or implicit (F) time stepping
62   nn_trczdf_exp   =   3       !  number of sub-timestep for ln_trczdfexp=T
63/
64!-----------------------------------------------------------------------
65&namtrc_rad        !  treatment of negative concentrations
66!-----------------------------------------------------------------------
67   ln_trcrad   =  .true.  !  artificially correct negative concentrations (T) or not (F)
68/
69!-----------------------------------------------------------------------
70&namtrc_dmp    !   passive tracer newtonian damping   
71!-----------------------------------------------------------------------
72   nn_hdmp_tr  =   -1      !  horizontal shape =-1, damping in Med and Red Seas only
73                           !                   =XX, damping poleward of XX degrees (XX>0)
74                           !                      + F(distance-to-coast) + Red and Med Seas
75   nn_zdmp_tr  =    1      !  vertical   shape =0    damping throughout the water column
76                           !                   =1 no damping in the mixing layer (kz  criteria)
77                           !                   =2 no damping in the mixed  layer (rho crieria)
78   rn_surf_tr  =   50.     !  surface time scale of damping   [days]
79   rn_bot_tr   =  360.     !  bottom  time scale of damping   [days]
80   rn_dep_tr   =  800.     !  depth of transition between rn_surf and rn_bot [meters]
81   nn_file_tr  =    0      !  create a damping.coeff NetCDF file (=1) or not (=0)
82/
83!-----------------------------------------------------------------------
84&namtrc_trd       !   diagnostics on tracer trends        ('key_trdtrc')
85!                          or mixed-layer trends          ('key_trdmld_trc')
86!----------------------------------------------------------------------
87   nn_trd_trc  =  5475      !  time step frequency and tracers trends
88   nn_ctls_trc =   0        !  control surface type in mixed-layer trends (0,1 or n<jpk)
89   rn_ucf_trc  =   1        !  unit conversion factor (=1 -> /seconds ; =86400. -> /day)
90   ln_trdmld_trc_restart = .false.  !  restart for ML diagnostics
91   ln_trdmld_trc_instant = .true.  !  flag to diagnose trends of instantantaneous or mean ML T/S
92   ln_trdtrc(1)  =   .true.
93   ln_trdtrc(2)  =   .true.
94   ln_trdtrc(23) =   .true.
95/
96!-----------------------------------------------------------------------
97&namtrc_dia       !   parameters for passive tracer additional diagnostics
98!----------------------------------------------------------------------
99   ln_diatrc     =  .true.   !  save additional diag. (T) or not (F)
100   ln_diabio     =  .true.   !  output biological trends
101   nn_writedia   =  5475     !  time step frequency for diagnostics
102   nn_writebio   =    10     !: frequency of biological outputs
103/
Note: See TracBrowser for help on using the repository browser.