source: anuga_work/production/broome/run_boundary_points.py @ 5316

Last change on this file since 5316 was 5245, checked in by sexton, 17 years ago

(1) update of production processes document (2) test for generating points for URS output (3) update of graduate proposal

File size: 1.6 KB
Line 
1"""Script for running tsunami inundation scenario for Dampier, WA, Australia.
2
3Source data such as elevation and boundary data is assumed to be available in
4directories specified by project.py
5The output sww file is stored in project.output_run_time_dir
6
7The scenario is defined by a triangular mesh created from project.polygon,
8the elevation data and a simulated tsunami generated with URS code.
9
10Ole Nielsen and Duncan Gray, GA - 2005 and Jane Sexton, Nick Bartzis, GA - 2006
11"""
12
13#------------------------------------------------------------------------------
14# Import necessary modules
15#------------------------------------------------------------------------------
16
17# Standard modules
18
19# # Related major packages
20# from anuga.shallow_water import Domain
21from anuga.shallow_water.data_manager import URS_points_needed_to_file, \
22     urs_ungridded2sww
23import project_urs                 # Definition of file names and polygons
24
25#------------------------------------------------------------------------------
26# Copy scripts to time stamped output directory and capture screen
27# output to file
28#------------------------------------------------------------------------------
29poly = project_urs.poly_all
30print "poly", poly
31print "project_urs.boundaries_in_dir_name",project_urs.boundaries_in_dir_name
32URS_points_needed_to_file(project_urs.boundaries_in_dir_name,poly, export_csv=True, zone=51)
33#URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True, zone=50)
34#URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True)
35#urs_ungridded2sww(project.boundaries_in_dir_name2, project.boundaries_dir_name5, mean_stage= project.tide,  verbose=True)
Note: See TracBrowser for help on using the repository browser.