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_cfg in NEMO/branches/2021/ticket2632_r14588_theta_sbcblk/tests/DONUT/EXPREF – NEMO

source: NEMO/branches/2021/ticket2632_r14588_theta_sbcblk/tests/DONUT/EXPREF/namelist_cfg @ 15548

Last change on this file since 15548 was 15548, checked in by gsamson, 3 years ago

update branch to the head of the trunk (r15547); ticket #2632

File size: 18.4 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! NEMO/OPA  BENCH Configuration namelist : overwrite some defaults values defined in SHARED/namelist_ref
3!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
4!
5!-----------------------------------------------------------------------
6&namrun        !   parameters of the run
7!-----------------------------------------------------------------------
8   cn_exp      =   'DONUT' !  experience name
9   nn_it000    =       1   !  first time step
10   nn_itend    =   480  !   96 !   last time step
11/
12!-----------------------------------------------------------------------
13&namctl        !   Control prints                                       (default: OFF)
14!-----------------------------------------------------------------------
15   ln_timing   = .false.   !  timing by routine write out in timing.output file
16/
17!-----------------------------------------------------------------------
18&namdom        !   time and space domain
19!-----------------------------------------------------------------------
20   rn_Dt       =    900.   !  time step for the dynamics (and tracer if nn_acc=0)
21   rn_atfp     =   0.05    !  asselin time filter parameter
22/
23!-----------------------------------------------------------------------
24&namcfg        !   parameters of the configuration                      (default: use namusr_def in namelist_cfg)
25!-----------------------------------------------------------------------
26   ln_read_cfg =  .true.   !  (=T) read the domain configuration file
27      !                    !  (=F) user defined configuration           (F => create/check namusr_def)
28      cn_domcfg = "donut_cfg"  ! domain configuration filename
29/
30!-----------------------------------------------------------------------
31&namtile        !   parameters of the tiling
32!-----------------------------------------------------------------------
33/
34!-----------------------------------------------------------------------
35&namtsd        !    Temperature & Salinity Data  (init/dmp)             (default: OFF)
36!-----------------------------------------------------------------------
37   !                       ! =T  read T-S fields for:
38   ln_tsd_init =  .true.         !  ocean initialisation
39   ln_tsd_dmp  = .false.         !  T-S restoring   (see namtra_dmp)
40   
41   cn_dir      = './'      !  root directory for the T-S data location
42   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
43   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
44   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
45   sn_tem = 'donut_istate',  -12      , 'tn',   .true.    , .true. , 'yearly'  ,    ''            ,    ''    ,    ''
46   sn_sal = 'donut_istate',  -12      , 'sn',   .true.    , .true. , 'yearly'  ,    ''            ,    ''    ,    ''
47/
48!!======================================================================
49!!            ***  Surface Boundary Condition namelists  ***          !!
50!!                                                                    !!
51!!   namsbc          surface boundary condition manager                 (default: NO selection)
52!!======================================================================
53!
54!-----------------------------------------------------------------------
55&namsbc        !   Surface Boundary Condition (surface module)
56!-----------------------------------------------------------------------
57  nn_fsbc     = 1         !  frequency of SBC module call
58  ln_usr      = .true.    !  user defined formulation                  (T => check usrdef_sbc)
59  ln_traqsr   = .true.    !  Light penetration in the ocean            (T => fill namtra_qsr)
60  nn_ice      = 2         !  =0 no ice boundary condition
61     !                    !  =1 use observed ice-cover                 (  => fill namsbc_iif )
62     !                    !  =2 or 3 for SI3 and CICE, respectively
63/
64
65!
66!!======================================================================
67!!               ***  Lateral boundary condition  ***                 !!
68!!                                                                    !!
69!!   namlbc        lateral momentum boundary condition                  (default: NO selection)
70!!   namagrif      agrif nested grid   (read by child model only)       ("key_agrif")
71!!   nam_tide      Tidal forcing                                        (default: OFF)
72!!   nambdy        Unstructured open boundaries                         (default: OFF)
73!!   nambdy_dta    Unstructured open boundaries - external data         (see  nambdy)
74!!   nambdy_tide   tidal forcing at open boundaries                     (default: OFF)
75!!======================================================================
76!
77!-----------------------------------------------------------------------
78&namlbc        !   lateral momentum boundary condition                  (default: NO selection)
79!-----------------------------------------------------------------------
80   rn_shlat    =    2.     !  free slip
81/
82!-----------------------------------------------------------------------
83&nambdy        !  unstructured open boundaries                          (default: OFF)
84!-----------------------------------------------------------------------
85   ln_bdy         = .true.    !  Use unstructured open boundaries
86   nb_bdy         = 2         !  number of open boundary sets
87   ln_coords_file = .true.,.true.    !  =T : read bdy coordinates from file
88      cn_coords_file = 'bdy_outer_cfg.nc','bdy_inner_cfg.nc'  !  bdy coordinates files
89   cn_dyn2d    = 'flather','flather'    !
90   nn_dyn2d_dta   =  1,1        !  = 0, bdy data are equal to the initial state
91      !                       !  = 1, bdy data are read in 'bdydata.nc' files
92      !                       !  = 2, use tidal harmonic forcing data from files
93      !                       !  = 3, use external data AND tidal harmonic forcing
94   cn_dyn3d      =  'frs','frs'     !
95   nn_dyn3d_dta  =  1,1         !  = 0, bdy data are equal to the initial state
96   !                          !  = 1, bdy data are read in 'bdydata.nc' files
97   cn_tra        =  'frs','frs'     !
98   nn_tra_dta    =  1,1         !  = 0, bdy data are equal to the initial state
99   !                          !  = 1, bdy data are read in 'bdydata.nc' files
100   cn_ice        =  'frs','frs'     !
101   nn_ice_dta    =  1,1         !  = 0, bdy data are equal to the initial state
102   !                          !  = 1, bdy data are read in 'bdydata.nc' files
103   !
104   nn_rimwidth   = 2,1          !  width of the relaxation zone
105/
106!-----------------------------------------------------------------------
107&nambdy_dta    !  open boundaries - external data                       (see nam_bdy)
108!-----------------------------------------------------------------------
109   ln_full_vel = .true.      !  ???
110
111   cn_dir      = './'    !  root directory for the BDY data location
112   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
113   !           !  file name ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
114   !           !            !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
115   bn_ssh      = 'bdy_outer_dta'  ,  -12        ,   'ssh',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
116   bn_u3d      = 'bdy_outer_dta'  ,  -12        ,    'un',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
117   bn_v3d      = 'bdy_outer_dta'  ,  -12        ,    'vn',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
118   bn_tem      = 'bdy_outer_dta'  ,  -12        ,    'tn',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
119   bn_sal      = 'bdy_outer_dta'  ,  -12        ,    'sn',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
120!* for si3
121   bn_a_i      = 'bdy_outer_dta'  ,  -12        ,   'a_i',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
122   bn_h_i      = 'bdy_outer_dta'  ,  -12        ,   'h_i',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
123   bn_h_s      = 'bdy_outer_dta'  ,  -12        ,   'h_s',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
124/
125!-----------------------------------------------------------------------
126&nambdy_dta    !  open boundaries - external data                       (see nam_bdy)
127!-----------------------------------------------------------------------
128   ln_full_vel = .true.      !  ???
129
130   cn_dir      = './'    !  root directory for the BDY data location
131   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
132   !           !  file name ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
133   !           !            !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
134   bn_ssh      = 'bdy_inner_dta'  ,  -12        ,   'ssh',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
135   bn_u3d      = 'bdy_inner_dta'  ,  -12        ,    'un',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
136   bn_v3d      = 'bdy_inner_dta'  ,  -12        ,    'vn',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
137   bn_tem      = 'bdy_inner_dta'  ,  -12        ,    'tn',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
138   bn_sal      = 'bdy_inner_dta'  ,  -12        ,    'sn',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
139!* for si3
140   bn_a_i      = 'bdy_inner_dta'  ,  -12        ,   'a_i',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
141   bn_h_i      = 'bdy_inner_dta'  ,  -12        ,   'h_i',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
142   bn_h_s      = 'bdy_inner_dta'  ,  -12        ,   'h_s',    .false.   , .true., 'yearly'  ,    ''            ,   ''     ,     ''
143/
144!!======================================================================
145!!                ***  Top/Bottom boundary condition  ***             !!
146!!                                                                    !!
147!!   namdrg        top/bottom drag coefficient                          (default: NO selection)
148!!   namdrg_top    top    friction                                      (ln_OFF =F & ln_isfcav=T)
149!!   namdrg_bot    bottom friction                                      (ln_OFF =F)
150!!   nambbc        bottom temperature boundary condition                (default: OFF)
151!!   nambbl        bottom boundary layer scheme                         (default: OFF)
152!!======================================================================
153!
154!-----------------------------------------------------------------------
155&namtra_qsr    !   penetrative solar radiation                          (ln_traqsr =T)
156!-----------------------------------------------------------------------
157   !                       !  type of penetration                        (default: NO selection)
158   ln_qsr_rgb  = .true.      !  RGB light penetration (Red-Green-Blue)
159   nn_chldta   =      0      !  RGB : Chl data (=1) or cst value (=0)
160/
161!-----------------------------------------------------------------------
162&namdrg        !   top/bottom drag coefficient                          (default: NO selection)
163!-----------------------------------------------------------------------
164   ln_non_lin  = .true.   !  non-linear  drag: Cd = Cd0 |U|
165/
166!-----------------------------------------------------------------------
167&nambbl        !   bottom boundary layer scheme                         (default: OFF)
168!-----------------------------------------------------------------------
169   ln_trabbl   = .true.   !  Bottom Boundary Layer parameterisation flag
170/
171
172!!======================================================================
173!!                        Tracer (T & S) namelists                    !!
174!!                                                                    !!
175!!   nameos        equation of state                                    (default: NO selection)
176!!   namtra_adv    advection scheme                                     (default: NO selection)
177!!   namtra_ldf    lateral diffusion scheme                             (default: NO selection)
178!!   namtra_mle    mixed layer eddy param. (Fox-Kemper param.)          (default: OFF)
179!!   namtra_eiv    eddy induced velocity param.                         (default: OFF)
180!!   namtra_dmp    T & S newtonian damping                              (default: OFF)
181!!======================================================================
182!
183!-----------------------------------------------------------------------
184&nameos        !   ocean Equation Of Seawater                           (default: NO selection)
185!-----------------------------------------------------------------------
186   ln_eos80    = .true.         !  = Use EOS80
187/
188!-----------------------------------------------------------------------
189&namtra_adv    !   advection scheme for tracer                          (default: NO selection)
190!-----------------------------------------------------------------------
191   ln_traadv_fct = .true.  !  FCT scheme
192      nn_fct_h   =  4            !  =2/4, horizontal 2nd / 4th order
193      nn_fct_v   =  2            !  =2/4, vertical   2nd / COMPACT 4th order
194/
195!-----------------------------------------------------------------------
196&namtra_ldf    !   lateral diffusion scheme for tracers                 (default: NO selection)
197!-----------------------------------------------------------------------
198   ln_traldf_blp   = .true.   !    laplacian operator
199   ln_traldf_iso   = .true.   !  iso-neutral (standard operator)
200   !
201   ln_traldf_msc   = .true.   !  Method of Stabilizing Correction      (both operators)
202   nn_aht_ijk_t    = 31       !  space/time variation of eddy coefficient:
203/
204
205!!======================================================================
206!!                      ***  Dynamics namelists  ***                  !!
207!!                                                                    !!
208!!   nam_vvl       vertical coordinate options                          (default: z-star)
209!!   namdyn_adv    formulation of the momentum advection                (default: NO selection)
210!!   namdyn_vor    advection scheme                                     (default: NO selection)
211!!   namdyn_hpg    hydrostatic pressure gradient                        (default: NO selection)
212!!   namdyn_spg    surface pressure gradient                            (default: NO selection)
213!!   namdyn_ldf    lateral diffusion scheme                             (default: NO selection)
214!!   namdta_dyn    offline TOP: dynamics read in files                  (OFF_SRC only)
215!!======================================================================
216!
217!-----------------------------------------------------------------------
218&nam_vvl       !   vertical coordinate options                          (default: z-star)
219!-----------------------------------------------------------------------
220   ln_vvl_zstar  = .true.           !  z-star vertical coordinate
221   ln_vvl_dbg    = .false.          !  debug prints    (T/F)
222/
223!-----------------------------------------------------------------------
224&namdyn_adv    !   formulation of the momentum advection                (default: NO selection)
225!-----------------------------------------------------------------------
226   ln_dynadv_vec = .true. !  vector form (T) or flux form (F)
227      nn_dynkeg     = 1       ! scheme for grad(KE): =0   C2  ;  =1   Hollingsworth correction
228/
229!-----------------------------------------------------------------------
230&namdyn_vor    !   Vorticity / Coriolis scheme                          (default: NO selection)
231!-----------------------------------------------------------------------
232   ln_dynvor_eeT = .true. !  energy conserving scheme (een using e3t)
233/
234!-----------------------------------------------------------------------
235&namdyn_hpg    !   Hydrostatic pressure gradient option                 (default: NO selection)
236!-----------------------------------------------------------------------
237   ln_hpg_sco  = .true.   !  s-coordinate (standard jacobian formulation)
238/
239!-----------------------------------------------------------------------
240&namdyn_spg    !   surface pressure gradient                            (default: NO selection)
241!-----------------------------------------------------------------------
242   ln_dynspg_ts   = .true.   ! split-explicit free surface
243/
244!-----------------------------------------------------------------------
245&namdyn_ldf    !   lateral diffusion on momentum                        (default: NO selection)
246!-----------------------------------------------------------------------
247   ln_dynldf_blp =  .true.    !    laplacian operator
248   ln_dynldf_hor =  .true.    !  horizontal (geopotential)
249   !                       !  Coefficient
250   nn_ahm_ijk_t  = 31           !  space/time variation of eddy coef
251/
252
253!!======================================================================
254!!                     vertical physics namelists                     !!
255!!                                                                    !!
256!!    namzdf        vertical physics manager                            (default: NO selection)
257!!    namzdf_ric    richardson number vertical mixing                   (ln_zdfric=T)
258!!    namzdf_tke    TKE vertical mixing                                 (ln_zdftke=T)
259!!    namzdf_gls    GLS vertical mixing                                 (ln_zdfgls=T)
260!!    namzdf_osm    OSM vertical diffusion                              (ln_zdfosm=T)
261!!    namzdf_iwm    tidal mixing parameterization                       (ln_zdfiwm=T)
262!!======================================================================
263!
264!-----------------------------------------------------------------------
265&namzdf        !   vertical physics                                     (default: NO selection)
266!-----------------------------------------------------------------------
267   ln_zdftke   = .true.       !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke)
268   ln_zdfevd   = .true.       !  enhanced vertical diffusion
269/
Note: See TracBrowser for help on using the repository browser.