source: DVD_images/extra_files/Hobart/project/run_model.py @ 7463

Last change on this file since 7463 was 7371, checked in by kristy, 16 years ago

took out import build_urs

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