1 | """Run a tsunami inundation scenario for sydney region, NSW, Australia. |
---|
2 | |
---|
3 | The scenario is defined by a triangular mesh created from project.polygon, the |
---|
4 | elevation data is compiled into a pts file through build_sydney.py and a |
---|
5 | simulated tsunami is generated through an sts file from build_boundary.py. |
---|
6 | |
---|
7 | Input: sts file (build_boundary.py for respective event) |
---|
8 | pts file (build_sydney.py) |
---|
9 | information from project file |
---|
10 | Outputs: sww file stored in project.output_run_time_dir |
---|
11 | The export_results_all.py and get_timeseries.py is reliant |
---|
12 | on the outputs of this script |
---|
13 | |
---|
14 | Ole Nielsen and Duncan Gray, GA - 2005, Jane Sexton, Nick Bartzis, GA - 2006 |
---|
15 | Ole Nielsen, Jane Sexton and Kristy Van Putten - 2008 |
---|
16 | """ |
---|
17 | |
---|
18 | #------------------------------------------------------------------------------ |
---|
19 | # Import necessary modules |
---|
20 | #------------------------------------------------------------------------------ |
---|
21 | |
---|
22 | # Standard modules |
---|
23 | import os |
---|
24 | import time |
---|
25 | |
---|
26 | # Related major packages |
---|
27 | from anuga.interface import create_domain_from_regions |
---|
28 | from anuga.interface import Transmissive_stage_zero_momentum_boundary |
---|
29 | from anuga.interface import Dirichlet_boundary |
---|
30 | from anuga.interface import Reflective_boundary |
---|
31 | from anuga.interface import Field_boundary |
---|
32 | from anuga.interface import create_sts_boundary |
---|
33 | from anuga.interface import csv2building_polygons |
---|
34 | from file_length import file_length |
---|
35 | |
---|
36 | from anuga.shallow_water.data_manager import start_screen_catcher |
---|
37 | from anuga.shallow_water.data_manager import copy_code_files |
---|
38 | from anuga.utilities.polygon import read_polygon, Polygon_function |
---|
39 | |
---|
40 | # Application specific imports |
---|
41 | import project # Definition of file names and polygons |
---|
42 | |
---|
43 | |
---|
44 | #------------------------------------------------------------------------------ |
---|
45 | # Copy scripts to time stamped output directory and capture screen |
---|
46 | # output to file. Copy script must be before screen_catcher. |
---|
47 | #------------------------------------------------------------------------------ |
---|
48 | copy_code_files(project.output_run, __file__, |
---|
49 | os.path.dirname(project.__file__)+os.sep+\ |
---|
50 | project.__name__+'.py' ) |
---|
51 | start_screen_catcher(project.output_run, 0, 1) |
---|
52 | |
---|
53 | |
---|
54 | #------------------------------------------------------------------------------ |
---|
55 | # Create the computational domain based on overall clipping polygon with |
---|
56 | # a tagged boundary and interior regions defined in project.py along with |
---|
57 | # resolutions (maximal area of per triangle) for each polygon. |
---|
58 | #------------------------------------------------------------------------------ |
---|
59 | print 'Create computational domain' |
---|
60 | |
---|
61 | # Read in boundary from ordered sts file |
---|
62 | event_sts = create_sts_boundary(project.event_sts) |
---|
63 | |
---|
64 | # Reading the landward defined points, this incorporates the original clipping |
---|
65 | # polygon minus the 100m contour. |
---|
66 | landward_boundary = read_polygon(project.landward_boundary) |
---|
67 | |
---|
68 | # Combine sts polyline with landward points |
---|
69 | bounding_polygon_sts = event_sts + landward_boundary |
---|
70 | |
---|
71 | # Number of boundary segments |
---|
72 | N = len(event_sts)-1 |
---|
73 | # Number of landward_boundary points |
---|
74 | M = file_length(project.landward_boundary) |
---|
75 | print 'M',M |
---|
76 | |
---|
77 | # Boundary tags refer to project.landward_boundary |
---|
78 | # 4 points equals 5 segments start at N |
---|
79 | boundary_tags={'back': range(N+1,N+M), |
---|
80 | 'side': [N,N+M], |
---|
81 | 'ocean': range(N)} |
---|
82 | |
---|
83 | # Build mesh and domain |
---|
84 | domain = create_domain_from_regions(bounding_polygon_sts, |
---|
85 | boundary_tags=boundary_tags, |
---|
86 | maximum_triangle_area=project.bounding_maxarea, |
---|
87 | interior_regions=project.interior_regions, |
---|
88 | mesh_filename=project.meshes, |
---|
89 | use_cache=True, |
---|
90 | verbose=True) |
---|
91 | print domain.statistics() |
---|
92 | |
---|
93 | domain.set_name(project.scenario_name) |
---|
94 | domain.set_datadir(project.output_run) |
---|
95 | domain.set_minimum_storable_height(0.01) # Don't store depth less than 1cm |
---|
96 | |
---|
97 | |
---|
98 | #------------------------------------------------------------------------------ |
---|
99 | # Setup initial conditions |
---|
100 | #------------------------------------------------------------------------------ |
---|
101 | print 'Setup initial conditions' |
---|
102 | |
---|
103 | # Set the initial stage in the offcoast region only |
---|
104 | IC = Polygon_function(project.land_initial_conditions, |
---|
105 | default=project.tide, |
---|
106 | geo_reference=domain.geo_reference) |
---|
107 | domain.set_quantity('stage', IC, use_cache=True, verbose=True) |
---|
108 | domain.set_quantity('friction', project.friction) |
---|
109 | domain.set_quantity('elevation', |
---|
110 | filename=project.combined_elevation+'.pts', |
---|
111 | use_cache=True, |
---|
112 | verbose=True, |
---|
113 | alpha=project.alpha) |
---|
114 | |
---|
115 | |
---|
116 | #------------------------------------------------------------------------------ |
---|
117 | # Setup boundary conditions |
---|
118 | #------------------------------------------------------------------------------ |
---|
119 | print 'Set boundary - available tags:', domain.get_boundary_tags() |
---|
120 | |
---|
121 | Br = Reflective_boundary(domain) |
---|
122 | Bt = Transmissive_stage_zero_momentum_boundary(domain) |
---|
123 | Bf = Field_boundary(project.event_sts+'.sts', |
---|
124 | domain, mean_stage=project.tide, |
---|
125 | time_thinning=1, |
---|
126 | default_boundary=Bd, |
---|
127 | boundary_polygon=bounding_polygon_sts, |
---|
128 | use_cache=True, |
---|
129 | verbose=True) |
---|
130 | |
---|
131 | domain.set_boundary({'back': Br, |
---|
132 | 'side': Bt, |
---|
133 | 'ocean': Bf}) |
---|
134 | |
---|
135 | |
---|
136 | #------------------------------------------------------------------------------ |
---|
137 | # Evolve system through time |
---|
138 | #------------------------------------------------------------------------------ |
---|
139 | t0 = time.time() |
---|
140 | for t in domain.evolve(yieldstep=project.yieldstep, |
---|
141 | finaltime=project.finaltime, |
---|
142 | skip_initial_step=False): |
---|
143 | print domain.timestepping_statistics() |
---|
144 | print domain.boundary_statistics(tags='ocean') |
---|
145 | |
---|
146 | print 'Simulation took %.2f seconds' %(time.time()-t0) |
---|