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

source: NEMO/branches/2021/ticket2680_C1D_PAPA/tests/C1D_ASICS/EXP00/namelist_cfg @ 15015

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

merge trunk into branch (#2680)

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