Changeset 2320
- Timestamp:
- Feb 1, 2006, 4:53:45 PM (19 years ago)
- Location:
- inundation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/examples/bedslope.py
r2300 r2320 18 18 domain = Domain(points, vertices, boundary) 19 19 domain.set_name('bedslope') 20 domain.set_quantities_to_be_stored('stage') 20 domain.set_datadir('.') #Use current directory for output 21 domain.set_quantities_to_be_stored('stage') #See shallow_water.py 21 22 22 23 … … 43 44 44 45 46 print 'Tags are ', domain.get_boundary_tags() 47 45 48 domain.set_boundary({'left': Bd, 'right': Br, 'top': Br, 'bottom': Br}) 46 49 #domain.set_boundary({'left': Bw, 'right': Br, 'top': Br, 'bottom': Br}) -
inundation/pyvolution/shallow_water.py
r2300 r2320 111 111 In the two first cases, the named quantities will be stored at each yieldstep 112 112 (This is in addition to the quantities elevation and friction) 113 If q is None, storage will be switche off altogether.113 If q is None, storage will be switched off altogether. 114 114 """ 115 115
Note: See TracChangeset
for help on using the changeset viewer.