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 in branches/2012/dev_MERGE_2012/NEMOGCM/CONFIG/GYRE_PISCES/EXP00 – NEMO

source: branches/2012/dev_MERGE_2012/NEMOGCM/CONFIG/GYRE_PISCES/EXP00/namelist_top @ 3718

Last change on this file since 3718 was 3718, checked in by cetlod, 11 years ago

dev_MERGE_2012 : modification in MUSCL routines ; needed to be able to use the upstream parametisation with passive tracers

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