Changeset 9037


Ignore:
Timestamp:
Dec 4, 2013, 1:14:04 PM (11 years ago)
Author:
steve
Message:

Small change to minimum_allowed_height

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/shallow_water/shallow_water_domain.py

    r9033 r9037  
    420420       
    421421        # Don't place any restriction on the minimum storable height
    422         self.minimum_storable_height=-99999999999.0
    423         self.minimum_allowed_height=1.0e-03
     422        #self.minimum_storable_height=-99999999999.0
     423        #self.minimum_allowed_height=1.0e-03
    424424
    425425        self.use_edge_limiter=True
     
    550550           wb_3
    551551           tsunami
     552           DE1
    552553        """
    553554        compute_fluxes_methods = ['original', 'wb_1', 'wb_2', 'wb_3', 'tsunami', 'DE1']
  • trunk/anuga_core/source/anuga_validation_tests/readme.txt

    r8552 r9037  
    1111parameter.
    1212
    13 You need to add the directory containing validation_tests to your PYTHONPATH
    14 
    15 Ie
    16 
    17 export PYTHONPATH=/home/steve/anuga_core:$PYTHONPATH
  • trunk/anuga_work/anuga_cuda/src/anuga_cuda/gpu_domain_basic.py

    r9017 r9037  
    12101210
    12111211    # FIXME
    1212     def ensure_numeric(A, typecode=None):
     1212    def ensure_numeric(self, A, typecode=None):
    12131213        """From numerical_tools"""
    12141214        if A is None:
     
    12261226    def get_absolute(self, points):
    12271227        """From geo_reference get_absolute"""
    1228         is_list = isinstance(poins, list)
     1228        is_list = isinstance(points, list)
    12291229        points = self.ensure_numeric(points, list)
    12301230
Note: See TracChangeset for help on using the changeset viewer.