Ignore:
Timestamp:
May 13, 2005, 6:15:08 PM (20 years ago)
Author:
steve
Message:

Need to look at uint test for inscribed circle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/shallow_water.py

    r1363 r1387  
    15071507
    15081508
     1509class Constant_stage:
     1510    """Set an initial condition with constant stage
     1511    """
     1512    def __init__(self, s):
     1513        self.s = s
     1514
     1515    def __call__(self, x, y):
     1516        return self.s
     1517
    15091518class Constant_height:
    15101519    """Set an initial condition with constant water height, e.g
    15111520    stage s = z+h
    15121521    """
     1522
    15131523    def __init__(self, W, h):
    15141524        self.W = W
Note: See TracChangeset for help on using the changeset viewer.