Changeset 1187
- Timestamp:
- Apr 2, 2005, 6:56:49 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/domain.py
r1178 r1187 412 412 if yieldstep is None: 413 413 yieldstep = max_timestep 414 else: 415 yieldstep = float(yieldstep) 414 416 415 417 self.order = self.default_order … … 461 463 #Yield results 462 464 if finaltime is not None and abs(self.time - finaltime) < epsilon: 465 466 #FIXME: There is a rare situation where the 467 #final time step is stored twice. Can we make a test? 468 463 469 # Yield final time and stop 464 470 yield(self.time) … … 537 543 %self.max_smallsteps 538 544 print msg 539 timestep = min_timestep #Try enfor ing minstep545 timestep = min_timestep #Try enforcing min_step 540 546 541 547 #raise msg
Note: See TracChangeset
for help on using the changeset viewer.