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

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

nemo_v1_compil_010 : CT : New dependencies and namelist parameters

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