Changeset 1853 for inundation/examples
- Timestamp:
- Sep 27, 2005, 1:31:12 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/examples/bedslope.py
r1490 r1853 8 8 # Module imports 9 9 # 10 from mesh_factory import rectangular11 from shallow_water import Domain, Reflective_boundary, Dirichlet_boundary,\12 Constant_height, Time_boundary, Transmissive_boundary10 from pyvolution.mesh_factory import rectangular 11 from pyvolution.shallow_water import Domain, Reflective_boundary,\ 12 Dirichlet_boundary, Constant_height, Time_boundary, Transmissive_boundary 13 13 from Numeric import array 14 14 … … 54 54 ###################### 55 55 #Evolution 56 for t in domain.evolve(yieldstep = 0. 01, finaltime = 5.0):56 for t in domain.evolve(yieldstep = 0.1, finaltime = 3.0): 57 57 domain.write_time() 58 58 59 for t in domain.evolve(yieldstep = 0.01, finaltime = 4.0): 60 domain.write_time() 61
Note: See TracChangeset
for help on using the changeset viewer.