Changeset 4259


Ignore:
Timestamp:
Feb 14, 2007, 3:20:08 PM (18 years ago)
Author:
ole
Message:

Playing with default parameters

Files:
3 edited

Legend:

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

    r4254 r4259  
    8181beta_h      = 0.2
    8282
     83# beta_h can be safely put to zero esp if we are using limit2007 = 1. This will
     84# also speed things up.
     85beta_h = 0.0
     86
     87
    8388# Alpha_balance controls how limiters are balanced between deep and shallow.
    8489# A large value will favour the deep water limiters, allowing the a closer hug to the coastline.
     
    9297# limit2007 = 1 means use new limiters that hug the bathymetry closer
    9398limit2007 = 0
     99
    94100
    95101
  • anuga_core/source/anuga/shallow_water/test_shallow_water_domain.py

    r4239 r4259  
    974974        domain.set_maximum_allowed_speed(100) #
    975975        domain.H0 = 0 # Backwards compatibility (6/2/7)
    976        
     976        domain.beta_h = 0.2 # Backwards compatibility (14/2/7)
    977977
    978978        #-----------------------------------------------------------------
  • anuga_validation/automated_validation_tests/okushiri_tank_validation/run_okushiri.py

    r4240 r4259  
    5858domain.set_maximum_allowed_speed(0.1)     # Allow a little runoff (0.1 is OK)
    5959domain.H0=0
     60domain.limit2007=1 #Try this
    6061
    6162#-------------------------
Note: See TracChangeset for help on using the changeset viewer.