New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
namelist in trunk/CONFIG/GYRE/EXP00 – NEMO

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

Last change on this file since 317 was 317, checked in by opalod, 19 years ago

nemo_v1_017:RB: update GYRE configuration for nsolv=4

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