Changeset 4219 for anuga_core/source
- Timestamp:
- Feb 6, 2007, 12:00:06 PM (18 years ago)
- Location:
- anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/config.py
r4170 r4219 81 81 beta_h = 0.2 82 82 83 alpha_balance = 2.0 83 # Alpha_balance controls how limiters are balanced between deep and shallow. 84 # A large value will favour the deep water limiters, allowing the a closer hug to the coastline. 85 # This will minimise 'creep' but at the same time cause smaller time steps 86 # Range: 87 88 alpha_balance = 2.0 89 84 90 85 91 CFL = 1.0 #FIXME (ole): Is this in use yet?? -
anuga_core/source/anuga/examples/limiter_test.py
r4187 r4219 26 26 domain.set_name('limiter_test') 27 27 domain.set_store_vertices_uniquely(True) 28 domain.set_default_order(2) 28 29 29 30 #------------------------------------------------------------------------------ … … 44 45 45 46 domain.set_quantity('elevation', topography) # Use function for elevation 46 domain.set_quantity('stage', 0.5) # Constant negativeinitial stage47 domain.set_quantity('stage', 0.5) # Constant initial stage 47 48 48 49 … … 58 59 #------------------------------------------------------------------------------ 59 60 60 for t in domain.evolve(yieldstep = 0.1, finaltime = 1.0):61 for t in domain.evolve(yieldstep = 0.1, finaltime = 50.0): 61 62 domain.write_time() 63 64 print 'done' 62 65 63 66
Note: See TracChangeset
for help on using the changeset viewer.