Changeset 2866 for inundation/pyvolution/domain.py
- Timestamp:
- May 15, 2006, 2:26:21 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/domain.py
r2852 r2866 76 76 # Initialise underlying mesh structure 77 77 Mesh.__init__(self, coordinates, triangles, boundary, 78 tagged_elements, geo_reference, use_inscribed_circle) 79 78 tagged_elements, geo_reference, use_inscribed_circle, 79 verbose=verbose) 80 81 if verbose: print 'Initialising Domain' 80 82 from Numeric import zeros, Float, Int 81 83 from quantity import Quantity, Conserved_quantity … … 123 125 124 126 # Setup Communication Buffers 127 128 if verbose: print 'Domain: Set up communication buffers (parallel)' 125 129 self.nsys = len(self.conserved_quantities) 126 130 for key in self.full_send_dict: … … 179 183 # If the mesh file passed any quantity values 180 184 # , initialise with these values. 185 if verbose: print 'Domain: Initialising quantity values' 181 186 self.set_quantity_vertices_dict(vertex_quantity_dict) 182 187 188 189 if verbose: print 'Domain: Done' 190 191 183 192 184 193
Note: See TracChangeset
for help on using the changeset viewer.