Changeset 3819


Ignore:
Timestamp:
Oct 17, 2006, 6:31:00 PM (19 years ago)
Author:
ole
Message:

Updated default maximum_allowed_speed according to findings from the okushiri example and
fixed one test up.

Location:
anuga_core/source/anuga
Files:
2 edited

Legend:

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

    r3737 r3819  
    109109#Specific to shallow water W.E.
    110110minimum_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
     112maximum_allowed_speed = 1.0 # Maximal particle speed of water
     113                            # Too large (100) creates 'flopping' water
     114                            # Too small (0) creates 'creep'
     115
    112116
    113117minimum_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  
    969969        domain = Domain(points, vertices, boundary) # Create domain
    970970        domain.set_quantities_to_be_stored(None)
     971        domain.set_maximum_allowed_speed(100) #
    971972       
    972973
Note: See TracChangeset for help on using the changeset viewer.