Changeset 415 for inundation/ga/storm_surge/pyvolution/shallow_water.py
- Timestamp:
- Oct 18, 2004, 1:53:59 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/shallow_water.py
r287 r415 22 22 class Domain(Generic_domain): 23 23 24 def __init__(self, coordinates, vertices, boundary = None): 24 def __init__(self, coordinates, vertices, boundary = None, 25 tagged_elements = None): 25 26 26 27 conserved_quantities = ['level', 'xmomentum', 'ymomentum'] … … 28 29 29 30 Generic_domain.__init__(self, coordinates, vertices, boundary, 30 conserved_quantities, other_quantities) 31 conserved_quantities, other_quantities, 32 tagged_elements) 31 33 32 34 from config import minimum_allowed_height, g
Note: See TracChangeset
for help on using the changeset viewer.