source: anuga_work/production/bunbury_storm_surge_2009/run_model.py @ 7818

Last change on this file since 7818 was 7658, checked in by fountain, 14 years ago

updates to bunbury storm surge model

File size: 7.5 KB
Line 
1"""Run a storm surge inundation scenario for Mandurah, WA, Australia using
2input from the third party consultant GEMS.
3
4The scenario is defined by a triangular mesh created from project.polygon, the
5elevation data is compiled into a pts file through build_elevation.py and a
6simulated storm surge is generated from GEMS data.
7
8Input: sts files (csv format time series at ocean boundary for respective event)
9       pts file (build_elevation.py)
10       information from project file
11Outputs: sww file stored in project.output_run_time_dir
12The export_results_all.py and get_timeseries.py is reliant
13on the outputs of this script
14
15Ole Nielsen and Duncan Gray, GA - 2005, Jane Sexton, Nick Bartzis, GA - 2006
16Ole Nielsen, Jane Sexton and Kristy Van Putten - 2008
17Nariman Habili, Leharne Fountain - 2009
18"""
19
20#------------------------------------------------------------------------------
21# Import necessary modules
22#------------------------------------------------------------------------------
23
24# Standard modules
25import os
26##import os.path
27import time
28##from time import localtime, strftime, gmtime
29
30# Related major packages
31##from Scientific.IO.NetCDF import NetCDFFile
32import numpy as num
33
34from anuga.interface import create_domain_from_regions
35from anuga.interface import Transmissive_stage_zero_momentum_boundary
36from anuga.interface import Dirichlet_boundary
37from anuga.interface import Reflective_boundary
38from anuga.interface import Field_boundary
39from anuga.interface import create_sts_boundary
40##from anuga.interface import csv2building_polygons
41from file_length import file_length
42
43from anuga.shallow_water.data_manager import start_screen_catcher
44from anuga.shallow_water.data_manager import copy_code_files
45##from anuga.shallow_water.data_manager import urs2sts
46from anuga.utilities.polygon import read_polygon, Polygon_function
47
48# Application specific imports
49from setup_model import project
50##import build_urs_boundary as bub
51
52
53#-------------------------------------------------------------------------------
54# Copy scripts to time stamped output directory and capture screen
55# output to file. Copy script must be before screen_catcher
56#-------------------------------------------------------------------------------
57
58copy_code_files(project.output_run, __file__, 
59                os.path.join(os.path.dirname(project.__file__),
60                             project.__name__+'.py'))
61start_screen_catcher(project.output_run, 0, 1)
62
63#-------------------------------------------------------------------------------
64# Create the computational domain based on overall clipping polygon with
65# a tagged boundary and interior regions defined in project.py along with
66# resolutions (maximal area of per triangle) for each polygon
67#-------------------------------------------------------------------------------
68
69print 'Create computational domain'
70
71### Create the STS file
72##print 'project.mux_data_folder=%s' % project.mux_data_folder
73##if not os.path.exists(project.event_sts + '.sts'):
74##    bub.build_urs_boundary(project.mux_input_filename, project.event_sts)
75
76### Read in boundary from ordered sts file
77##gems_boundary = create_sts_boundary(project.event_sts)
78
79#reading the GEMS boundary points
80gems_boundary = read_polygon(project.gems_order)
81##gems_boundary = create_sts_boundary(project.event_sts)
82
83# Reading the landward defined points of the original bounding polygon
84landward_boundary = read_polygon(project.landward_boundary)
85
86# Combine GEMS input boundary polyline with landward points
87bounding_polygon_gems = gems_boundary + landward_boundary
88
89# Number of boundary segments
90num_ocean_segments = len(gems_boundary) - 1
91# Number of landward_boundary points
92num_land_points = file_length(project.landward_boundary)
93
94# Boundary tags refer to project.landward_boundary
95# 4 points equals 5 segments start at N
96boundary_tags={'back': range(num_ocean_segments+1,
97                             num_ocean_segments+num_land_points),
98               'side': [num_ocean_segments,
99                        num_ocean_segments+num_land_points],
100               'ocean': range(num_ocean_segments)}
101
102# Build mesh and domain
103domain = create_domain_from_regions(bounding_polygon_gems,
104                                    boundary_tags=boundary_tags,
105                                    maximum_triangle_area=project.bounding_maxarea,
106                                    interior_regions=project.interior_regions,
107                                    mesh_filename=project.meshes,
108                                    use_cache=False, #usually true but changed for testing
109                                    verbose=True)
110print domain.statistics()
111
112domain.set_starttime(project.starttime)
113domain.set_name(project.scenario_name)
114domain.set_datadir(project.output_run) 
115domain.set_minimum_storable_height(0.01)    # Don't store depth less than 1cm
116
117#-------------------------------------------------------------------------------
118# Setup initial conditions
119#-------------------------------------------------------------------------------
120
121print 'Setup initial conditions'
122
123# Set the initial stage in the offcoast region only
124if project.land_initial_conditions:
125    IC = Polygon_function(project.land_initial_conditions,
126                          default=project.tide,
127                          geo_reference=domain.geo_reference)
128else:
129    IC = 0
130domain.set_quantity('stage', IC, use_cache=True, verbose=True)
131domain.set_quantity('friction', project.friction) 
132domain.set_quantity('elevation', 
133                    filename=project.combined_elevation+'.pts',
134                    use_cache=True,
135                    verbose=True,
136                    alpha=project.alpha)
137
138#--------------------------
139# Add storm surge gate
140#--------------------------
141storm_gate_polygon, storm_gate_height = csv2building_polygons(project.storm_gate, floor_height=4)
142
143gate = []
144for key in storm_gate_polygon:
145    poly = storm_gate_polygon[key]
146    elev = storm_gate_height[key]
147    gate.append((poly, elev))
148
149domain.add_quantity('elevation', 
150                    Polygon_function(gate, geo_reference=domain.geo_reference),
151                    use_cache=True,
152                    verbose=True)
153
154#-------------------------------------------------------------------------------
155# Setup boundary conditions
156#-------------------------------------------------------------------------------
157
158print 'Set boundary - available tags:', domain.get_boundary_tags()
159
160Br = Reflective_boundary(domain)
161Bt = Transmissive_stage_zero_momentum_boundary(domain)
162Bd = Dirichlet_boundary([project.tide, 0, 0])
163Bf = Field_boundary(project.event_sts+'.sts',
164                    domain, mean_stage=project.tide,
165                    time_thinning=1,
166                    default_boundary=Dirichlet_boundary([0, 0, 0]),
167                    boundary_polygon=bounding_polygon_gems,                   
168                    use_cache=True,
169                    verbose=True)
170
171domain.set_boundary({'back': Br,
172                     'side': Bt,
173                     'ocean': Bf}) 
174
175#-------------------------------------------------------------------------------
176# Evolve system through time
177#-------------------------------------------------------------------------------
178
179t0 = time.time()
180for t in domain.evolve(yieldstep=project.yieldstep, 
181                       finaltime=project.finaltime,
182                       skip_initial_step=False): 
183    print domain.timestepping_statistics()
184    print domain.boundary_statistics(tags='ocean')
185
186
187print 'Simulation took %.2f seconds' % (time.time()-t0)
188
Note: See TracBrowser for help on using the repository browser.