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/2017/dev_r8183_ICEMODEL/NEMOGCM/CONFIG/SHARED – NEMO

source: branches/2017/dev_r8183_ICEMODEL/NEMOGCM/CONFIG/SHARED/namelist_top_ref @ 8516

Last change on this file since 8516 was 7646, checked in by timgraham, 7 years ago

Merge of dev_merge_2016 into trunk. UPDATE TO ARCHFILES NEEDED for XIOS2.
LIM_SRC_s/limrhg.F90 to follow in next commit due to change of kind (I'm unable to do it in this commit).
Merged using the following steps:

1) svn merge --reintegrate svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/trunk .
2) Resolve minor conflicts in sette.sh and namelist_cfg for ORCA2LIM3 (due to a change in trunk after branch was created)
3) svn commit
4) svn switch svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/trunk
5) svn merge svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/branches/2016/dev_merge_2016 .
6) At this stage I checked out a clean copy of the branch to compare against what is about to be committed to the trunk.
6) svn commit #Commit code to the trunk

In this commit I have also reverted a change to Fcheck_archfile.sh which was causing problems on the Paris machine.

File size: 10.0 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! NEMO/TOP1 :   - tracer run information                (namtrc_run)
3!!               - tracer definition                     (namtrc    )
4!!               - tracer data initialisation            (namtrc_dta)
5!!               - tracer advection                      (namtrc_adv)
6!!               - tracer lateral diffusion              (namtrc_ldf)
7!!               - tracer vertical physics               (namtrc_zdf)
8!!               - tracer newtonian damping              (namtrc_dmp)
9!!               - dynamical tracer trends               (namtrc_trd)
10!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
11!-----------------------------------------------------------------------
12&namtrc_run      !   run information
13!-----------------------------------------------------------------------
14   nn_dttrc      =  1        !  time step frequency for passive sn_tracers
15   ln_top_euler  = .false.   !  use Euler time-stepping for TOP
16   ln_rsttr      = .false.   !  start from a restart file (T) or not (F)
17   nn_rsttr      =   0       !  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"   !  suffix of pass. sn_tracer restart name (input)
21   cn_trcrst_indir = "."           !  directory from which to read input passive tracer restarts
22   cn_trcrst_out = "restart_trc"   !  suffix of pass. sn_tracer restart name (output)
23   cn_trcrst_outdir = "."          !  directory to which to write output passive tracer restarts
24/
25!-----------------------------------------------------------------------
26&namtrc          !   tracers definition
27!-----------------------------------------------------------------------
28   jp_bgc        =  0           !  Number of passive tracers of the BGC model
29!
30   ln_pisces     =  .false.     !  Run PISCES BGC model
31   ln_my_trc     =  .false.     !  Run MY_TRC BGC model
32   ln_age        =  .false.     !  Run the sea water age tracer
33   ln_cfc11      =  .false.     !  Run the CFC11 passive tracer
34   ln_cfc12      =  .false.     !  Run the CFC12 passive tracer
35   ln_sf6        =  .false.     !  Run the SF6 passive tracer
36   ln_c14        =  .false.     !  Run the Radiocarbon passive tracer
37!
38   ln_trcdta     =  .false.  !  Initialisation from data input file (T) or not (F)
39   ln_trcdmp     =  .false.  !  add a damping termn (T) or not (F)
40   ln_trcdmp_clo =  .false.  !  damping term (T) or not (F) on closed seas
41!
42   jp_dia3d      = 0         ! Number of 3D diagnostic variables
43   jp_dia2d      = 0         ! Number of 2D diagnostic variables
44!                !           !                                         !            !                               !
45!                !    name   !           title of the field            !   units    ! initial data from file or not !
46!  sn_tracer(1)  = 'tracer  ' , 'Tracer  Concentration                 ',   ' - '    ,           .false.
47/
48!-----------------------------------------------------------------------
49&namage         !   AGE
50!-----------------------------------------------------------------------
51   rn_age_depth      = 10            ! depth over which age tracer reset to zero
52   rn_age_kill_rate  = -0.000138888  !  = -1/7200 recip of relaxation timescale (s) for  age tracer shallower than age_depth
53/
54!-----------------------------------------------------------------------
55&namtrc_dta      !    Initialisation from data input file
56!-----------------------------------------------------------------------
57   cn_dir        =  './'     !  root directory for the location of the data files
58!          !  file name  ! frequency (hours) ! variable  ! time interp. !  clim  ! 'yearly'/ ! weights  ! rotation ! land/sea mask !
59!          !             !  (if <0  months)  !   name    !   (logical)  !  (T/F) ! 'monthly' ! filename ! pairing  ! filename      !
60   sn_trcdta(1)  = 'data_TRC_nomask'        ,        -12        ,  'TRC'     ,    .false.   , .true. , 'yearly'  , ''       , ''   , ''
61/
62!-----------------------------------------------------------------------
63&namtrc_adv      !   advection scheme for passive tracer
64!-----------------------------------------------------------------------
65   ln_trcadv_cen =  .false.  !  2nd order centered scheme
66      nn_cen_h   =  4               !  =2/4, horizontal 2nd order CEN / 4th order CEN
67      nn_cen_v   =  4               !  =2/4, vertical   2nd order CEN / 4th order COMPACT
68   ln_trcadv_fct =  .false.  !  FCT scheme
69      nn_fct_h   =  2               !  =2/4, horizontal 2nd / 4th order
70      nn_fct_v   =  2               !  =2/4, vertical   2nd / COMPACT 4th order
71      nn_fct_zts =  0               !  >=1,  2nd order FCT scheme with vertical sub-timestepping
72      !                             !        (number of sub-timestep = nn_fct_zts)
73   ln_trcadv_mus =  .false.  !  MUSCL scheme
74      ln_mus_ups =  .false.         !  use upstream scheme near river mouths
75   ln_trcadv_ubs =  .false.  !  UBS scheme
76      nn_ubs_v   =  2               !  =2  , vertical 2nd order FCT
77   ln_trcadv_qck =  .false.  !  QUICKEST scheme
78/
79!-----------------------------------------------------------------------
80&namtrc_ldf      !   lateral diffusion scheme for passive tracer
81!-----------------------------------------------------------------------
82!                            !  Type of the operator: 
83   ln_trcldf_lap   =  .true.     !    laplacian operator
84   ln_trcldf_blp   =  .false.    !  bilaplacian operator
85   !                         !  Direction of action:
86   ln_trcldf_lev   =  .false.    !  iso-level
87   ln_trcldf_hor   =  .false.    !  horizontal (geopotential)
88   ln_trcldf_iso   =  .true.     !  iso-neutral (standard operator)
89   ln_trcldf_triad =  .false.    !  iso-neutral (triad    operator)
90   !                         !  Coefficient
91   rn_ahtrc_0      = 2000.       !  lateral eddy diffusivity   (lap. operator) [m2/s]
92   rn_bhtrc_0      = 1.e+12      !  lateral eddy diffusivity (bilap. operator) [m4/s]
93   !
94   rn_fact_lap      =     1.     !     enhanced zonal eddy diffusivity
95/
96!-----------------------------------------------------------------------
97&namtrc_zdf      !   vertical physics
98!-----------------------------------------------------------------------
99   ln_trczdf_exp =  .false.  !  split explicit (T) or implicit (F) time stepping
100   nn_trczdf_exp =   3       !  number of sub-timestep for ln_trczdfexp=T
101/
102!-----------------------------------------------------------------------
103&namtrc_rad      !  treatment of negative concentrations
104!-----------------------------------------------------------------------
105   ln_trcrad     =  .true.   !  artificially correct negative concentrations (T) or not (F)
106/
107!-----------------------------------------------------------------------
108&namtrc_dmp      !   passive tracer newtonian damping   
109!-----------------------------------------------------------------------
110   nn_zdmp_tr    =    1      !  vertical   shape =0    damping throughout the water column
111                             !                   =1 no damping in the mixing layer (kz  criteria)
112                             !                   =2 no damping in the mixed  layer (rho crieria)
113   cn_resto_tr   = 'resto_tr.nc'    !  create a damping.coeff NetCDF file (=1) or not (=0)
114/
115!-----------------------------------------------------------------------
116&namtrc_ice      !    Representation of sea ice growth & melt effects
117!-----------------------------------------------------------------------
118   nn_ice_tr     =  -1       !  tracer concentration in sea ice
119                             !    =-1 (no vvl: identical cc in ice and ocean / vvl: cc_ice = 0)
120                             !    = 0 (no vvl: cc_ice = zero / vvl: cc_ice = )
121                             !    = 1 prescribed to a namelist value (implemented in pisces only)
122/
123!-----------------------------------------------------------------------
124&namtrc_trd      !   diagnostics on tracer trends                       ('key_trdtrc')
125!                          or mixed-layer trends                        ('key_trdmld_trc')
126!----------------------------------------------------------------------
127   nn_trd_trc    =  5475     !  time step frequency and tracers trends
128   nn_ctls_trc   =   0       !  control surface type in mixed-layer trends (0,1 or n<jpk)
129   rn_ucf_trc    =   1       !  unit conversion factor (=1 -> /seconds ; =86400. -> /day)
130   ln_trdmld_trc_restart = .false. !  restart for ML diagnostics
131   ln_trdmld_trc_instant = .true.  !  flag to diagnose trends of instantantaneous or mean ML T/S
132   ln_trdtrc( 1) = .true.
133   ln_trdtrc( 2) = .true.
134   ln_trdtrc(23) = .true.
135/
136!----------------------------------------------------------------------
137&namtrc_bc       !   data for boundary conditions
138!-----------------------------------------------------------------------
139   cn_dir_sbc    =  './'     !  root directory for the location of SURFACE data files
140   cn_dir_cbc    =  './'     !  root directory for the location of COASTAL data files
141   cn_dir_obc    =  './'     !  root directory for the location of OPEN data files
142   ln_rnf_ctl    = .false.   !  Remove runoff dilution on tracers with absent river load
143   rn_bc_time    =  86400.   !  Time scaling factor for SBC and CBC data (seconds in a day)
144/
145!----------------------------------------------------------------------
146&namtrc_bdy      !   Setup of tracer boundary conditions
147!-----------------------------------------------------------------------
148   cn_trc_dflt   = 'neumann' !  OBC applied by default to all tracers
149   cn_trc        = 'none'    !  Boundary conditions used for tracers with data files (selected in namtrc)
150
151   nn_trcdmp_bdy = 0         !  Use damping timescales defined in nambdy of namelist
152                             !  = 0 NO damping of tracers at open boudaries
153                             !  = 1 Only for tracers forced with external data
154                             !  = 2 Damping applied to all tracers
155/
Note: See TracBrowser for help on using the repository browser.