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

Last change on this file since 133 was 133, checked in by opalod, 20 years ago

CT : UPDATE082 : Finalization of the poleward transport diagnostics

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