Changeset 1265 for inundation/ga/storm_surge/pyvolution/shallow_water.py
- Timestamp:
- Apr 30, 2005, 8:48:11 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/shallow_water.py
r1194 r1265 174 174 msg = 'Parameter beta_h must be in the interval [0, 1[' 175 175 assert 0 <= self.beta_h < 1.0, msg 176 msg = 'Parameter beta_w must be in the interval [0, 1[' 177 assert 0 <= self.beta_w < 1.0, msg 176 msg = 'Parameter beta_w must be in the interval [0, 1[' 177 assert 0 <= self.beta_w < 1.0, msg 178 178 179 179 … … 185 185 #Initialise real time viz if requested 186 186 if self.visualise is True and self.time == 0.0: 187 import realtime_visualisation as visualise187 import realtime_visualisation_new as visualise 188 188 visualise.create_surface(self) 189 189 … … 345 345 346 346 #Flux computation 347 348 #FIXME(Ole): Why is it again that we don't 347 348 #FIXME(Ole): Why is it again that we don't 349 349 #use uh_left and uh_right directly in the first entries? 350 350 flux_left = array([u_left*h_left,
Note: See TracChangeset
for help on using the changeset viewer.