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/dev_r14318_RK3_stage1/tests/C1D_ASICS/EXP00 – NEMO

source: NEMO/branches/2021/dev_r14318_RK3_stage1/tests/C1D_ASICS/EXP00/namelist_cfg @ 15574

Last change on this file since 15574 was 15574, checked in by techene, 3 years ago

#2605 #2715 trunk merged into dev_r14318_RK3_stage1

File size: 33.2 KB
Line 
1!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2!! NEMO/OCE :   Reference namelist_ref                                !!
3!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
4!! NEMO/OCE  :  1 - Domain & run manager (namrun, namcfg, namdom, namtsd, namcrs, namc1d, namc1d_uvd)
5!! namelists    2 - Surface boundary (namsbc, namsbc_flx, namsbc_blk, namsbc_cpl,
6!!                                    namsbc_sas, namtra_qsr, namsbc_rnf,
7!!                                    namisf, namsbc_apr,
8!!                                    namsbc_ssr, namsbc_wave, namberg)
9!!              3 - lateral boundary (namlbc, namagrif, nambdy, nambdy_tide)
10!!              4 - top/bot boundary (namdrg, namdrg_top, namdrg_bot, nambbc, nambbl)
11!!              5 - Tracer           (nameos, namtra_adv, namtra_ldf, namtra_eiv, namtra_dmp)
12!!              6 - dynamics         (namdyn_adv, namdyn_vor, namdyn_hpg, namdyn_spg, namdyn_ldf)
13!!              7 - Vertical physics (namzdf, namzdf_ric, namzdf_tke, namzdf_gls, namzdf_iwm)
14!!              8 - diagnostics      (namnc4, namtrd, namspr, namflo, namhsb)
15!!              9 - Obs & Assim      (namobs, nam_asminc)
16!!             10 - miscellaneous    (nammpp, namctl, namsto)
17!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
18
19!!======================================================================
20!!              ***  Domain & Run management namelists  ***           !!
21!!                                                                    !!
22!!   namrun       parameters of the run
23!!   namdom       space and time domain
24!!   namcfg       parameters of the configuration                       (default: user defined GYRE)
25!!   namwad       Wetting and drying                                    (default: OFF)
26!!   namtsd       data: temperature & salinity                          (default: OFF)
27!!   namcrs       coarsened grid (for outputs and/or TOP)               (ln_crs =T)
28!!   namc1d       1D configuration options                              (ln_c1d =T)
29!!   namc1d_dyndmp 1D newtonian damping applied on currents             (ln_c1d =T)
30!!   namc1d_uvd   1D data (currents)                                    (ln_c1d =T)
31!!======================================================================
32!
33!-----------------------------------------------------------------------
34&namusr_def    !   C1D user defined namelist
35!-----------------------------------------------------------------------
36   rn_bathy    =  2380.   ! depth in meters
37/
38!-----------------------------------------------------------------------
39&namrun        !   parameters of the run
40!-----------------------------------------------------------------------
41   cn_exp      = "C1D_ASICS"!  experience name
42   nn_it000    =       1   !  first time step
43   nn_itend    =   17040   !  last  time step (std 5475)
44   nn_date0    = 20130115  !  date at nit_0000 (format yyyymmdd) used if ln_rstart=F or (ln_rstart=T and nn_rstctl=0 or 1)
45   nn_stock    =   17040   !  frequency of creation of a restart file (modulo referenced to 1)
46   nn_write    =   17040   !  frequency of write in the output file   (modulo referenced to nn_it000)
47/
48!-----------------------------------------------------------------------
49&namdom        !   time and space domain
50!-----------------------------------------------------------------------
51   ln_linssh   = .true.    !  =T  linear free surface  ==>>  model level are fixed in time
52   !
53   rn_Dt       =  360.     !  time step for the dynamics and tracer
54   ln_c1d      = .true.    !  Single column domain (1x1pt)              (T => fill namc1d)
55/
56!-----------------------------------------------------------------------
57&namcfg        !   parameters of the configuration                      (default: use namusr_def in namelist_cfg)
58!-----------------------------------------------------------------------
59/
60!-----------------------------------------------------------------------
61&namtsd        !    Temperature & Salinity Data  (init/dmp)             (default: OFF)
62!-----------------------------------------------------------------------
63   !                       ! =T  read T-S fields for:
64   ln_tsd_init = .true.          !  ocean initialisation
65   
66   cn_dir      = './'      !  root directory for the T-S data location
67   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
68   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
69   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
70   sn_tem      = 'init_ASICS'       ,         24.       ,'votemper',  .false.     , .true.,  'daily'  ,    ''            ,    ''    ,    ''
71   sn_sal      = 'init_ASICS'       ,         24.       ,'vosaline',  .false.     , .true.,  'daily'  ,    ''            ,    ''    ,    ''
72/
73!-----------------------------------------------------------------------
74&namwad        !   Wetting and Drying (WaD)                             (default: OFF)
75!-----------------------------------------------------------------------
76/
77!-----------------------------------------------------------------------
78&namcrs        !   coarsened grid (for outputs and/or TOP)              (ln_crs =T)
79!-----------------------------------------------------------------------
80/
81!-----------------------------------------------------------------------
82&namc1d        !   1D configuration options                             (ln_c1d =T default: PAPA station)
83!-----------------------------------------------------------------------
84   rn_lat1d    =      30.  !  Column latitude
85   rn_lon1d    =      15.  !  Column longitude
86/
87!-----------------------------------------------------------------------
88&namc1d_dyndmp !   U & V newtonian damping                              (ln_c1d =T default: OFF)
89!-----------------------------------------------------------------------
90   ln_dyndmp   =  .false.  !  add a damping term (T) or not (F)
91/
92!-----------------------------------------------------------------------
93&namc1d_uvd    !   data: U & V currents                                 (ln_c1d =T default: OFF)
94!-----------------------------------------------------------------------
95   !                       !  =T read U-V fields for:
96   ln_uvd_init   = .false.       !  ocean initialisation
97   ln_uvd_dyndmp = .false.       !  U-V restoring
98
99   cn_dir      = './'      !  root directory for the U-V 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_ucur     = 'ucurrent'              ,         -1.       ,'u_current',   .false.   , .true. , 'monthly' ,  ''              ,  'Ume'   , ''
104   sn_vcur     = 'vcurrent'              ,         -1.       ,'v_current',   .false.   , .true. , 'monthly' ,  ''              ,  'Vme'   , ''
105/
106
107!!======================================================================
108!!            ***  Surface Boundary Condition namelists  ***          !!
109!!                                                                    !!
110!!   namsbc          surface boundary condition manager                 (default: NO selection)
111!!   namsbc_flx      flux               formulation                     (ln_flx     =T)
112!!   namsbc_blk      Bulk formulae formulation                          (ln_blk     =T)
113!!   namsbc_cpl      CouPLed            formulation                     ("key_oasis3" )
114!!   namsbc_sas      Stand-Alone Surface module                         (SAS_SRC  only)
115!!   namsbc_iif      Ice-IF: use observed ice cover                     (nn_ice = 1   )
116!!   namtra_qsr      penetrative solar radiation                        (ln_traqsr  =T)
117!!   namsbc_ssr      sea surface restoring term (for T and/or S)        (ln_ssr     =T)
118!!   namsbc_rnf      river runoffs                                      (ln_rnf     =T)
119!!   namsbc_apr      Atmospheric Pressure                               (ln_apr_dyn =T)
120!!   namsbc_wave     external fields from wave model                    (ln_wave    =T)
121!!   namberg         iceberg floats                                     (ln_icebergs=T)
122!!   namsbc_fwb      freshwater-budget adjustment                       (nn_fwb > 0)
123!!======================================================================
124!
125!-----------------------------------------------------------------------
126&namsbc        !   Surface Boundary Condition manager                   (default: NO selection)
127!-----------------------------------------------------------------------
128   nn_fsbc     = 1         !  frequency of SBC module call
129      !                    !  (control sea-ice & iceberg model call)
130                     ! Type of air-sea fluxes
131   ln_flx      = .true.    !  flux formulation                          (T => fill namsbc_flx )
132      !              ! Type of coupling (Ocean/Ice/Atmosphere) :
133                     ! Misc. options of sbc :
134   ln_traqsr   = .true.    !  Light penetration in the ocean            (T => fill namtra_qsr)
135/
136!-----------------------------------------------------------------------
137&namsbc_flx    !   surface boundary condition : flux formulation        (ln_flx =T)
138!-----------------------------------------------------------------------
139   sn_utau     = 'forc_ASICS' ,        1         , 'TAUX2'    , .false.      , .false., 'yearly'  , ''       , ''       , ''
140   sn_vtau     = 'forc_ASICS' ,        1         , 'TAUY2'    , .false.      , .false., 'yearly'  , ''       , ''       , ''
141   sn_qtot     = 'forc_ASICS' ,        1         , 'FNET2'    , .false.      , .false., 'yearly'  , ''       , ''       , ''
142   sn_qsr      = 'forc_ASICS' ,        1         , 'FSOL2'    , .false.      , .false., 'yearly'  , ''       , ''       , ''
143   sn_emp      = 'forc_ASICS' ,        1         , 'EMP2'     , .false.      , .false., 'yearly'  , ''       , ''       , ''
144   !
145   cn_dir      = './'      !  root directory for the location of the flux files
146/
147!-----------------------------------------------------------------------
148&namsbc_blk    !   namsbc_blk  generic Bulk formula                     (ln_blk =T)
149!-----------------------------------------------------------------------
150   !                    !  bulk algorithm :
151/
152!-----------------------------------------------------------------------
153&namsbc_cpl    !   coupled ocean/atmosphere model                       ("key_oasis3")
154!-----------------------------------------------------------------------
155/
156!-----------------------------------------------------------------------
157&namsbc_sas    !   Stand-Alone Surface module: ocean data               (SAS_SRC  only)
158!-----------------------------------------------------------------------
159/
160!-----------------------------------------------------------------------
161&namsbc_iif    !   Ice-IF : use observed ice cover                      (nn_ice = 1)
162!-----------------------------------------------------------------------
163/
164!-----------------------------------------------------------------------
165&namtra_qsr    !   penetrative solar radiation                          (ln_traqsr =T)
166!-----------------------------------------------------------------------
167   !                       !  type of penetration                        (default: NO selection)
168   ln_qsr_rgb  = .true.      !  RGB light penetration (Red-Green-Blue)
169   
170   cn_dir      = './'      !  root directory for the chlorophyl data location
171   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
172   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
173   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
174
175   sn_chl      ='chlorophyll',         -1.       , 'CHLA'    ,   .true.     , .true. , 'yearly'  ,        ''       ,    ''    , ''
176/
177!-----------------------------------------------------------------------
178&namsbc_ssr    !   surface boundary condition : sea surface restoring   (ln_ssr =T)
179!-----------------------------------------------------------------------
180/
181!-----------------------------------------------------------------------
182&namsbc_rnf    !   runoffs                                              (ln_rnf =T)
183!-----------------------------------------------------------------------
184/
185!-----------------------------------------------------------------------
186&namsbc_apr    !   Atmospheric pressure used as ocean forcing           (ln_apr_dyn =T)
187!-----------------------------------------------------------------------
188/
189!-----------------------------------------------------------------------
190&namsbc_isf    !  Top boundary layer (ISF)                              (ln_isfcav =T : read (ln_read_cfg=T)
191!-----------------------------------------------------------------------             or set or usr_def_zgr )
192/
193!-----------------------------------------------------------------------
194&namsbc_iscpl  !   land ice / ocean coupling option                     (ln_isfcav =T : read (ln_read_cfg=T)
195!-----------------------------------------------------------------------             or set or usr_def_zgr )
196/
197!-----------------------------------------------------------------------
198&namsbc_wave   ! External fields from wave model                        (ln_wave=T)
199!-----------------------------------------------------------------------
200/
201!-----------------------------------------------------------------------
202&namberg       !   iceberg parameters                                   (default: OFF)
203!-----------------------------------------------------------------------
204/
205
206!!======================================================================
207!!               ***  Lateral boundary condition  ***                 !!
208!!                                                                    !!
209!!   namlbc        lateral momentum boundary condition                  (default: NO selection)
210!!   namagrif      agrif nested grid   (read by child model only)       ("key_agrif")
211!!   nam_tide      Tidal forcing                                        (default: OFF)
212!!   nambdy        Unstructured open boundaries                         (default: OFF)
213!!   nambdy_dta    Unstructured open boundaries - external data         (see  nambdy)
214!!   nambdy_tide   tidal forcing at open boundaries                     (default: OFF)
215!!======================================================================
216!
217!-----------------------------------------------------------------------
218&namlbc        !   lateral momentum boundary condition                  (default: NO selection)
219!-----------------------------------------------------------------------
220   rn_shlat    =  0.   !  shlat = 0  !  0 < shlat < 2  !  shlat = 2  !  2 < shlat
221/
222!-----------------------------------------------------------------------
223&namagrif      !  AGRIF zoom                                            ("key_agrif")
224!-----------------------------------------------------------------------
225/
226!-----------------------------------------------------------------------
227&nam_tide      !   tide parameters                                      (default: OFF)
228!-----------------------------------------------------------------------
229/
230!-----------------------------------------------------------------------
231&nambdy        !  unstructured open boundaries                          (default: OFF)
232!-----------------------------------------------------------------------
233/
234!-----------------------------------------------------------------------
235&nambdy_dta    !  open boundaries - external data                       (see nam_bdy)
236!-----------------------------------------------------------------------
237/
238!-----------------------------------------------------------------------
239&nambdy_tide   !  tidal forcing at open boundaries                      (default: OFF)
240!-----------------------------------------------------------------------
241/
242
243!!======================================================================
244!!                ***  Top/Bottom boundary condition  ***             !!
245!!                                                                    !!
246!!   namdrg        top/bottom drag coefficient                          (default: NO selection)
247!!   namdrg_top    top    friction                                      (ln_drg_OFF=F & ln_isfcav=T)
248!!   namdrg_bot    bottom friction                                      (ln_drg_OFF=F)
249!!   nambbc        bottom temperature boundary condition                (default: OFF)
250!!   nambbl        bottom boundary layer scheme                         (default: OFF)
251!!======================================================================
252!
253!-----------------------------------------------------------------------
254&namdrg        !   top/bottom drag coefficient                          (default: NO selection)
255!-----------------------------------------------------------------------
256   ln_non_lin  = .true.   !  non-linear  drag: Cd = Cd0 |U|
257   ln_drgimp   = .false.  !  implicit top/bottom friction flag
258/
259!-----------------------------------------------------------------------
260&namdrg_top    !   TOP friction                                         (ln_drg_OFF =F & ln_isfcav=T)
261!-----------------------------------------------------------------------
262/
263!-----------------------------------------------------------------------
264&namdrg_bot    !   BOTTOM friction                                      (ln_drg_OFF =F)
265!-----------------------------------------------------------------------
266/
267!-----------------------------------------------------------------------
268&nambbc        !   bottom temperature boundary condition                (default: OFF)
269!-----------------------------------------------------------------------
270/
271!-----------------------------------------------------------------------
272&nambbl        !   bottom boundary layer scheme                         (default: OFF)
273!-----------------------------------------------------------------------
274/
275
276!!======================================================================
277!!                        Tracer (T-S) namelists                      !!
278!!                                                                    !!
279!!   nameos        equation of state                                    (default: NO selection)
280!!   namtra_adv    advection scheme                                     (default: NO selection)
281!!   namtra_ldf    lateral diffusion scheme                             (default: NO selection)
282!!   namtra_mle    mixed layer eddy param. (Fox-Kemper param.)          (default: OFF)
283!!   namtra_eiv    eddy induced velocity param.                         (default: OFF)
284!!   namtra_dmp    T & S newtonian damping                              (default: OFF)
285!!======================================================================
286!
287!-----------------------------------------------------------------------
288&nameos        !   ocean Equation Of Seawater                           (default: NO selection)
289!-----------------------------------------------------------------------
290   ln_eos80    = .true.         !  = Use EOS80
291/
292!-----------------------------------------------------------------------
293&namtra_adv    !   advection scheme for tracer                          (default: NO selection)
294!-----------------------------------------------------------------------
295   ln_traadv_OFF = .true. !  No tracer advection
296/
297!-----------------------------------------------------------------------
298&namtra_ldf    !   lateral diffusion scheme for tracers                 (default: NO selection)
299!-----------------------------------------------------------------------
300   !                       !  Operator type:
301   ln_traldf_OFF   = .true.   !  No explicit diffusion
302/
303!-----------------------------------------------------------------------
304&namtra_mle    !   mixed layer eddy parametrisation (Fox-Kemper)       (default: OFF)
305!-----------------------------------------------------------------------
306/
307!-----------------------------------------------------------------------
308&namtra_eiv    !   eddy induced velocity param.                         (default: OFF)
309!-----------------------------------------------------------------------
310/
311!-----------------------------------------------------------------------
312&namtra_dmp    !   tracer: T & S newtonian damping                      (default: OFF)
313!-----------------------------------------------------------------------
314/
315
316!!======================================================================
317!!                      ***  Dynamics namelists  ***                  !!
318!!                                                                    !!
319!!   nam_vvl       vertical coordinate options                          (default: z-star)
320!!   namdyn_adv    formulation of the momentum advection                (default: NO selection)
321!!   namdyn_vor    advection scheme                                     (default: NO selection)
322!!   namdyn_hpg    hydrostatic pressure gradient                        (default: NO selection)
323!!   namdyn_spg    surface pressure gradient                            (default: NO selection)
324!!   namdyn_ldf    lateral diffusion scheme                             (default: NO selection)
325!!   namdta_dyn    offline TOP: dynamics read in files                  (OFF_SRC only)
326!!======================================================================
327!
328!-----------------------------------------------------------------------
329&nam_vvl       !   vertical coordinate options                          (default: z-star)
330!-----------------------------------------------------------------------
331/
332!-----------------------------------------------------------------------
333&namdyn_adv    !   formulation of the momentum advection                (default: NO selection)
334!-----------------------------------------------------------------------
335   ln_dynadv_OFF = .true. !  linear dynamics (no momentum advection)
336/
337!-----------------------------------------------------------------------
338&namdyn_vor    !   Vorticity / Coriolis scheme                          (default: NO selection)
339!-----------------------------------------------------------------------
340   ln_dynvor_ene = .true. !  energy    conserving scheme
341/
342!-----------------------------------------------------------------------
343&namdyn_hpg    !   Hydrostatic pressure gradient option                 (default: NO selection)
344!-----------------------------------------------------------------------
345   ln_hpg_sco  = .true.   !  s-coordinate (standard jacobian formulation)
346/
347!-----------------------------------------------------------------------
348&namdyn_spg    !   surface pressure gradient                            (default: NO selection)
349!-----------------------------------------------------------------------
350    ln_dynspg_ts   = .false.   ! split-explicit free surface
351       ln_bt_fw      = .false.     ! Forward integration of barotropic Eqs.
352       ln_bt_av      = .true.     ! Time filtering of barotropic variables
353/
354!-----------------------------------------------------------------------
355&namdyn_ldf    !   lateral diffusion on momentum                        (default: NO selection)
356!-----------------------------------------------------------------------
357   !                       !  Type of the operator :
358   ln_dynldf_OFF = .true.     !  No operator (i.e. no explicit diffusion)
359/
360!-----------------------------------------------------------------------
361&namdta_dyn    !   offline ocean input files                            (OFF_SRC only)
362!-----------------------------------------------------------------------
363/
364
365!!======================================================================
366!!                     vertical physics namelists                     !!
367!!                                                                    !!
368!!    namzdf        vertical physics manager                            (default: NO selection)
369!!    namzdf_ric    richardson number vertical mixing                   (ln_zdfric=T)
370!!    namzdf_tke    TKE vertical mixing                                 (ln_zdftke=T)
371!!    namzdf_gls    GLS vertical mixing                                 (ln_zdfgls=T)
372!!    namzdf_osm    OSM vertical diffusion                              (ln_zdfosm=T)
373!!    namzdf_iwm    tidal mixing parameterization                       (ln_zdfiwm=T)
374!!======================================================================
375!
376!-----------------------------------------------------------------------
377&namzdf        !   vertical physics manager                             (default: NO selection)
378!-----------------------------------------------------------------------
379   !                       ! type of vertical closure (required)
380   ln_zdftke   = .true.       !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke)
381   ln_zdfmfc   = .true.       !  Mass Flux Convection
382   ln_zdfiwm   = .true.       ! internal wave-induced mixing            (T =>   fill namzdf_iwm)
383/
384!-----------------------------------------------------------------------
385&namzdf_ric    !   richardson number dependent vertical diffusion       (ln_zdfric =T)
386!-----------------------------------------------------------------------
387/
388!-----------------------------------------------------------------------
389&namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  (ln_zdftke =T)
390!-----------------------------------------------------------------------
391/
392!-----------------------------------------------------------------------
393&namzdf_gls    !   GLS vertical diffusion                               (ln_zdfgls =T)
394!-----------------------------------------------------------------------
395/
396!-----------------------------------------------------------------------
397&namzdf_osm    !   OSM vertical diffusion                               (ln_zdfosm =T)
398!-----------------------------------------------------------------------
399/
400!-----------------------------------------------------------------------
401&namzdf_mfc     !   Mass Flux Convection
402!-----------------------------------------------------------------------
403   ln_edmfuv  = .false.        ! Activate on velocity fields (Not available yet)
404   rn_cemf    =  1.            ! entrain/detrain coef. (<0 => cte; >0 % depending on dW/dz
405   rn_cwmf    = -0.            ! entrain/detrain coef. (<0 => cte; >0 % depending on dW/dz
406   rn_cent    = 2.e-5          ! entrain of convective area
407   rn_cdet    = 3.e-5          ! detrain of convective area
408   rn_cap     = 0.9            ! Coef. for CAP estimation
409   App_max    = 0.1            ! Maximum convection area (% of the cell)
410/
411!-----------------------------------------------------------------------
412&namzdf_iwm    !    internal wave-driven mixing parameterization        (ln_zdfiwm =T)
413!-----------------------------------------------------------------------
414   nn_zpyc     = 1         !  pycnocline-intensified dissipation scales as N (=1) or N^2 (=2)
415   ln_mevar    = .true.    !  variable (T) or constant (F) mixing efficiency
416   ln_tsdiff   = .true.    !  account for differential T/S mixing (T) or not (F)
417
418   cn_dir      = './'      !  root directory for the iwm data location                                                                 
419   !___________!_________________________!___________________!___________!_____________!________!___________!__________________!__________!_______________!
420   !           !  file name              ! frequency (hours) ! variable  ! time interp.!  clim  ! 'yearly'/ ! weights filename ! rotation ! land/sea mask !
421   !           !                         !  (if <0  months)  !   name    !   (logical) !  (T/F) ! 'monthly' !                  ! pairing  !    filename   !
422   sn_mpb      = 'forcing_iwm_ASICSstation' , -12.           , 'mixing_power_bot' , .false.  , .true. , 'yearly' , '' , ''  , ''
423   sn_mpp      = 'forcing_iwm_ASICSstation' , -12.           , 'mixing_power_pyc' , .false.  , .true. , 'yearly' , '' , ''  , ''
424   sn_mpc      = 'forcing_iwm_ASICSstation' , -12.           , 'mixing_power_cri' , .false.  , .true. , 'yearly' , '' , ''  , ''
425   sn_dsb      = 'forcing_iwm_ASICSstation' , -12.           , 'decay_scale_bot'  , .false.  , .true. , 'yearly' , '' , ''  , ''
426   sn_dsc      = 'forcing_iwm_ASICSstation' , -12.           , 'decay_scale_cri'  , .false.  , .true. , 'yearly' , '' , ''  , ''
427/
428!!======================================================================
429!!                  ***  Diagnostics namelists  ***                   !!
430!!                                                                    !!
431!!   namtrd       dynamics and/or tracer trends                         (default: OFF)
432!!   namhsb       Heat and salt budgets                                 (default: OFF)
433!!   namdiu       Cool skin and warm layer models                       (default: OFF)
434!!   namdiu       Cool skin and warm layer models                       (default: OFF)
435!!   namflo       float parameters                                      (default: OFF)
436!!   nam_diadct   transports through some sections                      (default: OFF)
437!!   nam_dia25h   25h Mean Output                                       (default: OFF)
438!!   namnc4       netcdf4 chunking and compression settings             ("key_netcdf4")
439!!======================================================================
440!
441!-----------------------------------------------------------------------
442&namtrd        !   trend diagnostics                                    (default: OFF)
443!-----------------------------------------------------------------------
444/
445!-----------------------------------------------------------------------
446&namhsb        !  Heat and salt budgets                                 (default: OFF)
447!-----------------------------------------------------------------------
448/
449!-----------------------------------------------------------------------
450&namdiu        !   Cool skin and warm layer models                      (default: OFF)
451!-----------------------------------------------------------------------
452/
453!-----------------------------------------------------------------------
454&namflo        !   float parameters                                     (default: OFF)
455!-----------------------------------------------------------------------
456/
457!-----------------------------------------------------------------------
458&nam_diadct    ! transports through some sections                       (default: OFF)
459!-----------------------------------------------------------------------
460/
461!-----------------------------------------------------------------------
462&nam_dia25h    !  25h Mean Output                                       (default: OFF)
463!-----------------------------------------------------------------------
464/
465!-----------------------------------------------------------------------
466&namnc4        !   netcdf4 chunking and compression settings            ("key_netcdf4")
467!-----------------------------------------------------------------------
468/
469
470!!======================================================================
471!!               ***  Observation & Assimilation  ***                 !!
472!!                                                                    !!
473!!   namobs       observation and model comparison                      (default: OFF)
474!!   nam_asminc   assimilation increments                               ('key_asminc')
475!!======================================================================
476!
477!-----------------------------------------------------------------------
478&namobs        !  observation usage switch                              (default: OFF)
479!-----------------------------------------------------------------------
480/
481!-----------------------------------------------------------------------
482&nam_asminc    !   assimilation increments                              ('key_asminc')
483!-----------------------------------------------------------------------
484/
485
486!!======================================================================
487!!                  ***  Miscellaneous namelists  ***                 !!
488!!                                                                    !!
489!!   nammpp            Massively Parallel Processing
490!!   namctl            Control prints                                   (default: OFF)
491!!   namsto            Stochastic parametrization of EOS                (default: OFF)
492!!======================================================================
493!
494!-----------------------------------------------------------------------
495&nammpp        !   Massively Parallel Processing
496!-----------------------------------------------------------------------
497/
498!-----------------------------------------------------------------------
499&namctl        !   Control prints                                       (default: OFF)
500!-----------------------------------------------------------------------
501/
502!-----------------------------------------------------------------------
503&namsto        ! Stochastic parametrization of EOS                      (default: OFF)
504!-----------------------------------------------------------------------
505/
Note: See TracBrowser for help on using the repository browser.