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.
1_namelist in trunk/CONFIG/ORCA2_LIM/EXP00 – NEMO

source: trunk/CONFIG/ORCA2_LIM/EXP00/1_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.5 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     =  "Agulhas"
34   ln_rstart  = .false.
35   nrstdt     =       0
36   nit000     =       1
37   nitend     =   10950
38   ndate0     =  010101
39   nleapy     =       0
40   ninist     =       0
41   nstock     =   10950
42   nwrite     =   10950
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   =  .false.
103   ln_zps   =  .true.
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   =     0.
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    =  .false.
179   ln_dynldf_bilap  =  .true.
180   ln_dynldf_level  =  .false.
181   ln_dynldf_hor    =  .true.
182   ln_dynldf_iso    =  .false.
183   ahm0    = -8.5e+11
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 = .false.
211   ln_hpg_zps = .true.
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 = .FALSE.
228   ln_dynvor_ens = .FALSE.
229   ln_dynvor_mix = .FALSE.
230   ln_dynvor_een = .TRUE.
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 =      0
240   tau0x   =      0.e0
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.
256   deds0   =        0.
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!                  (coordinates, scale factors)
283!  nmsh       =1 create a mesh file (coordinates, scale factors, masks)
284!  nacc       the acceleration of convergence method
285!             = 0, no acceleration, rdt = rdttra
286!             = 1, acceleration used, rdt < rdttra(k)
287!  atfp       asselin time filter parameter
288!  rdt        time step for the dynamics (and tracer if nacc=0)
289!  rdtmin     minimum time step on tracers
290!  rdtmax     maximum time step on tracers
291!  rdth       depth variation of tracer time step
292!  rdtbt      barotropic time step (for the time splitting algorithm)
293!  nfice      frequency of ice model call
294!  nfbulk     frequency of bulk formulea call (not used if ice used)
295!  nclosea    = 0 no closed sea
296!             = 1 closed sea (Black Sea, Caspian Sea, Great US Lakes...)
297&namdom
298   ntopo     =     1
299   e3zps_min =     5.
300   e3zps_rat =     0.1
301   nmsh      =     0
302   nacc      =     0
303   atfp      =     0.1
304   rdt       =  2880.
305   rdtmin    =  2880.
306   rdtmax    =  2880.
307   rdth      =   800.
308   rdtbt     =    90.
309   nfice     =     5 
310   nfbulk    =     5 
311   nclosea   =     0
312/
313!-----------------------------------------------------------------------
314!       namfwb   freshwater budget correction
315!-----------------------------------------------------------------------
316!  ln_fwb     logical flag for freshwater budget correction (0 annual mean)
317&namfwb
318   ln_fwb    = .false.
319/
320!-----------------------------------------------------------------------
321!       namptr   Poleward Transport Diagnostic
322!-----------------------------------------------------------------------
323!  ln_diaptr  logical flag for Poleward transport computation
324!  ln_subbas  logical flag for Atlantic/Pacific/Indian basins computation
325!             need input basins mask file named "subbasins.nc"
326!  nf_ptr     Frequency of computation
327&namptr
328   ln_diaptr = .false.
329   ln_subbas = .false.
330   nf_ptr    =  15
331/
332!-----------------------------------------------------------------------
333!       namcro   cross land advection
334!-----------------------------------------------------------------------
335!  n_cla   advection between 2 ocean pts separates by land
336&namcla
337   n_cla   = 0
338/
339!-----------------------------------------------------------------------
340!       namzdf   vertical physics
341!-----------------------------------------------------------------------
342!  ln_zdfevd  enhanced vertical diffusion         (default T)
343!  ln_zdfnpc  Non-Penetrative Convection          (default T)
344!  avm0       vertical eddy viscosity for the dynamic (m2/s)
345!  avt0       vertical eddy diffusivity for tracers (m2/s)
346!  avevd      vertical coefficient for enhanced diffusion scheme (m2/s)
347!  nevdm      = 0  apply enhanced mixing on tracer only
348!             = 1  apply enhanced mixing on both tracer and momentum
349!  ln_zdfexp   vertical physics: (=T)  time splitting (T)     (Default=F)
350!                               (=F)  euler backward (F)
351!  n_zdfexp   number of sub-timestep for time splitting scheme
352&namzdf
353   ln_zdfevd = .true.
354   ln_zdfnpc = .false.
355   avm0      = 1.2e-4
356   avt0      = 1.2e-5
357   avevd     =   100.
358   n_evdm    =     1
359   ln_zdfexp =  .false.
360   n_zdfexp  =     3
361/
362!-----------------------------------------------------------------------
363!       namnpc   vnon penetrative convection
364!-----------------------------------------------------------------------
365!  nnpc1   non penetrative convective scheme frequency
366!  nnpc2   non penetrative convective scheme print frequency
367&namnpc
368   nnpc1  =      1
369   nnpc2  =    365
370/
371!-----------------------------------------------------------------------
372!       nambbl   bottom boundary layer scheme
373!-----------------------------------------------------------------------
374!  atrbbl   lateral tracer coeff. for bottom boundary layer scheme(m2/s)
375&nambbl
376   atrbbl = 10000.
377/
378!-----------------------------------------------------------------------
379!       namric   richardson number dependent vertical diffusion
380!                ( #ifdef "key_zdfrichardson" )
381!-----------------------------------------------------------------------
382!  avmri   maximum value of the vertical viscosity
383!  alp     coefficient of the parameterization
384!  nric    coefficient of the parameterization
385&namric
386   avmri = 100.e-4
387   alp   =      5.
388   nric  =       2
389/
390!-----------------------------------------------------------------------
391!       namtke   turbulent eddy kinetic dependent vertical diffusion
392!                ( #ifdef "key_zdftke" )
393!-----------------------------------------------------------------------
394!  ln_rstke flag to restart with tke from a run without tke (default F)
395!  ediff    coef. to compute vertical eddy coef. (avt=ediff*mxl*sqrt(e) )
396!  ediss    coef. of the Kolmogoroff dissipation 
397!  ebb      coef. of the surface input of tke
398!  efave    coef. to applied to the tke diffusion ( avtke=efave*avm )
399!  emin     minimum value of tke (m^2/s^2)
400!  emin0    surface minimum value of tke (m^2/s^2)
401!  nitke    number of restart iterative loops
402!  ri_c     critic richardson number
403!  nmxl     flag on mixing length used
404!           = 0 bounded by the distance to surface and bottom
405!           = 1 bounded by the local vertical scale factor
406!           = 2 first vertical derivative of mixing length bounded by 1
407!  npdl     flag on prandtl number
408!           = 0 no vertical prandtl number (avt=avm)
409!           = 1 prandtl number function of richarson number (avt=pdl*avm)
410!           = 2 same as = 1 but a shapiro filter is applied on pdl
411!  nave     =  horizontal averaged (=1) or not (=0) of avt  (default =1)
412!  navb     = 0 cst background avt0, avm0 / =1 profile used on avtb
413&namtke
414   ln_rstke = .false.
415   ediff =       0.1
416   ediss =       0.7
417   ebb   =       60.
418   efave =        1.
419   emin  =     1.e-6
420   emin0 =     1.e-4
421   nitke =        50
422   nmxl  =         2
423   npdl  =         1
424   navb  =         0
425/
426!-----------------------------------------------------------------------
427!       namkpp   K-Profile Parameterization dependent vertical diffusion
428!                ( #ifdef "key_zdfkpp" )
429!-----------------------------------------------------------------------
430!  ln_kpprimix   shear instability mixing  (default T)
431!  difmiw        constant internal wave viscosity (m2/s)
432!  difsiw        constant internal wave diffusivity (m2/s)
433!  Riinfty       local Richardson Number limit for shear instability
434!  difri         maximum shear mixing at Rig = 0    (m2/s)
435!  bvsqcon       Brunt-Vaisala squared (1/s**2) for maximum convection
436!  difcon        maximum mixing in interior convection (m2/s)
437!  nave          = 0/1 flag for horizontal average on avt, avmu, avmv
438!  navb          = 0/1 flag for constant or profile background avt
439&namkpp
440   ln_kpprimix  = .true.
441   difmiw       =  1.e-04
442   difsiw       =  0.1e-04
443   Riinfty      =  0.8
444   difri        =  0.0050
445   bvsqcon      = -0.01e-07
446   difcon       =  1.
447   navb         =  0
448   nave         =  1
449/
450!-----------------------------------------------------------------------
451!       namddm   double diffusive mixing parameterization
452!-----------------------------------------------------------------------
453!   avts    maximum avs for dd mixing
454!   hsbfr   heat/salt buoyancy flux ratio
455&namddm
456      avts  = 1.e-4
457      hsbfr = 1.6
458/
459!-----------------------------------------------------------------------
460!       namlbc   lateral momentum boundary condition
461!-----------------------------------------------------------------------
462!  shlat   lateral boundary condition on velocity
463!                   shlat = 0 , free slip
464!               0 < shlat < 2 , partial slip
465!                   shlat = 2 , no slip
466!               2 < shlat     , strong slip
467&namlbc
468   shlat  =      2.
469/
470!-----------------------------------------------------------------------
471!       nambfr   bottom friction
472!-----------------------------------------------------------------------
473!  nbotfr  type of bottom friction
474!                  nbotfr = 0 , no slip
475!                  nbotfr = 1 , linear friction
476!                  nbotfr = 2 , nonlinear friction
477!                  nbotfr = 3 , free slip
478!  bfri1   bottom drag coefficient (linear case)
479!  bfri2   bottom drag coefficient (non linear case)
480!  bfeb2   bottom turbulent kinetic energy  (m^2/s^2)
481&nambfr
482   nbotfr =       1
483   bfri1  =   4.e-4
484   bfri2  =   1.e-3
485   bfeb2  =  2.5e-3
486/
487!-----------------------------------------------------------------------
488!       nambbc   bottom temperature boundary condition
489!-----------------------------------------------------------------------
490!  ngeo_flux  = 0 no geothermal heat flux
491!             = 1 constant geothermal heat flux
492!             = 2 variable geothermal heat flux (read in geothermal_heating.nc)
493!                 ( C A U T I O N : flux in mW/m2 in the NetCDF file )
494!  ngeo_flux_const   Constant value of geothermal heat flux (W/m2)
495&nambbc
496   ngeo_flux =  2
497   ngeo_flux_const = 86.4e-3
498/
499!-----------------------------------------------------------------------
500!       namqsr   penetrative solar radiation
501!-----------------------------------------------------------------------
502!  ln_traqsr : penetrative solar radiation (T) or not (F)     (Default=T)
503!  rabs       fraction of qsr associated with xsi1
504!  xsi1       first depth of extinction
505!  xsi2       second depth of extinction
506&namqsr
507   ln_traqsr = .true.
508   rabs     =   0.58
509   xsi1     =   0.35
510   xsi2     =   23.0
511/
512!-----------------------------------------------------------------------
513!       namtdp   tracer newtonian damping ('key_tradmp')
514!-----------------------------------------------------------------------
515!  ndmp    type of damping in temperature and salinity
516!          (='latitude', damping poleward of 'ndmp' degrees and function
517!             of the distance-to-coast. Red and Med Seas as ndmp=-1)
518!          (=-1 damping only in Med and Red Seas)
519!  ndmpf   =1 create a damping.coeff NetCDF file (the 3D damping array)
520!  nmldmp  type of damping in the mixed layer
521!          (=0 damping throughout the water column)
522!     (=1 no damping in the mixed layer defined by avt >5cm2/s )
523!     (=2 no damping in the mixed layer defined rho<rho(surf)+.01 )
524!  sdmp    surface time scale for internal damping (days)
525!  bdmp    bottom time scale for internal damping (days)
526!  hdmp    depth of transition between sdmp and bdmp (meters)
527&namtdp
528   ndmp   =   90
529   ndmpf  =    1
530   nmldmp =    1
531   sdmp   =  50.
532   bdmp   = 360.
533   hdmp   = 800.
534/
535!-----------------------------------------------------------------------
536!       nameos   ocean physical parameters
537!-----------------------------------------------------------------------
538!  neos    type of equation of state and Brunt-Vaisala frequency
539!          = 0, UNESCO (formulation of Jackett and McDougall (1994)
540!                                         and of McDougall (1987) )
541!          = 1, linear: rho(T)   = rau0 * ( 1.028 - ralpha * T )
542!          = 2, linear: rho(T,S) = rau0 * ( rbeta * S - ralpha * T )
543!                               with rau0=1020 set in parcst routine
544!  ralpha  thermal expension coefficient (linear equation of state)
545!  rbeta   saline  expension coefficient (linear equation of state)
546&nameos
547   neos   =      0
548   ralpha =  2.e-4
549   rbeta  =  0.001
550/
551!-----------------------------------------------------------------------
552!       namsol   elliptic solver / island / free surface
553!-----------------------------------------------------------------------
554!  nsolv     elliptic solver (=1 preconditioned conjugate gradient: pcg)
555!                            (=2 successive-over-relaxation: sor)
556!                            (=3 FETI: fet, all require "key_feti" defined)
557!                            (=4 sor with extra outer halo)
558!  nsol_arp  absolute/relative (0/1) precision convergence test
559!  nmin      minimum of iterations for the SOR solver
560!  nmax      maximum of iterations for the SOR solver
561!  nmod      frequency of test for the SOR solver
562!  eps       absolute precision of the solver
563!  resmax    absolute precision for the SOR solver
564!  sor       optimal coefficient for SOR solver
565!  epsisl    absolute precision on stream function solver
566!  nmisl     maximum pcg iterations for island
567!  rnu       strength of the additional force used in free surface b.c.
568&namsol
569   nsolv     =      1
570   nsol_arp  =      0
571   nmin      =    300
572   nmax      =    800
573   nmod      =     10
574   eps       =  1.E-6
575   resmax    = 1.E-10
576   sor       =   1.92
577   epsisl    = 1.e-10
578   nmisl     =   4000
579   rnu       =     1.
580/
581!=======================================================================
582!   Diagnostics namelists
583!       namtrd    dynamics and/or tracer trends
584!       namgap    level mean model-data gap
585!       namznl    zonal mean heat & freshwater fluxes computation
586!       namspr    surface pressure in rigid-lid
587!=======================================================================
588!-----------------------------------------------------------------------
589!       namtrd    diagnostics on dynamics and/or tracer trends
590!                         ('key_trdyn' and/or 'key_trdtra')
591!                 or mixed-layer trends ('key_trdmld')
592!-----------------------------------------------------------------------
593!  ntrd              time step frequency dynamics and tracers trends
594!  nctls             control surface type in mixed-layer trends (0,1 or n<jpk)
595!  ln_trdmld_restart restart for ML diagnostics
596!  ucf               unit conversion factor (=1 -> /seconds | =86400. -> /day)
597!  ln_trdmld_instant flag to diagnose trends of instantantaneous or mean ML T/S
598&namtrd
599   ntrd  = 365
600   nctls =   0
601   ln_trdmld_restart = .false.
602   ucf   =  1.
603   ln_trdmld_instant = .false.
604/
605!-----------------------------------------------------------------------
606!       namgap    level mean model-data gap ('key_diagap')
607!-----------------------------------------------------------------------
608!  ngap    time-step frequency of model-data gap computation
609!  nprg    time-step frequency of gap print in model output
610&namgap
611   ngap =  15
612   nprg =  10
613/
614!-----------------------------------------------------------------------
615!       namznl    zonal mean heat & freshwater fluxes computation
616!                 (#ifdef "key_diaznl")
617!-----------------------------------------------------------------------
618!  nfznl   time-step frequency of zonal mean fluxes computation
619&namznl
620   nfznl =  15
621/
622!-----------------------------------------------------------------------
623!       namspr  surface pressure diagnostic
624!-----------------------------------------------------------------------
625!  nmaxp   maximum of iterations for the solver
626!  epsp    absolute precision of the solver
627!  niterp  number of iteration done by the solver
628&namspr
629   nmaxp   =   1000
630   epsp    =  1.e-3
631   niterp  =    400
632/
633!-----------------------------------------------------------------------
634!       namcpl    coupled ocean/atmosphere model  (#ifdef "key_coupled")
635!-----------------------------------------------------------------------
636!  nexco   coupling frequency in time steps
637!  cchan   coupling technique 'PIPE' or 'CLIM'
638&namcpl
639   nexco            =         24
640   cchan            =     'PIPE'
641   nmodcpl          =          2
642   cplmodnam        =   'opa.xx'
643   cploasis         =    'Oasis'
644   nfldo2c          =          2
645   nflxc2o          =          6
646   ntauc2o          =          4
647   cpl_writ(1)      = 'SOSSTSST'
648   cpl_f_writ(1)    =   'ocesst'
649   cpl_writ(2)      = 'SOICECOV'
650   cpl_f_writ(2)    =   'oceice'
651   cpl_readflx(1)   = 'SONSFLDO'
652   cpl_f_readflx(1) =   'oceflx'
653   cpl_readflx(2)   = 'SOSHFLDO'
654   cpl_f_readflx(2) =   'oceflx'
655   cpl_readflx(3)   = 'SOTOPRSU'
656   cpl_f_readflx(3) =   'oceflx'
657   cpl_readflx(4)   = 'SOTFSHSU'
658   cpl_f_readflx(4) =   'oceflx'
659   cpl_readflx(5)   = 'SORUNCOA'
660   cpl_f_readflx(5) =   'oceflx'
661   cpl_readflx(6)   = 'SORIVFLU'
662   cpl_f_readflx(6) =   'oceflx'
663   cpl_readtau(1)   = 'SOZOTAUX'
664   cpl_f_readtau(1) =   'ocetau'
665   cpl_readtau(2)   = 'SOZOTAU2'
666   cpl_f_readtau(2) =   'ocetau'
667   cpl_readtau(3)   = 'SOMETAUY'
668   cpl_f_readtau(3) =   'ocetau'
669   cpl_readtau(4)   = 'SOMETAU2'
670   cpl_f_readtau(4) =   'ocetau'
671/
672!-----------------------------------------------------------------------
673!       namobc    open boundaries parameters (#ifdef key_obc)
674!-----------------------------------------------------------------------
675!  nobc_dta   = 0 the obc data are equal to the initial state
676!             = 1 the obc data are read in 'obc   .dta' files
677!  rdpeob  time relaxation (days) for the east open boundary
678!  rdpwob  time relaxation (days) for the west open boundary
679!  rdpnob  time relaxation (days) for the north open boundary
680!  rdpsob  time relaxation (days) for the south open boundary
681!  zbsic1  barotropic stream function on isolated coastline 1
682!  zbsic2  barotropic stream function on isolated coastline 2
683!  zbsic3  barotropic stream function on isolated coastline 3
684!  ln_obc_clim  climatological obc data files (default T)
685!  ln_vol_cst   total volume conserved
686&namobc
687    nobc_dta =    0
688    rdpein   =    1.
689    rdpwin   =    1.
690    rdpnin   =   30.
691    rdpsin   =    1.
692    rdpeob   = 1500.
693    rdpwob   =   15.
694    rdpnob   =  150.
695    rdpsob   =   15.
696    zbsic1   =  140.e+6
697    zbsic2   =    1.e+6
698    zbsic3   =    0.
699    ln_obc_clim = .true.
700    ln_vol_cst  = .false.
701/
702!-----------------------------------------------------------------------
703!       namflo    float parameters (#ifdef key_float)
704!-----------------------------------------------------------------------
705!  ln_rstflo   boolean term for float restart (true or false)
706!  nwritefl   frequency of float output file
707!  nstockfl   frequency of float restart file
708!  ln_argo    Argo type floats (stay at the surface each 10 days)
709!  ln_flork4  = T trajectories computed with a 4th order Runge-Kutta
710!             = F  (default)   computed with Blanke' scheme
711&namflo
712    ln_rstflo = .false.
713    nwritefl  =      75
714    nstockfl  =    5475
715    ln_argo   = .false.
716    ln_flork4 = .false.
717/
718!-----------------------------------------------------------------------
719!       namcore  CORE
720!-----------------------------------------------------------------------
721!
722!  In this version there are 8 files ( jpfile = 8)
723!  THE ORDER OF THE FILES MATTER:
724!  1 - precipitation total (rain+snow)  in kg/m2/s
725!  2,3 -  u10,v10 -> scalar wind at 10m in m/s -  ON 'T' GRID POINTS!!!
726!  4 - solar radiation (short wave)     in W/m2
727!  5 - thermal radiation (long wave)    in W/m2
728!  6 - specific humidity                in %
729!  7 - temperature at 10m               in degrees K
730!  8 - precipitation (snow only)        in kg/m2/s
731!
732!  ln_2m         boolean (default F), used to indicate that Tair & humidity
733!                are given at 2m. In this case, the default file names &
734!                variables are t2.nc, t2, q2.nc, q2
735!  alpha_precip  real coefficient used as a multiplying  factor  for the precip
736!  clname        file names (256 char max for each)
737!  clvarname     name of variable in netcdf file (32 char max)
738!  freqh         frequency of fields in the file
739!                it is in hours (6 hourly, daily) if positive.
740!                if freqh = -12 the file contains 12 monthly data.
741&namcore
742   ln_2m        = .FALSE.
743   alpha_precip = 1.
744   clname    = 'precip.nc' 'u10.nc' 'q10.nc' 'v10.nc' 'radsw.nc' 'radlw.nc' 't10.nc' 'snow.nc'
745   clvarname =  'precip'    'u10'    'q10'    'v10'    'radsw'    'radlw'    't10'    'snow'
746   freqh     =    -12        24        24       24       24         24        24       -12
747/
748!-----------------------------------------------------------------------
749!       namagrif    agrif parameters (#ifdef key_agrif)
750!-----------------------------------------------------------------------
751! visc_tra viscosity coeeficient for tracers sponge layer
752! visc_dyn viscosity coeeficient for dynamics sponge layer
753&namagrif
754    visc_tra = 2880.
755    visc_dyn = 2880.
756/
Note: See TracBrowser for help on using the repository browser.