Ignore:
Timestamp:
Oct 18, 2004, 1:53:59 PM (20 years ago)
Author:
duncan
Message:

added element tags to Domain

File:
1 edited

Legend:

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

    r287 r415  
    2222class Domain(Generic_domain):
    2323
    24     def __init__(self, coordinates, vertices, boundary = None):
     24    def __init__(self, coordinates, vertices, boundary = None,
     25                 tagged_elements = None):
    2526
    2627        conserved_quantities = ['level', 'xmomentum', 'ymomentum']
     
    2829       
    2930        Generic_domain.__init__(self, coordinates, vertices, boundary,
    30                                 conserved_quantities, other_quantities)
     31                                conserved_quantities, other_quantities,
     32                                tagged_elements)
    3133
    3234        from config import minimum_allowed_height, g
Note: See TracChangeset for help on using the changeset viewer.