Changeset 271 for inundation/ga/storm_surge/pyvolution/shallow_water.py
- Timestamp:
- Sep 6, 2004, 10:09:28 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/shallow_water.py
r269 r271 39 39 #Realtime visualisation 40 40 self.visualise = False 41 42 41 43 42 #Stored output … … 102 101 103 102 def evolve(self, yieldstep = None, finaltime = None): 104 #Call basic machinery from parent class 105 106 103 """Specialisation of basic evolve method from parent class 104 """ 105 106 #Initialise real time viz if requested 107 107 if self.visualise is True and self.time == 0.0: 108 108 import realtime_visualisation as visualise … … 113 113 self.store_bathymetry() 114 114 ###self.store_conserved_quantities() 115 115 116 #Call basic machinery from parent class 116 117 for t in Generic_domain.evolve(self, yieldstep, finaltime): 117 118 #Real time viz
Note: See TracChangeset
for help on using the changeset viewer.