Changeset 7305
- Timestamp:
- Jul 7, 2009, 9:16:49 AM (16 years ago)
- Location:
- anuga_work/production/hobart_2009/For_DVD
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/hobart_2009/For_DVD/build_elevation.py
r7269 r7305 1 """Build the elevation data to run a tsunami inundation scenario 2 for Busselton, WA, Australia. 1 """Build the elevation data to run a tsunami inundation scenario. 3 2 4 3 Input: elevation data from project.py 5 Output: pts file stored in project.topographies_ dir4 Output: pts file stored in project.topographies_folder 6 5 The run_model.py is reliant on the output of this script. 7 6 -
anuga_work/production/hobart_2009/For_DVD/get_timeseries.py
r7269 r7305 1 1 """ 2 2 Generate time series of nominated "gauges". 3 Input: sww file from run_ perth.py3 Input: sww file from run_model.py 4 4 gauges project.gauge_filename 5 Output: csv files stage,speed,depth,elevation over time 6 Stored in the 'outputs_ dir' folder for respective .sww file5 Output: csv files stage,speed,depth,elevation over time (sec) 6 Stored in the 'outputs_folder' folder for respective .sww file 7 7 8 8 Note: 9 Can run different sww files at the same time 10 make sure if there is a second sww file that it is placed into a folder called sww2 11 Can run different gauges at the same time - ie testing boundary index point 9 Will run through all .sww files in order of time within each output folder 12 10 """ 13 11 -
anuga_work/production/hobart_2009/For_DVD/run_model.py
r7269 r7305 1 """Run a tsunami inundation scenario for Busselton, WA, Australia.1 """Run a tsunami inundation scenario. 2 2 3 3 The scenario is defined by a triangular mesh created from project.polygon, the … … 5 5 simulated tsunami is generated through an sts file from build_boundary.py. 6 6 7 Input: sts file (build_boundary.py for respective event)8 pts file (build_elevation.py) 7 Input: sts file (build_boundary.py) - found in project.event_folder 8 pts file (build_elevation.py) - found in project.boundaries_folder 9 9 information from project file 10 Outputs: sww file stored in project.output_run _time_dir10 Outputs: sww file stored in project.output_run 11 11 The export_results_all.py and get_timeseries.py is reliant 12 12 on the outputs of this script … … 14 14 Ole Nielsen and Duncan Gray, GA - 2005, Jane Sexton, Nick Bartzis, GA - 2006 15 15 Ole Nielsen, Jane Sexton and Kristy Van Putten - 2008 16 Ole Nielsen, Jane Sexton, Ross Wilson and Kristy Van Putten - 2009 16 17 """ 17 18
Note: See TracChangeset
for help on using the changeset viewer.