Changeset 2288
- Timestamp:
- Jan 25, 2006, 5:29:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/examples/bedslope.py
r2156 r2288 12 12 Dirichlet_boundary, Time_boundary, Transmissive_boundary 13 13 14 #Create basic mesh14 #Create basic triangular mesh 15 15 points, vertices, boundary = rectangular(10, 10) 16 16 17 17 #Create shallow water domain 18 18 domain = Domain(points, vertices, boundary) 19 domain.smooth = False 20 domain.visualise = False 21 domain.store = True 22 domain.filename = 'bedslope' 23 domain.default_order = 2 19 domain.set_name('bedslope') 20 24 21 25 22 ####################### … … 51 48 ###################### 52 49 #Evolution 53 54 50 domain.check_integrity() 55 51 … … 57 53 domain.write_time() 58 54 59 60
Note: See TracChangeset
for help on using the changeset viewer.