Changeset 2437
- Timestamp:
- Feb 22, 2006, 4:28:09 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
production/onslow_2006/run_onslow.py
r2436 r2437 1 """Script for running a tsunami inundation scenario for Sydney, NSW, Australia.1 """Script for running a tsunami inundation scenario for Onslow, WA, Australia. 2 2 3 3 Source data such as elevation and boundary data is assumed to be available in … … 8 8 the elevation data and a simulated submarine landslide. 9 9 10 Ole Nielsen and Duncan Gray, GA - 2005 and Adrian Hitchman and Jane Sexton, GA - 200610 Ole Nielsen and Duncan Gray, GA - 2005 and Nick Bartzis, GA - 2006 11 11 """ 12 12 … … 21 21 # Related major packages 22 22 from pyvolution.shallow_water import Domain, Reflective_boundary 23 from pyvolution.shallow_water import Domain, Time_boundary 23 24 from pyvolution.data_manager import convert_dem_from_ascii2netcdf, dem2pts 24 25 from pyvolution.combine_pts import combine_rectangular_points_files … … 146 147 Br = Reflective_boundary(domain) 147 148 # 10 min square wave starting at 1 min, 6m high 148 Bw = Time_boundary(domain =domain,149 Bw = Time_boundary(domain = domain, 149 150 f=lambda t: [(20<t<200)*6, 0, 0]) 151 150 152 domain.set_boundary( {'top': Bw, 'topleft': Br, 151 153 'left': Br, 'bottom': Br,
Note: See TracChangeset
for help on using the changeset viewer.