Changeset 4732


Ignore:
Timestamp:
Sep 12, 2007, 1:09:19 PM (17 years ago)
Author:
ole
Message:

Made max_allowed_speed 0 as default (for very thin layers of water)

Files:
2 edited

Legend:

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

    r4712 r4732  
    131131
    132132use_psyco = True  #Use psyco optimisations
    133 #use_psyco = False  #Do not use psyco optimisations
     133se_psyco = False  #Do not use psyco optimisations
    134134
    135135
     
    141141minimum_allowed_height = 1.0e-3 #Water depth below which it is considered to be 0 in the model
    142142
    143 maximum_allowed_speed = 1.0 # Maximal particle speed of water
     143maximum_allowed_speed = 0.0 # Maximal particle speed of water
     144#maximum_allowed_speed = 1.0 # Maximal particle speed of water
    144145                            # Too large (100) creates 'flopping' water
    145146                            # Too small (0) creates 'creep'
  • anuga_validation/performance_tests/okushiri/run_okushiri_profile.py

    r4724 r4732  
    5656domain.set_all_limiters(0.9)              # Max second order scheme (old lim)
    5757domain.set_minimum_storable_height(0.001) # Don't store w < 0.001m
    58 domain.set_maximum_allowed_speed(0.1)     # Allow a little runoff (0.1 is OK)
     58domain.set_maximum_allowed_speed(0.0)     # No runoff (0.1 is OK)
    5959domain.set_store_vertices_uniquely(False)
    6060#domain.set_quantities_to_be_stored(None)
Note: See TracChangeset for help on using the changeset viewer.