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 | !! - tracer output diagonstics (namtrc_dia) |
---|
11 | !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> |
---|
12 | !----------------------------------------------------------------------- |
---|
13 | &namtrc_run ! run information |
---|
14 | !----------------------------------------------------------------------- |
---|
15 | nn_dttrc = 1 ! time step frequency for passive sn_tracers |
---|
16 | nn_writetrc = 640 ! time step frequency for sn_tracer outputs |
---|
17 | ln_top_euler = .false. ! use Euler time-stepping for TOP |
---|
18 | ln_rsttr = .false. ! start from a restart file (T) or not (F) |
---|
19 | nn_rsttr = 0 ! restart control = 0 initial time step is not compared to the restart file value |
---|
20 | ! = 1 do not use the value in the restart file |
---|
21 | ! = 2 calendar parameters read in the restart file |
---|
22 | cn_trcrst_in = "restart_trc" ! suffix of pass. sn_tracer restart name (input) |
---|
23 | cn_trcrst_indir = "." ! directory from which to read input passive tracer restarts |
---|
24 | cn_trcrst_out = "restart_trc" ! suffix of pass. sn_tracer restart name (output) |
---|
25 | cn_trcrst_outdir = "." ! directory to which to write output passive tracer restarts |
---|
26 | / |
---|
27 | !----------------------------------------------------------------------- |
---|
28 | &namtrc ! tracers definition |
---|
29 | !----------------------------------------------------------------------- |
---|
30 | ln_trcdta = .false. ! Initialisation from data input file (T) or not (F) |
---|
31 | ln_trcdmp = .false. ! add a damping termn (T) or not (F) |
---|
32 | ln_trcdmp_clo = .false. ! damping term (T) or not (F) on closed seas |
---|
33 | / |
---|
34 | !----------------------------------------------------------------------- |
---|
35 | &namtrc_dta ! Initialisation from data input file |
---|
36 | !----------------------------------------------------------------------- |
---|
37 | ! |
---|
38 | cn_dir = './' ! root directory for the location of the data files |
---|
39 | / |
---|
40 | !----------------------------------------------------------------------- |
---|
41 | &namtrc_adv ! advection scheme for passive tracer |
---|
42 | !----------------------------------------------------------------------- |
---|
43 | ln_trcadv_cen2 = .false. ! 2nd order centered scheme |
---|
44 | ln_trcadv_tvd = .true. ! TVD scheme |
---|
45 | ln_trcadv_muscl = .false. ! MUSCL scheme |
---|
46 | ln_trcadv_muscl2 = .false. ! MUSCL2 scheme + cen2 at boundaries |
---|
47 | ln_trcadv_ubs = .false. ! UBS scheme |
---|
48 | ln_trcadv_qck = .false. ! QUICKEST scheme |
---|
49 | ln_trcadv_msc_ups = .false. ! use upstream scheme within muscl |
---|
50 | / |
---|
51 | !----------------------------------------------------------------------- |
---|
52 | &namtrc_ldf ! lateral diffusion scheme for passive tracer |
---|
53 | !----------------------------------------------------------------------- |
---|
54 | ! ! Type of the operator : |
---|
55 | ln_trcldf_lap = .true. ! laplacian operator |
---|
56 | ln_trcldf_bilap = .false. ! bilaplacian operator |
---|
57 | ! Direction of action : |
---|
58 | ln_trcldf_level = .false. ! iso-level |
---|
59 | ln_trcldf_hor = .false. ! horizontal (geopotential) (require "key_ldfslp" when ln_sco=T) |
---|
60 | ln_trcldf_iso = .true. ! iso-neutral (require "key_ldfslp") |
---|
61 | ! ! Coefficient |
---|
62 | rn_ahtrc_0 = 2000. ! horizontal eddy diffusivity for tracers [m2/s] |
---|
63 | rn_ahtrb_0 = 0. ! background eddy diffusivity for ldf_iso [m2/s] |
---|
64 | rn_fact_lap = 1. ! enhanced zonal eddy diffusivity |
---|
65 | / |
---|
66 | !----------------------------------------------------------------------- |
---|
67 | &namtrc_zdf ! vertical physics |
---|
68 | !----------------------------------------------------------------------- |
---|
69 | ln_trczdf_exp = .false. ! split explicit (T) or implicit (F) time stepping |
---|
70 | nn_trczdf_exp = 3 ! number of sub-timestep for ln_trczdfexp=T |
---|
71 | / |
---|
72 | !----------------------------------------------------------------------- |
---|
73 | &namtrc_rad ! treatment of negative concentrations |
---|
74 | !----------------------------------------------------------------------- |
---|
75 | ln_trcrad = .true. ! artificially correct negative concentrations (T) or not (F) |
---|
76 | / |
---|
77 | !----------------------------------------------------------------------- |
---|
78 | &namtrc_dmp ! passive tracer newtonian damping |
---|
79 | !----------------------------------------------------------------------- |
---|
80 | nn_zdmp_tr = 1 ! vertical shape =0 damping throughout the water column |
---|
81 | ! =1 no damping in the mixing layer (kz criteria) |
---|
82 | ! =2 no damping in the mixed layer (rho crieria) |
---|
83 | cn_resto_tr = 'resto_tr.nc' ! create a damping.coeff NetCDF file (=1) or not (=0) |
---|
84 | / |
---|
85 | !----------------------------------------------------------------------- |
---|
86 | &namtrc_ice ! Representation of sea ice growth & melt effects |
---|
87 | !----------------------------------------------------------------------- |
---|
88 | nn_ice_tr = -1 ! tracer concentration in sea ice |
---|
89 | ! =-1 (no vvl: identical cc in ice and ocean / vvl: cc_ice = 0) |
---|
90 | ! = 0 (no vvl: cc_ice = zero / vvl: cc_ice = ) |
---|
91 | ! = 1 prescribed to a namelist value (implemented in pisces only) |
---|
92 | / |
---|
93 | !----------------------------------------------------------------------- |
---|
94 | &namtrc_trd ! diagnostics on tracer trends ('key_trdtrc') |
---|
95 | ! or mixed-layer trends ('key_trdmld_trc') |
---|
96 | !---------------------------------------------------------------------- |
---|
97 | nn_trd_trc = 640 ! time step frequency and tracers trends |
---|
98 | nn_ctls_trc = 0 ! control surface type in mixed-layer trends (0,1 or n<jpk) |
---|
99 | rn_ucf_trc = 1 ! unit conversion factor (=1 -> /seconds ; =86400. -> /day) |
---|
100 | ln_trdmxl_trc_restart = .false. ! restart for ML diagnostics |
---|
101 | ln_trdmxl_trc_instant = .true. ! flag to diagnose trends of instantantaneous or mean ML T/S |
---|
102 | ln_trdtrc(1) = .true. |
---|
103 | ln_trdtrc(2) = .true. |
---|
104 | ln_trdtrc(23) = .true. |
---|
105 | / |
---|
106 | !----------------------------------------------------------------------- |
---|
107 | &namtrc_dia ! parameters for passive tracer additional diagnostics |
---|
108 | !---------------------------------------------------------------------- |
---|
109 | ln_diatrc = .false. ! save additional diag. (T) or not (F) |
---|
110 | ln_diabio = .true. ! output biological trends |
---|
111 | nn_writedia = 640 ! time step frequency for diagnostics |
---|
112 | nn_writebio = 640 !: frequency of biological outputs |
---|
113 | / |
---|
114 | !---------------------------------------------------------------------- |
---|
115 | ! namtrc_bc ! data for boundary conditions |
---|
116 | !----------------------------------------------------------------------- |
---|
117 | &namtrc_bc |
---|
118 | ! |
---|
119 | cn_dir = './' ! root directory for the location of the data files |
---|
120 | / |
---|