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 @ 638

Last change on this file since 638 was 638, checked in by opalod, 17 years ago

nemo_v2_update_008/009:RB: update namelists

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