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 in trunk/CONFIG/GYRE/EXP00 – NEMO

source: trunk/CONFIG/GYRE/EXP00/namelist @ 470

Last change on this file since 470 was 470, checked in by opalod, 18 years ago

nemo_v1_compil_017:RB: update BB_make, BB_make.ldef and namelist

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 28.3 KB
Line 
1!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
2! OPA namelist :  model option and parameter input
3! -------------
4!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
5!
6!-----------------------------------------------------------------------
7!       namrun   parameters of the run
8!-----------------------------------------------------------------------
9!  no         job number
10!  cexper     experience name for vairmer format
11!  ln_rstart  boolean term for restart (true or false)
12!  nrstdt     control of the restart timestep:
13!                = 0 restart, do not control nit000 in the restart file.
14!                = 1 restart, control nit000 in the restart file. Do not
15!                    use the date in the restart file (use ndate0 in namelist)
16!                = 2 restart, control nit000 in the restart file, use the date
17!                    in the restart file. ndate0 in the namelist is ignored.
18!  nit000     number of the first time step
19!  nitend     number of the last time step
20!  ndate0     initial calendar date aammjj
21!  nleapy     Leap year calendar (0/1)
22!  ninist     initial state output flag (0/1)
23!  nprint     level of print (0 no print)
24!  nstock     frequency of restart file
25!  nwrite     frequency of OUTPUT file
26!  nrunoff    = 0 no, 1 runoff, 2 runoff+river mouth ups adv
27!  ln_ctl     trend control print (expensive!)
28!  nictls     start i indice to make the control SUM (very usefull to compare mono-
29!  nictle     end   i indice to make the control SUM (-versus multi processor runs)
30!  njctls     start j indice to make the control SUM (very usefull to compare mono-
31!  njctle     end   j indice to make the control SUM (-versus multi processor runs)
32!  isplt      number of processors following i
33!  jsplt      number of processors following j
34!  nbench     Bench parameter (0/1): CAUTION it must be zero except for bench
35!             for which we don't care about physical meaning of the results
36!
37!  CAUTION: for usual run scripts, logical value of
38!  *******  ln_rstart must be .true. or .false.
39!                     and NOT .TRUE. or .FALSE.
40&namrun
41   no         =       0
42   cexper     =  "GYRE"
43   ln_rstart  = .false.
44   nrstdt     =       0
45   nit000     =       1
46   nitend     =    4320
47   ndate0     =  010101
48   nleapy     =      30
49   ninist     =       0
50   nprint     =       0
51   nstock     =    4320
52   nwrite     =      60
53   nrunoff    =       0
54   ln_ctl     =  .false.
55   nictls     =       0
56   nictle     =       0
57   njctls     =       0
58   njctle     =       0
59   isplt      =       1
60   jsplt      =       1
61   nbench     =       0
62/
63!-----------------------------------------------------------------------
64!       nam_mpp      Massively Parallel Processing
65!-----------------------------------------------------------------------
66!  c_mpi_send         mpi send/recieve type
67!                      = 'S'  : standard blocking send
68!                      = 'B'  : buffer blocking send
69!                      = 'I'  : immediate non-blocking send
70&nam_mpp
71   c_mpi_send =  'S'
72/
73!-----------------------------------------------------------------------
74!       nam_zgr       vertical coordinate
75!-----------------------------------------------------------------------
76!  ln_zco     z-coordinate - full steps      (T/F)
77!  ln_zps     z-coordinate - partial steps   (T/F)
78!  ln_sco     s- or hybrid z-s-coordinate    (T/F)
79&nam_zgr
80   ln_zco   =  .true.
81   ln_zps   =  .false.
82   ln_sco   =  .false.
83/
84!-----------------------------------------------------------------------
85!       nam_zgr_sco   s-coordinate or hybrid z-s-coordinate
86!-----------------------------------------------------------------------
87!  sbot_min   minimum depth of s-bottom surface (>0) (m)
88!  sbot_max   maximum depth of s-bottom surface (= ocean depth) (>0) (m)
89!  theta      surface control parameter (0<=theta<=20)
90!  thetb      bottom control parameter  (0<=thetb<= 1)
91!  r_max      maximum cut-off r-value allowed (0<r_max<1)
92&nam_zgr_sco
93   sbot_min =  300.
94   sbot_max = 5250.
95   theta    =    6.0
96   thetb    =    0.75
97   r_max    =    0.15
98/
99!-----------------------------------------------------------------------
100!       nam_traadv   advection scheme for tracer (option not control by CPP keys)
101!-----------------------------------------------------------------------
102!  ln_traadv_cen2     2nd order centered scheme    (default T)
103!  ln_traadv_tvd      TVD scheme                   (default F)
104!  ln_traadv_muscl    MUSCL scheme                 (default F)
105!  ln_traadv_muscl2   MUSCL2 scheme                (default F)
106&nam_traadv
107   ln_traadv_cen2   =  .false.
108   ln_traadv_tvd    =  .true.
109   ln_traadv_muscl  =  .false.
110   ln_traadv_muscl2 =  .false.
111/
112!-----------------------------------------------------------------------
113!       nam_traldf   lateral diffusion scheme for tracer (option not control by CPP keys)
114!-----------------------------------------------------------------------
115!  Type of the operator :
116!     ln_traldf_lap    laplacian operator          (default T)
117!     ln_traldf_bilap  bilaplacian operator        (default F)
118!  Direction of action  :
119!     ln_traldf_level  iso-level                   (default F)
120!     ln_traldf_hor    horizontal (geopotential)   (default F)^**
121!     ln_traldf_iso    iso-neutral                 (default T)^*
122!  Coefficient
123!     aht0    horizontal eddy diffusivity for tracers (m2/s)
124!     ahtb0   background eddy diffusivity for isopycnal diffusion (m2/s)
125!     aeiv0   eddy induced velocity coefficient (m2/s)
126! ^* require key_ldfslp to compute the direction of the lateral diffusion
127! ^** require key_ldfslp in s-coordinate
128&nam_traldf
129   ln_traldf_lap    =  .true.
130   ln_traldf_bilap  =  .false.
131   ln_traldf_level  =  .false.
132   ln_traldf_hor    =  .false.
133   ln_traldf_iso    =  .true.
134   aht0    =  1000.
135   ahtb0   =     0.
136   aeiv0   =  1000.
137/
138!-----------------------------------------------------------------------
139!       nam_dynldf   lateral diffusion on momentum
140!-----------------------------------------------------------------------
141!  Type of the operator :
142!     ln_dynldf_lap    laplacian operator          (default T)
143!     ln_dynldf_bilap  bilaplacian operator        (default F)
144!  Direction of action  :
145!     ln_dynldf_level  iso-level                   (default F)
146!     ln_dynldf_hor    horizontal (geopotential)   (default F)^**
147!     ln_dynldf_iso    iso-neutral                 (default T)^*
148!  Coefficient
149!  ahm0    horizontal eddy viscosity for the dynamics (m2/s)
150!  ahmb0   background eddy viscosity for isopycnal diffusion (m2/s)
151&nam_dynldf
152   ln_dynldf_lap    =  .true.
153   ln_dynldf_bilap  =  .false.
154   ln_dynldf_level  =  .false.
155   ln_dynldf_hor    =  .true.
156   ln_dynldf_iso    =  .false.
157   ahm0    = 100000.
158   ahmb0   =      0.
159/
160!-----------------------------------------------------------------------
161!       namflg   algorithm flags (algorithm not control by CPP keys)
162!-----------------------------------------------------------------------
163!  ln_dynhpg_imp   hydrostatic pressure gradient: semi-implicit time scheme  (T)
164!                                                  centered      time scheme  (F)
165&namflg
166   ln_dynhpg_imp   =  .false.
167/
168!-----------------------------------------------------------------------
169!       nam_dynhpg   Hydrostatic pressure gradient option
170!-----------------------------------------------------------------------
171!  type of pressure gradient scheme (choose one only!)
172!     ln_hpg_zco    z-coordinate - full steps                   (default T)
173!     ln_hpg_zps    z-coordinate - partial steps (interpolation)
174!     ln_hpg_sco    s-coordinate (standard jacobian formulation)
175!     ln_hpg_hel    s-coordinate (helsinki modification)
176!     ln_hpg_wdj    s-coordinate (weighted density jacobian)
177!     ln_hpg_djc    s-coordinate (Density Jacobian with Cubic polynomial)
178!     ln_hpg_rot    s-coordinate (ROTated axes scheme)
179!  parameters
180!    gamm          weighting coefficient (wdj scheme)
181&nam_dynhpg
182   ln_hpg_zco = .true.
183   ln_hpg_zps = .false.
184   ln_hpg_sco = .false.
185   ln_hpg_hel = .false.
186   ln_hpg_wdj = .false.
187   ln_hpg_djc = .false.
188   ln_hpg_rot = .false.
189   gamm       = 0.e0
190/
191!-----------------------------------------------------------------------
192!       nam_dynvor   option of physics/algorithm (not control by CPP keys)
193!-----------------------------------------------------------------------
194!  ln_dynvor_ens   vorticity trends: enstrophy conserving scheme (default T)
195!  ln_dynvor_ene      "         "  : energy conserving scheme    (default F)
196!  ln_dynvor_mix      "         "  : mixed scheme                (default F)
197!  ln_dynvor_een      "         "  : energy & enstrophy scheme   (default F)
198&nam_dynvor
199   ln_dynvor_ene = .TRUE.
200   ln_dynvor_ens = .FALSE.
201   ln_dynvor_mix = .FALSE.
202   ln_dynvor_een = .FALSE.
203/
204!-----------------------------------------------------------------------
205!       namtau   surface wind stress
206!-----------------------------------------------------------------------
207!  ntau000   gently increase the stress over the first ntau_rst time-steps
208!  tau0x     uniform value used as default surface heat flux
209!  tau0y     uniform value used as default solar radiation flux
210&namtau
211   ntau000 =    100
212   tau0x   =      0.1e0
213   tau0y   =      0.e0
214/
215!-----------------------------------------------------------------------
216!       namflx   surface fluxes
217!-----------------------------------------------------------------------
218!  q0       uniform value used as default surface heat flux
219!  qsr0     uniform value used as default solar radiation flux
220!  emp0     uniform value used as default surface freswater budget (E-P)
221!  dqdt0    feedback coefficient for SST damping (W/m2/K)
222!  deds0    feedback coefficient for SSS damping (mm/day)
223&namflx
224   q0      =      0.e0
225   qsr0    =      0.e0
226   emp0    =      0.e0
227   dqdt0   =     -40.0
228   deds0   =      27.7
229/
230!-----------------------------------------------------------------------
231!       namalb   albedo parameters
232!-----------------------------------------------------------------------
233!  cgren    correction of the snow or ice albedo to take into account
234!  albice   albedo of melting ice in the arctic and antarctic
235!  alphd    coefficients for linear interpolation used to compute albedo
236!           between two extremes values (Pyane, 1972)
237!  alphc     "                                         "
238!  alphdi    "                                         "
239&namalb
240   cgren    =      0.06
241   albice   =      0.5
242   alphd    =      0.80
243   alphc    =      0.65
244   alphdi   =      0.72
245/
246!-----------------------------------------------------------------------
247!       namdom   space and time domain (bathymetry, mesh, timestep)
248!-----------------------------------------------------------------------
249!  ntopo      = 0/1 ,compute/read the bathymetry file
250!               (mbathy, nb of T-ocean levels)
251!  e3zps_min  the thickness of the partial step is set larger than the
252!  e3zps_rat     the minimum of e3zps_min and e3zps_rat * e3t
253!                (N.B. 0<e3zps_rat<1)
254!  ngrid      = 0/1, compute/read the horizontal mesh
255!                  (coordinates, scale factors)
256!  nmsh       =1 create a mesh file (coordinates, scale factors, masks)
257!  nacc       the acceleration of convergence method
258!             = 0, no acceleration, rdt = rdttra
259!             = 1, acceleration used, rdt < rdttra(k)
260!  atfp       asselin time filter parameter
261!  rdt        time step for the dynamics (and tracer if nacc=0)
262!  rdtmin     minimum time step on tracers
263!  rdtmax     maximum time step on tracers
264!  rdth       depth variation of tracer time step
265!  rdtbt      barotropic time step (for the time splitting algorithm)
266!  nfice      frequency of ice model call
267!  nfbulk     frequency of bulk formulea call (not used if ice used)
268!  nclosea    = 0 no closed sea
269!             = 1 closed sea (Black Sea, Caspian Sea, Great US Lakes...)
270&namdom
271   ntopo     =     0
272   e3zps_min =     5.
273   e3zps_rat =     0.1
274   ngrid     =     0
275   nmsh      =     0
276   nacc      =     0
277   atfp      =     0.1
278   rdt       =  7200.
279   rdtmin    =  7200.
280   rdtmax    =  7200.
281   rdth      =   800.
282   rdtbt     =   120.
283   nfice     =     5 
284   nfbulk    =     5 
285   nclosea   =     0
286/
287!-----------------------------------------------------------------------
288!       namfwb   freshwater budget correction
289!-----------------------------------------------------------------------
290!  ln_fwb     logical flag for freshwater budget correction (0 annual mean)
291&namfwb
292   ln_fwb    = .false.
293/
294!-----------------------------------------------------------------------
295!       namptr   Poleward Transport Diagnostic
296!-----------------------------------------------------------------------
297!  ln_diaptr  logical flag for Poleward transport computation
298!  ln_subbas  logical flag for Atlantic/Pacific/Indian basins computation
299!             need input basins mask file named "subbasins.nc"
300!  nf_ptr     Frequency of computation
301&namptr
302   ln_diaptr = .false.
303   ln_subbas = .false.
304   nf_ptr    =  15
305/
306!-----------------------------------------------------------------------
307!       namcro   cross land advection
308!-----------------------------------------------------------------------
309!  n_cla   advection between 2 ocean pts separates by land
310&namcla
311   n_cla   = 0
312/
313!-----------------------------------------------------------------------
314!       namzdf   vertical physics
315!-----------------------------------------------------------------------
316!  ln_zdfevd  enhanced vertical diffusion         (default T)
317!  ln_zdfnpc  Non-Penetrative Convection          (default T)
318!  avm0       vertical eddy viscosity for the dynamic (m2/s)
319!  avt0       vertical eddy diffusivity for tracers (m2/s)
320!  avevd      vertical coefficient for enhanced diffusion scheme (m2/s)
321!  nevdm      = 0  apply enhanced mixing on tracer only
322!             = 1  apply enhanced mixing on both tracer and momentum
323!  ln_zdfexp   vertical physics: (=T)  time splitting (T)     (Default=F)
324!                               (=F)  euler backward (F)
325!  n_zdfexp   number of sub-timestep for time splitting scheme
326&namzdf
327   ln_zdfevd = .true.
328   ln_zdfnpc = .false.
329   avm0      = 1.2e-4
330   avt0      = 1.2e-5
331   avevd     =   100.
332   n_evdm    =     1
333   ln_zdfexp =  .false.
334   n_zdfexp  =     3
335/
336!-----------------------------------------------------------------------
337!       namnpc   vnon penetrative convection
338!-----------------------------------------------------------------------
339!  nnpc1   non penetrative convective scheme frequency
340!  nnpc2   non penetrative convective scheme print frequency
341&namnpc
342   nnpc1  =      1
343   nnpc2  =    365
344/
345!-----------------------------------------------------------------------
346!       nambbl   bottom boundary layer scheme
347!-----------------------------------------------------------------------
348!  atrbbl   lateral tracer coeff. for bottom boundary layer scheme(m2/s)
349&nambbl
350   atrbbl = 10000.
351/
352!-----------------------------------------------------------------------
353!       namric   richardson number dependent vertical diffusion
354!                ( #ifdef "key_zdfrichardson" )
355!-----------------------------------------------------------------------
356!  avmri   maximum value of the vertical viscosity
357!  alp     coefficient of the parameterization
358!  nric    coefficient of the parameterization
359&namric
360   avmri = 100.e-4
361   alp   =      5.
362   nric  =       2
363/
364!-----------------------------------------------------------------------
365!       namtke   turbulent eddy kinetic dependent vertical diffusion
366!                ( #ifdef "key_zdftke" )
367!-----------------------------------------------------------------------
368!  ln_rstke flag to restart with tke from a run without tke (default F)
369!  ediff    coef. to compute vertical eddy coef. (avt=ediff*mxl*sqrt(e) )
370!  ediss    coef. of the Kolmogoroff dissipation 
371!  ebb      coef. of the surface input of tke
372!  efave    coef. to applied to the tke diffusion ( avtke=efave*avm )
373!  emin     minimum value of tke (m^2/s^2)
374!  emin0    surface minimum value of tke (m^2/s^2)
375!  nitke    number of restart iterative loops
376!  ri_c     critic richardson number
377!  nmxl     flag on mixing length used
378!           = 0 bounded by the distance to surface and bottom
379!           = 1 bounded by the local vertical scale factor
380!           = 2 first vertical derivative of mixing length bounded by 1
381!  npdl     flag on prandtl number
382!           = 0 no vertical prandtl number (avt=avm)
383!           = 1 prandtl number function of richarson number (avt=pdl*avm)
384!           = 2 same as = 1 but a shapiro filter is applied on pdl
385!  nave     =  horizontal averaged (=1) or not (=0) of avt  (default =1)
386!  navb     = 0 cst background avt0, avm0 / =1 profile used on avtb
387&namtke
388   ln_rstke = .false.
389   ediff =       0.1
390   ediss =       0.7
391   ebb   =      3.75
392   efave =        1.
393   emin  =     1.e-5
394   emin0 =     1.e-4
395   nitke =        50
396   nmxl  =         2
397   npdl  =         1
398   navb  =         0
399/
400!-----------------------------------------------------------------------
401!       namkpp   K-Profile Parameterization dependent vertical diffusion
402!                ( #ifdef "key_zdfkpp" )
403!-----------------------------------------------------------------------
404!  ln_kpprimix   shear instability mixing  (default T)
405!  difmiw        constant internal wave viscosity (m2/s)
406!  difsiw        constant internal wave diffusivity (m2/s)
407!  Riinfty       local Richardson Number limit for shear instability
408!  difri         maximum shear mixing at Rig = 0    (m2/s)
409!  bvsqcon       Brunt-Vaisala squared (1/s**2) for maximum convection
410!  difcon        maximum mixing in interior convection (m2/s)
411!  nave          = 0/1 flag for horizontal average on avt, avmu, avmv
412!  navb          = 0/1 flag for constant or profile background avt
413&namkpp
414   ln_kpprimix  = .true.
415   difmiw       =  1.e-04
416   difsiw       =  0.1e-04
417   Riinfty      =  0.8
418   difri        =  0.0050
419   bvsqcon      = -0.01e-07
420   difcon       =  1.
421   navb         =  0
422   nave         =  1
423/
424!-----------------------------------------------------------------------
425!       namddm   double diffusive mixing parameterization
426!-----------------------------------------------------------------------
427!   avts    maximum avs for dd mixing
428!   hsbfr   heat/salt buoyancy flux ratio
429&namddm
430      avts  = 1.e-4
431      hsbfr = 1.6
432/
433!-----------------------------------------------------------------------
434!       namlbc   lateral momentum boundary condition
435!-----------------------------------------------------------------------
436!  shlat   lateral boundary condition on velocity
437!                   shlat = 0 , free slip
438!               0 < shlat < 2 , partial slip
439!                   shlat = 2 , no slip
440!               2 < shlat     , strong slip
441&namlbc
442   shlat  =      0.
443/
444!-----------------------------------------------------------------------
445!       nambfr   bottom friction
446!-----------------------------------------------------------------------
447!  nbotfr  type of bottom friction
448!                  nbotfr = 0 , no slip
449!                  nbotfr = 1 , linear friction
450!                  nbotfr = 2 , nonlinear friction
451!                  nbotfr = 3 , free slip
452!  bfri1   bottom drag coefficient (linear case)
453!  bfri2   bottom drag coefficient (non linear case)
454!  bfeb2   bottom turbulent kinetic energy  (m^2/s^2)
455&nambfr
456   nbotfr =       2
457   bfri1  =   4.e-4
458   bfri2  =   1.e-3
459   bfeb2  =  2.5e-3
460/
461!-----------------------------------------------------------------------
462!       nambbc   bottom temperature boundary condition
463!-----------------------------------------------------------------------
464!  ngeo_flux  = 0 no geothermal heat flux
465!             = 1 constant geothermal heat flux
466!             = 2 variable geothermal heat flux (read in geothermal_heating.nc)
467!                 ( C A U T I O N : flux in mW/m2 in the NetCDF file )
468!  ngeo_flux_const   Constant value of geothermal heat flux (W/m2)
469&nambbc
470   ngeo_flux =  0
471   ngeo_flux_const = 86.4e-3
472/
473!-----------------------------------------------------------------------
474!       namqsr   penetrative solar radiation
475!-----------------------------------------------------------------------
476!  ln_traqsr : penetrative solar radiation (T) or not (F)     (Default=T)
477!  rabs       fraction of qsr associated with xsi1
478!  xsi1       first depth of extinction
479!  xsi2       second depth of extinction
480&namqsr
481   ln_traqsr = .true.
482   rabs     =   0.58
483   xsi1     =   0.35
484   xsi2     =   23.0
485/
486!-----------------------------------------------------------------------
487!       namtdp   tracer newtonian damping ('key_tradmp')
488!-----------------------------------------------------------------------
489!  ndmp    type of damping in temperature and salinity
490!          (='latitude', damping poleward of 'ndmp' degrees and function
491!             of the distance-to-coast. Red and Med Seas as ndmp=-1)
492!          (=-1 damping only in Med and Red Seas)
493!  ndmpf   =1 create a damping.coeff NetCDF file (the 3D damping array)
494!  nmldmp  type of damping in the mixed layer
495!          (=0 damping throughout the water column)
496!     (=1 no damping in the mixed layer defined by avt >5cm2/s )
497!     (=2 no damping in the mixed layer defined rho<rho(surf)+.01 )
498!  sdmp    surface time scale for internal damping (days)
499!  bdmp    bottom time scale for internal damping (days)
500!  hdmp    depth of transition between sdmp and bdmp (meters)
501&namtdp
502   ndmp   =   -1
503   ndmpf  =    1
504   nmldmp =    1
505   sdmp   =  50.
506   bdmp   = 360.
507   hdmp   = 800.
508/
509!-----------------------------------------------------------------------
510!       nameos   ocean physical parameters
511!-----------------------------------------------------------------------
512!  neos    type of equation of state and Brunt-Vaisala frequency
513!          = 0, UNESCO (formulation of Jackett and McDougall (1994)
514!                                         and of McDougall (1987) )
515!          = 1, linear: rho(T)   = rau0 * ( 1.028 - ralpha * T )
516!          = 2, linear: rho(T,S) = rau0 * ( rbeta * S - ralpha * T )
517!                               with rau0=1020 set in parcst routine
518!  ralpha  thermal expension coefficient (linear equation of state)
519!  rbeta   saline  expension coefficient (linear equation of state)
520&nameos
521   neos   =      2
522   ralpha =  2.e-4
523   rbeta  =  7.7e-4
524/
525!-----------------------------------------------------------------------
526!       namsol   elliptic solver / island / free surface
527!-----------------------------------------------------------------------
528!  nsolv     elliptic solver (=1 preconditioned conjugate gradient: pcg)
529!                            (=2 successive-over-relaxation: sor)
530!                            (=3 FETI: fet, all require "key_feti" defined)
531!                            (=4 sor with extra outer halo)
532!  nsol_arp  absolute/relative (0/1) precision convergence test
533!  nmin      minimum of iterations for the SOR solver
534!  nmax      maximum of iterations for the SOR solver
535!  nmod      frequency of test for the SOR solver
536!  eps       absolute precision of the solver
537!  resmax    absolute precision for the SOR solver
538!  sor       optimal coefficient for SOR solver
539!  epsisl    absolute precision on stream function solver
540!  nmisl     maximum pcg iterations for island
541!  rnu       strength of the additional force used in free surface b.c.
542&namsol
543   nsolv     =      2
544   nsol_arp  =      0
545   nmin      =    210
546   nmax      =    800
547   nmod      =     10
548   eps       =  1.E-6
549   resmax    = 1.E-10
550   sor       =   1.96
551   epsisl    = 1.e-10
552   nmisl     =   4000
553   rnu       =     1.
554/
555!=======================================================================
556!   Diagnostics namelists
557!       namtrd    dynamics and/or tracer trends
558!       namgap    level mean model-data gap
559!       namznl    zonal mean heat & freshwater fluxes computation
560!       namspr    surface pressure in rigid-lid
561!=======================================================================
562!-----------------------------------------------------------------------
563!       namtrd    diagnostics on dynamics and/or tracer trends
564!                         ('key_diatrdyn' and/or 'key_diatrtra')
565!                 or mixed-layer trends ('key_diatrdmld')
566!-----------------------------------------------------------------------
567!  ntrd    time step frequency dynamics and tracers trends
568!  nctls   control surface type in mixed-layer trends (0,1 or n<jpk)
569&namtrd
570   ntrd  = 365
571   nctls =   0
572/
573!-----------------------------------------------------------------------
574!       namgap    level mean model-data gap ('key_diagap')
575!-----------------------------------------------------------------------
576!  ngap    time-step frequency of model-data gap computation
577!  nprg    time-step frequency of gap print in model output
578&namgap
579   ngap =  15
580   nprg =  10
581/
582!-----------------------------------------------------------------------
583!       namznl    zonal mean heat & freshwater fluxes computation
584!                 (#ifdef "key_diaznl")
585!-----------------------------------------------------------------------
586!  nfznl   time-step frequency of zonal mean fluxes computation
587&namznl
588   nfznl =  15
589/
590!-----------------------------------------------------------------------
591!       namspr  surface pressure diagnostic
592!-----------------------------------------------------------------------
593!  nmaxp   maximum of iterations for the solver
594!  epsp    absolute precision of the solver
595!  niterp  number of iteration done by the solver
596&namspr
597   nmaxp   =   1000
598   epsp    =  1.e-3
599   niterp  =    400
600/
601!-----------------------------------------------------------------------
602!       namcpl    coupled ocean/atmosphere model  (#ifdef "key_coupled")
603!-----------------------------------------------------------------------
604!  nexco   coupling frequency in time steps
605!  cchan   coupling technique 'PIPE' or 'CLIM'
606&namcpl
607   nexco            =         24
608   cchan            =     'PIPE'
609   nmodcpl          =          2
610   cplmodnam        =   'opa.xx'
611   cploasis         =    'Oasis'
612   nfldo2c          =          2
613   nflxc2o          =          6
614   ntauc2o          =          4
615   cpl_writ(1)      = 'SOSSTSST'
616   cpl_f_writ(1)    =   'ocesst'
617   cpl_writ(2)      = 'SOICECOV'
618   cpl_f_writ(2)    =   'oceice'
619   cpl_readflx(1)   = 'SONSFLDO'
620   cpl_f_readflx(1) =   'oceflx'
621   cpl_readflx(2)   = 'SOSHFLDO'
622   cpl_f_readflx(2) =   'oceflx'
623   cpl_readflx(3)   = 'SOTOPRSU'
624   cpl_f_readflx(3) =   'oceflx'
625   cpl_readflx(4)   = 'SOTFSHSU'
626   cpl_f_readflx(4) =   'oceflx'
627   cpl_readflx(5)   = 'SORUNCOA'
628   cpl_f_readflx(5) =   'oceflx'
629   cpl_readflx(6)   = 'SORIVFLU'
630   cpl_f_readflx(6) =   'oceflx'
631   cpl_readtau(1)   = 'SOZOTAUX'
632   cpl_f_readtau(1) =   'ocetau'
633   cpl_readtau(2)   = 'SOZOTAU2'
634   cpl_f_readtau(2) =   'ocetau'
635   cpl_readtau(3)   = 'SOMETAUY'
636   cpl_f_readtau(3) =   'ocetau'
637   cpl_readtau(4)   = 'SOMETAU2'
638   cpl_f_readtau(4) =   'ocetau'
639/
640!-----------------------------------------------------------------------
641!       namobc    open boundaries parameters (#ifdef key_obc)
642!-----------------------------------------------------------------------
643!  nobc_dta   = 0 the obc data are equal to the initial state
644!             = 1 the obc data are read in 'obc   .dta' files
645!  rdpeob  time relaxation (days) for the east open boundary
646!  rdpwob  time relaxation (days) for the west open boundary
647!  rdpnob  time relaxation (days) for the north open boundary
648!  rdpsob  time relaxation (days) for the south open boundary
649!  zbsic1  barotropic stream function on isolated coastline 1
650!  zbsic2  barotropic stream function on isolated coastline 2
651!  zbsic3  barotropic stream function on isolated coastline 3
652!  ln_obc_clim  climatological obc data files (default T)
653!  ln_vol_cst   total volume conserved
654&namobc
655    nobc_dta =    0
656    rdpein   =    1.
657    rdpwin   =    1.
658    rdpnin   =   30.
659    rdpsin   =    1.
660    rdpeob   = 1500.
661    rdpwob   =   15.
662    rdpnob   =  150.
663    rdpsob   =   15.
664    zbsic1   =  140.e+6
665    zbsic2   =    1.e+6
666    zbsic3   =    0.
667    ln_obc_clim = .true.
668    ln_vol_cst  = .false.
669/
670!-----------------------------------------------------------------------
671!       namflo    float parameters (#ifdef key_float)
672!-----------------------------------------------------------------------
673!  ln_rstflo   boolean term for float restart (true or false)
674!  nwritefl   frequency of float output file
675!  nstockfl   frequency of float restart file
676!  ln_argo    Argo type floats (stay at the surface each 10 days)
677!  ln_flork4  = T trajectories computed with a 4th order Runge-Kutta
678!             = F  (default)   computed with Blanke' scheme
679&namflo
680    ln_rstflo = .false.
681    nwritefl  =      75
682    nstockfl  =    5475
683    ln_argo   = .false.
684    ln_flork4 = .false.
685/
Note: See TracBrowser for help on using the repository browser.