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.
3_namelist_cfg in NEMO/trunk/cfgs/AGRIF_DEMO/EXPREF – NEMO

source: NEMO/trunk/cfgs/AGRIF_DEMO/EXPREF/3_namelist_cfg @ 15023

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

merge ticket2680_C1D_PAPA branch back into the trunk; see ticket #2680 for details

File size: 23.8 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! NEMO/OCE  Configuration namelist : overwrite default values defined in SHARED/1_namelist_ref
3!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
4!                         AGRIF ICE configuration                      !
5!!======================================================================
6!!              ***  Domain & Run management namelists  ***           !!
7!!                                                                    !!
8!!   namrun       parameters of the run
9!!   namdom       space and time domain
10!!   namcfg       parameters of the configuration                       (default: user defined GYRE)
11!!   namwad       Wetting and drying                                    (default: OFF)
12!!   namtsd       data: temperature & salinity                          (default: OFF)
13!!   namcrs       coarsened grid (for outputs and/or TOP)               (ln_crs =T)
14!!   namc1d       1D configuration options                              (ln_c1d =T)
15!!   namc1d_dyndmp 1D newtonian damping applied on currents             (ln_c1d =T)
16!!   namc1d_uvd   1D data (currents)                                    (ln_c1d =T)
17!!======================================================================
18!
19!-----------------------------------------------------------------------
20&namrun        !   parameters of the run
21!-----------------------------------------------------------------------
22   cn_exp      = "Nordic"  !  experience name
23   nn_it000    =    1      !  first time step
24   nn_itend    =  960      !  last  time step
25   nn_istate   =      0    !  output the initial state (1) or not (0)
26   ln_clobber  = .true.    !  clobber (overwrite) an existing file
27/
28!-----------------------------------------------------------------------
29&namdom        !   space and time domain
30!-----------------------------------------------------------------------
31   ln_linssh   = .false.   !  =T  linear free surface  ==>>  model level are fixed in time
32   !
33   rn_Dt      = 450.     !  time step for the dynamics (and tracer if nn_acc=0)
34/
35!-----------------------------------------------------------------------
36&namcfg        !   parameters of the configuration                      (default: user defined GYRE)
37!-----------------------------------------------------------------------
38   ln_read_cfg = .true.    !  (=T) read the domain configuration file
39      cn_domcfg = "ORCA_R017_zps_domcfg_agrif"    ! domain configuration filename
40/
41!-----------------------------------------------------------------------
42&namtile        !   parameters of the tiling
43!-----------------------------------------------------------------------
44/
45!-----------------------------------------------------------------------
46&namtsd        !    Temperature & Salinity Data                         (default: OFF)
47!-----------------------------------------------------------------------
48   !                       ! =T  read T-S fields for:
49   ln_tsd_init = .true.          !  ocean initialisation
50   ln_tsd_dmp  = .false.         !  T-S restoring   (see namtra_dmp)
51
52   cn_dir = './'     !  root directory for the T-S data location
53   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
54   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
55   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
56   sn_tem = 'data_1m_potential_temperature_nomask',     -1.     ,'votemper',   .true.    , .true. , 'yearly'  ,    ''    ,    ''    ,    ''
57   sn_sal = 'data_1m_salinity_nomask'             ,     -1.     ,'vosaline',   .true.    , .true. , 'yearly'  ,    ''    ,    ''    ,    ''
58/
59!!======================================================================
60!!            ***  Surface Boundary Condition namelists  ***          !!
61!!                                                                    !!
62!!   namsbc          surface boundary condition manager                 (default: NO selection)
63!!   namsbc_flx      flux               formulation                     (ln_flx     =T)
64!!   namsbc_blk      Bulk formulae formulation                          (ln_blk     =T)
65!!   namsbc_cpl      CouPLed            formulation                     ("key_oasis3" )
66!!   namsbc_sas      Stand-Alone Surface module                         (SAS_SRC  only)
67!!   namtra_qsr      penetrative solar radiation                        (ln_traqsr  =T)
68!!   namsbc_rnf      river runoffs                                      (ln_rnf     =T)
69!!   namsbc_isf      ice shelf melting/freezing                         (ln_isfcav  =T : read (ln_read_cfg=T) or set or usr_def_zgr )
70!!   namsbc_iscpl    coupling option between land ice model and ocean   (ln_isfcav  =T)
71!!   namsbc_apr      Atmospheric Pressure                               (ln_apr_dyn =T)
72!!   namsbc_ssr      sea surface restoring term (for T and/or S)        (ln_ssr     =T)
73!!   namsbc_wave     external fields from wave model                    (ln_wave    =T)
74!!   namberg         iceberg floats                                     (ln_icebergs=T)
75!!======================================================================
76!
77!-----------------------------------------------------------------------
78&namsbc        !   Surface Boundary Condition (surface module)
79!-----------------------------------------------------------------------
80   nn_fsbc     = 1         !  frequency of SBC module call
81                     ! Type of air-sea fluxes
82   ln_blk      = .true.    !  Bulk formulation                          (T => fill namsbc_blk )
83                     ! Sea-ice :
84   nn_ice      = 2         !  =0 no ice boundary condition
85      !                    !  =1 use observed ice-cover                 (  => fill namsbc_iif )
86      !                    !  =2 or 3 for SI3 and CICE, respectively
87                     ! Misc. options of sbc :
88   ln_traqsr   = .true.    !  Light penetration in the ocean            (T => fill namtra_qsr)
89   ln_rnf      = .false.   !  runoffs                                   (T => fill namsbc_rnf)
90   ln_ssr      = .false.   !  Sea Surface Restoring on T and/or S       (T => fill namsbc_ssr)
91   nn_fwb      = 0         !  FreshWater Budget: =0 unchecked
92/
93!-----------------------------------------------------------------------
94&namsbc_blk   !   namsbc_blk  generic Bulk formula                      (ln_blk =T)
95!-----------------------------------------------------------------------
96   !                    !  bulk algorithm :
97   ln_NCAR     = .true.    ! "NCAR"      algorithm   (Large and Yeager 2008)
98
99   cn_dir      = './'      !  root directory for the bulk data location
100   !___________!_________________________!___________________!___________!_____________!________!___________!______________________________________!__________!_______________!
101   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ !          weights filename            ! rotation ! land/sea mask !
102   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                                      ! pairing  !    filename   !
103   sn_wndi     = 'u_10.15JUNE2009_fill'       ,    6.        , 'U_10_MOD',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bicub.nc'     , 'Uwnd'   , ''
104   sn_wndj     = 'v_10.15JUNE2009_fill'       ,    6.        , 'V_10_MOD',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bicub.nc'     , 'Vwnd'   , ''
105   sn_qsr      = 'ncar_rad.15JUNE2009_fill'   ,   24.        , 'SWDN_MOD',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
106   sn_qlw      = 'ncar_rad.15JUNE2009_fill'   ,   24.        , 'LWDN_MOD',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
107   sn_tair     = 't_10.15JUNE2009_fill'       ,    6.        , 'T_10_MOD',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
108   sn_humi     = 'q_10.15JUNE2009_fill'       ,    6.        , 'Q_10_MOD',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
109   sn_prec     = 'ncar_precip.15JUNE2009_fill',   -1.        , 'PRC_MOD1',   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
110   sn_snow     = 'ncar_precip.15JUNE2009_fill',   -1.        , 'SNOW'    ,   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
111   sn_slp      = 'slp.15JUNE2009_fill'        ,    6.        , 'SLP'     ,   .false.   , .true. , 'yearly'  , 'weights_core2_nordic2_bilin.nc'     , ''       , ''
112
113/
114!-----------------------------------------------------------------------
115&namtra_qsr    !   penetrative solar radiation                          (ln_traqsr =T)
116!-----------------------------------------------------------------------
117   !                       ! type of penetration                        (default: NO selection)
118   ln_qsr_rgb  = .true.       !  RGB light penetration (Red-Green-Blue)
119   !
120   nn_chldta   =      1       !  RGB : Chl data (=1) or cst value (=0)
121
122   cn_dir      = './'      !  root directory for the chlorophyl data location
123   !___________!_________________________!___________________!___________!_____________!________!___________!______________________________________!__________!_______________!
124   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ !          weights filename            ! rotation ! land/sea mask !
125   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                                      ! pairing  !    filename   !
126   sn_chl      ='chlorophyll'            ,        -1.        , 'CHLA'    ,   .true.    , .true. , 'yearly'  , ''                                   , ''       , ''
127/
128!-----------------------------------------------------------------------
129&namsbc_rnf    !   runoffs                                              (ln_rnf =T)
130!-----------------------------------------------------------------------
131   !  not used in this zoom
132/
133!-----------------------------------------------------------------------
134&namsbc_ssr    !   surface boundary condition : sea surface restoring   (ln_ssr =T)
135!-----------------------------------------------------------------------
136   !  not used in this zoom
137/
138!-----------------------------------------------------------------------
139&namberg       !   iceberg parameters                                   (default: No iceberg)
140!-----------------------------------------------------------------------
141   !  iceberg floats are not currently available with AGRIF
142   !     ===>>  forced deactivation in icbini.F90
143/
144!!======================================================================
145!!               ***  Lateral boundary condition  ***                 !!
146!!                                                                    !!
147!!   namlbc        lateral momentum boundary condition                  (default: NO selection)
148!!   namagrif      agrif nested grid ( read by child model only )       ("key_agrif")
149!!   nam_tide      Tidal forcing                                        (default: OFF)
150!!   nambdy        Unstructured open boundaries                         (default: OFF)
151!!   nambdy_dta    Unstructured open boundaries - external data         (see  nambdy)
152!!   nambdy_tide   tidal forcing at open boundaries                     (default: OFF)
153!!======================================================================
154!
155!-----------------------------------------------------------------------
156&namlbc        !   lateral momentum boundary condition                  (default: NO selection)
157!-----------------------------------------------------------------------
158   rn_shlat    =    2.     !  no slip
159/
160!-----------------------------------------------------------------------
161&namagrif      !  AGRIF zoom                                            ("key_agrif")
162!-----------------------------------------------------------------------
163   ln_spc_dyn    = .true.  !  use 0 as special value for dynamics
164   ln_chk_bathy  = .false.  !  =T  check the parent bathymetry
165/
166!-----------------------------------------------------------------------
167&namdrg        !   top/bottom drag coefficient                          (default: NO selection)
168!-----------------------------------------------------------------------
169   ln_non_lin = .true.    !  non-linear  drag: Cd = Cd0 |U|
170/
171!-----------------------------------------------------------------------
172&namdrg_bot    !   BOTTOM friction                                 
173!-----------------------------------------------------------------------
174/
175!-----------------------------------------------------------------------
176&nambbc        !   bottom temperature boundary condition                (default: OFF)
177!-----------------------------------------------------------------------
178   ln_trabbc   = .true.    !  Apply a geothermal heating at the ocean bottom
179      nn_geoflx   =    1      !  geothermal heat flux: = 2 read variable flux [mW/m2]
180/
181!-----------------------------------------------------------------------
182&nambbl        !   bottom boundary layer scheme                         (default: OFF)
183!-----------------------------------------------------------------------
184   ln_trabbl   = .true.    !  Bottom Boundary Layer parameterisation flag
185      nn_bbl_ldf  =  1        !  diffusive bbl (=1)   or not (=0)
186      nn_bbl_adv  =  0        !  advective bbl (=1/2) or not (=0)
187      rn_ahtbbl   =  1000.    !  lateral mixing coefficient in the bbl  [m2/s]
188      rn_gambbl   =  10.      !  advective bbl coefficient                 [s]
189/
190!!======================================================================
191!!                        Tracer (T & S) namelists                    !!
192!!                                                                    !!
193!!   nameos        equation of state                                    (default: NO selection)
194!!   namtra_adv    advection scheme                                     (default: NO selection)
195!!   namtra_ldf    lateral diffusion scheme                             (default: NO selection)
196!!   namtra_mle    mixed layer eddy param. (Fox-Kemper param.)          (default: OFF)
197!!   namtra_eiv    eddy induced velocity param.                         (default: OFF)
198!!   namtra_dmp    T & S newtonian damping                              (default: OFF)
199!!======================================================================
200!
201!-----------------------------------------------------------------------
202&nameos        !   ocean Equation Of Seawater                           (default: NO selection)
203!-----------------------------------------------------------------------
204   ln_eos80    = .true.          !  = Use EOS80
205/
206!-----------------------------------------------------------------------
207&namtra_adv    !   advection scheme for tracer                          (default: NO selection)
208!-----------------------------------------------------------------------
209   ln_traadv_ubs = .true. !  UBS scheme
210      nn_ubs_v   =  2            !  =2  , vertical 2nd order FCT / COMPACT 4th order
211/
212!-----------------------------------------------------------------------
213&namtra_mle    !   mixed layer eddy parametrisation (Fox-Kemper)        (default: OFF)
214!-----------------------------------------------------------------------
215   ln_mle      = .true.   ! (T) use the Mixed Layer Eddy (MLE) parameterisation
216/
217!-----------------------------------------------------------------------
218&namtra_ldf    !   lateral diffusion scheme for tracers                 (default: NO selection)
219!-----------------------------------------------------------------------
220   ln_traldf_OFF   =  .true.  !           No operator (no explicit advection)
221/
222!-----------------------------------------------------------------------
223&namtra_eiv    !   eddy induced velocity param.                         (default: OFF)
224!-----------------------------------------------------------------------
225   !  not used in this zoom
226/
227!-----------------------------------------------------------------------
228&namtra_dmp    !   tracer: T & S newtonian damping                      (default: OFF)
229!-----------------------------------------------------------------------
230   !  not used in this zoom
231/
232!!======================================================================
233!!                      ***  Dynamics namelists  ***                  !!
234!!                                                                    !!
235!!   nam_vvl       vertical coordinate options                          (default: z-star)
236!!   namdyn_adv    formulation of the momentum advection                (default: NO selection)
237!!   namdyn_vor    advection scheme                                     (default: NO selection)
238!!   namdyn_hpg    hydrostatic pressure gradient                        (default: NO selection)
239!!   namdyn_spg    surface pressure gradient                            (default: NO selection)
240!!   namdyn_ldf    lateral diffusion scheme                             (default: NO selection)
241!!   namdta_dyn    offline TOP: dynamics read in files                  (OFF_SRC only)
242!!======================================================================
243!
244!-----------------------------------------------------------------------
245&nam_vvl       !   vertical coordinate options                          (default: z-star)
246!-----------------------------------------------------------------------
247/
248!-----------------------------------------------------------------------
249&namdyn_adv    !   formulation of the momentum advection                (default: NO selection)
250!-----------------------------------------------------------------------
251   ln_dynadv_ubs = .true.  !  flux form - 3rd order UBS      scheme
252/
253!-----------------------------------------------------------------------
254&namdyn_vor    !   Vorticity / Coriolis scheme                          (default: NO selection)
255!-----------------------------------------------------------------------
256   ln_dynvor_ene = .true.  !  energy conserving scheme
257/
258!-----------------------------------------------------------------------
259&namdyn_hpg    !   Hydrostatic pressure gradient option                 (default: NO selection)
260!-----------------------------------------------------------------------
261   ln_hpg_sco  = .true.    !  s-coordinate (standard jacobian formulation)
262/
263!-----------------------------------------------------------------------
264&namdyn_spg    !   surface pressure gradient                            (default: NO selection)
265!-----------------------------------------------------------------------
266   ln_dynspg_ts  = .true.  !  split-explicit free surface
267/
268!-----------------------------------------------------------------------
269&namdyn_ldf    !   lateral diffusion on momentum                        (default: NO selection)
270!-----------------------------------------------------------------------
271   ln_dynldf_OFF =  .true.    !  No operator (i.e. no explicit diffusion)
272/
273!!======================================================================
274!!                     vertical physics namelists                     !!
275!!                                                                    !!
276!!    namzdf        vertical physics manager                            (default: NO selection)
277!!    namzdf_ric    richardson number vertical mixing                   (ln_zdfric=T)
278!!    namzdf_tke    TKE vertical mixing                                 (ln_zdftke=T)
279!!    namzdf_gls    GLS vertical mixing                                 (ln_zdfgls=T)
280!!    namzdf_osm    OSM vertical diffusion                              (ln_zdfosm=T)
281!!    namzdf_iwm    tidal mixing parameterization                       (ln_zdfiwm=T)
282!!======================================================================
283!
284!-----------------------------------------------------------------------
285&namzdf        !   vertical physics                                     (default: NO selection)
286!-----------------------------------------------------------------------
287   !                       ! type of vertical closure
288   ln_zdftke   = .true.       !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke)
289   !
290   !                       ! convection
291   ln_zdfevd   = .true.       !  Enhanced Vertical Diffusion scheme
292      nn_evdm  =    0            !  evd apply on tracer (=0) or on tracer and momentum (=1)
293      rn_evd   =  100.           !  evd mixing coefficient [m2/s]
294   !
295   ln_zdfddm   = .true.    ! double diffusive mixing
296      rn_avts  =    1.e-4     !  maximum avs (vertical mixing on salinity)
297      rn_hsbfr =    1.6       !  heat/salt buoyancy flux ratio
298   !
299   !                       !  Coefficients
300   rn_avm0     =   1.2e-4     !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F)
301   rn_avt0     =   1.2e-5     !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F)
302   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0)
303   nn_havtb    =    1         !  horizontal shape for avtb (=1) or not (=0)
304/
305!-----------------------------------------------------------------------
306&namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  (ln_zdftke =T)
307!-----------------------------------------------------------------------
308/
309!!======================================================================
310!!                  ***  Diagnostics namelists  ***                   !!
311!!                                                                    !!
312!!   namtrd       dynamics and/or tracer trends                         (default: OFF)
313!!   namhsb       Heat and salt budgets                                 (default: OFF)
314!!   namdiu       Cool skin and warm layer models                       (default: OFF)
315!!   namdiu       Cool skin and warm layer models                       (default: OFF)
316!!   namflo       float parameters                                      (default: OFF)
317!!   nam_diadct   transports through some sections                      (default: OFF)
318!!   nam_dia25h   25h Mean Output                                       (default: OFF)
319!!   namnc4       netcdf4 chunking and compression settings             ("key_netcdf4")
320!!======================================================================
321!
322!!======================================================================
323!!               ***  Observation & Assimilation  ***                 !!
324!!                                                                    !!
325!!   namobs       observation and model comparison                      (default: OFF)
326!!   nam_asminc   assimilation increments                               ('key_asminc')
327!!======================================================================
328!
329!!======================================================================
330!!                  ***  Miscellaneous namelists  ***                 !!
331!!                                                                    !!
332!!   nammpp            Massively Parallel Processing
333!!   namctl            Control prints                                   (default: OFF)
334!!   namsto            Stochastic parametrization of EOS                (default: OFF)
335!!======================================================================
336!
337!-----------------------------------------------------------------------
338&nammpp        !   Massively Parallel Processing
339!-----------------------------------------------------------------------
340/
341!-----------------------------------------------------------------------
342&namctl        !   Control prints                                       (default: OFF)
343!-----------------------------------------------------------------------
344/
345!-----------------------------------------------------------------------
346&namsto        ! Stochastic parametrization of EOS                      (default: OFF)
347!-----------------------------------------------------------------------
348/
Note: See TracBrowser for help on using the repository browser.