Ignore:
Timestamp:
Oct 1, 2006, 6:55:46 PM (18 years ago)
Author:
steve
Message:

Added more limiting to cells near dry cells, use beta_*_dry

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/config.py

    r3642 r3678  
    3939max_smallsteps = 50  #Max number of degenerate steps allowed b4 trying first order
    4040
    41 manning = 0.3  #Manning's friction coefficient
     41manning = 0.03  #Manning's friction coefficient
    4242#g = 9.80665       #Gravity
    4343g = 9.8
     
    6767#
    6868#
    69 #There are separate betas for the w-limiter and the h-limiter
    70 #
    71 #
    72 #
     69#There are separate betas for the w, uh, vh and h limiters
    7370#
    7471#Good values are:
    75 #beta_w = 0.9
    76 #beta_h = 0.2
     72beta_w      = 0.9
     73beta_w_dry  = 0.9
     74beta_uh     = 0.9
     75beta_uh_dry = 0.9
     76beta_vh     = 0.9
     77beta_vh_dry = 0.9
     78beta_h      = 0.2
     79
     80# I think these are better SR but they conflict with the unit tests!
     81# beta_w      = 1.0
     82# beta_w_dry  = 0.2
     83# beta_uh     = 1.0
     84# beta_uh_dry = 0.2
     85# beta_vh     = 1.0
     86# beta_vh_dry = 0.2
     87# beta_h      = 0.2
    7788
    7889
    79 
    80 beta_w = 0.9
    81 beta_h = 0.2
    8290CFL = 1.0  #FIXME (ole): Is this in use yet??
    8391           #(Steve) yes, change domain.CFL to
Note: See TracChangeset for help on using the changeset viewer.