Changeset 1508 for inundation/ga/storm_surge/pyvolution/domain.py
- Timestamp:
- Jun 9, 2005, 3:37:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/domain.py
r1506 r1508 21 21 tagged_elements, geo_reference, use_inscribed_circle) 22 22 23 from Numeric import zeros, Float 23 from Numeric import zeros, Float, Int 24 24 from quantity import Quantity, Conserved_quantity 25 25 … … 85 85 self.checkpoint = False 86 86 87 #MH310505 To avoid calculating the flux across each edge twice, keep an integer (boolean) array, 88 #to be used during the flux calculation 89 N=self.number_of_elements 90 self.already_computed_flux = zeros((N, 3), Int) 87 91 88 92 #Public interface to Domain
Note: See TracChangeset
for help on using the changeset viewer.