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/ORCA2_LIM/EXP00 – NEMO

source: trunk/CONFIG/ORCA2_LIM/EXP00/namelist @ 784

Last change on this file since 784 was 784, checked in by rblod, 16 years ago

merge solsor and solsor_e, see ticket #45

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