Changeset 3819
- Timestamp:
- Oct 17, 2006, 6:31:00 PM (19 years ago)
- Location:
- anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/config.py
r3737 r3819 109 109 #Specific to shallow water W.E. 110 110 minimum_allowed_height = 1.0e-3 #Water depth below which it is considered to be 0 in the model 111 maximum_allowed_speed = 100.0 #Maximal particle speed of water 111 112 maximum_allowed_speed = 1.0 # Maximal particle speed of water 113 # Too large (100) creates 'flopping' water 114 # Too small (0) creates 'creep' 115 112 116 113 117 minimum_storable_height = 1.0e-5 #Water depth below which it is *stored* as 0 -
anuga_core/source/anuga/shallow_water/test_shallow_water_domain.py
r3817 r3819 969 969 domain = Domain(points, vertices, boundary) # Create domain 970 970 domain.set_quantities_to_be_stored(None) 971 domain.set_maximum_allowed_speed(100) # 971 972 972 973
Note: See TracChangeset
for help on using the changeset viewer.