source: anuga_work/production/mandurah_storm_surge_2009/gems_comparison/project_GEMS.py @ 7647

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

updates to mandurah and bunbury storm surge models

File size: 11.1 KB
Line 
1"""
2This file contains all your file and directory definitions
3for elevation, meshes and outputs.
4"""
5
6import os
7from anuga.utilities.system_tools import get_user_name, get_host_name
8from time import localtime, strftime, gmtime
9from os.path import join, exists
10
11
12#-------------------------------------------------------------------------------
13# Directory setup
14#-------------------------------------------------------------------------------
15
16# this section needs to be updated to reflect the modelled community.
17# Note, the user needs to set up the directory system accordingly
18state = 'western_australia'
19#scenario_name = 'case_a'
20scenario_name = 'alby_waves'
21scenario_folder = 'mandurah_storm_surge_scenario_2009'
22
23#-------------------------------------------------------------------------------
24# Initial Conditions
25#-------------------------------------------------------------------------------
26
27# Model specific parameters.
28# One or all can be changed each time the run_model script is executed
29
30
31central_meridian = None # Central meridian for projection (optional)
32zone = 50               # UTM zone for projection
33
34event = 'alby_waves'
35#event = 'case_a'        # case_a - baseline historic TC Alby event
36                        # case_b - worst case scenarion current climate (current coastline)
37                        # case_c - worst case 1.1m SLR current climate (current coastline)
38                        # case_d - worst case 0.8m SLR current climate (current coastline)
39                        # case_e - worst case 0.5m SLR current climate (current coastline)
40tide = 0                # Mean Sea Level = 0,
41                                                # Highest Astronomical Tide = 0.6 m for Bunbury - CHECK THIS!
42alpha = 0.1             # smoothing parameter for mesh
43friction = 0.01           # manning's friction coefficient
44starttime = 0             # start time for simulation
45finaltime = 86400         # final time for simulation - 24 hours for TC Alby
46
47setup = 'storm_surge_final'         # This can be one of four values
48                                                #    trial - coarsest mesh, fast
49                                                #    basic - coarse mesh
50                                                #    final - fine mesh, slowest
51                                                #    storm_surge_final - as 'final' but with a longer yieldstep (12 mins)
52
53#-------------------------------------------------------------------------------
54# Output filename
55#
56# Your output filename should be unique between different runs on different data.
57# The list of items below will be used to create a file in your output directory.
58# Your user name and time+date will be automatically added.  For example,
59#     [setup, tide, event_number]
60# will result in a filename like
61#     20090212_091046_run_final_0_27283_rwilson
62#-------------------------------------------------------------------------------
63
64output_comment = [setup, tide, event, 'GEMS_compare']    # event_number will have to
65                                                                                                # change to something relevent
66                                                                                                # for storm surge
67
68#-------------------------------------------------------------------------------
69# Input Data
70#-------------------------------------------------------------------------------
71
72# ELEVATION DATA
73# Used in build_elevation.py
74# Format for ascii grids, as produced in ArcGIS + a projection file
75##ascii_grid_filenames = ['m_peel.asc',
76##                        'm_harvey.asc',
77##                        'm_peel_10m.asc'
78##                        'm_harvey_10m.asc']
79ascii_grid_filenames = ['man_25m_prj',          # this is the latest 25m DEM from GEMS
80                                                'man10m_ss']    # this is to fill in areas not covered by the
81                                        # GEMS grid and is derived from the 10m resampled LiDAR from DoT,
82                                        # clipped to the bounding polygon
83
84# Format for point is x,y,elevation (with header)
85point_filenames = []
86##                      ['MA-46893-SNDS_AHD.csv',
87##                   'MS0205HY_AHD.csv',
88##                   'MS0404_AHD.csv',
89##                   'YU0403HY_AHD.csv']
90
91# BOUNDING POLYGON - for data clipping and estimate of triangles in mesh
92# Used in build_elevation.py & run_model.py
93# Format for points easting,northing (no header)
94bounding_polygon_filename = 'bounding_polygon_ss.csv'
95bounding_polygon_maxarea = 50000
96
97# INTERIOR REGIONS -  for designing the mesh
98# Used in run_model.py
99# Format for points easting,northing (no header)                   
100interior_regions_data = [['intermediate.csv', 2500],
101                                                ['area_of_interest.csv', 100],
102                        ['canals_nth_2.csv', 100],  # Canal regions used to force mesh to fit canals
103                        ['canals_nth_3.csv', 100],   
104                        ['canals_nth_4.csv', 100], 
105                        ['canals_nth_5.csv', 100],
106                        ['canals_nth_6.csv', 100], 
107                        ['canals_nth_7.csv', 100],
108                        ['canals_nth_8.csv', 100], 
109                        ['canals_nth_9.csv', 100],
110                        ['canals_nth_10.csv', 100], 
111                        ['canals_nth_11.csv', 100],
112                        ['canals_nth_12.csv', 100], 
113                        ['canals_sth_1.csv', 100],
114                        ['canals_sth_2.csv', 100], 
115                        ['canals_sth_3.csv', 100],
116                        ['canals_sth_4.csv', 100], 
117                        ['canals_sth_5.csv', 100],
118                        ['canals_sth_6.csv', 100]]
119                       
120# LAND - used to set the initial stage/water to be offcoast only
121# Used in run_model.py.  Format for points easting,northing (no header)
122land_initial_conditions_filename = [['initial_conditions.csv', 0]]
123
124# GEMS order filename
125# Format is index,northing, easting, elevation (without header)
126gems_order_filename = 'gems_boundary_order_thinned.csv'
127
128# GAUGES - for creating timeseries at a specific point
129# Used in get_timeseries.py. 
130# Format easting,northing,name,elevation (with header)
131gauges_filename = 'gauges_mandurah_edited.csv'
132
133# BUILDINGS EXPOSURE - for identifying inundated houses
134# Used in run_building_inundation.py
135# Format latitude,longitude etc (geographic)
136building_exposure_filename = '' # from NEXIS
137
138# Landward bounding points
139# Format easting,northing (no header)
140landward_boundary_filename = 'landward_boundary.csv'
141
142### MUX input filename.
143### If a meta-file from EventSelection is used, set 'multi-mux' to True.
144### If a single MUX stem filename (*.grd) is used, set 'multi-mux' to False.
145####mux_input_filename = event_number # to be found in event_folder
146##                                    # (ie boundaries/event_number/)
147####multi_mux = False
148##mux_input_filename = 'event.list'
149##multi_mux = True
150
151#-------------------------------------------------------------------------------
152# Clipping regions for export to asc and regions for clipping data
153# Final inundation maps should only be created in regions of the finest mesh
154#-------------------------------------------------------------------------------
155
156# Elevation clip box - used when there are multiple overlapping datasets and you want to use
157# one over another in an area of overlap
158elevation_clip_box_filename = 'elevation_clip_box.csv'
159
160################################################################################
161################################################################################
162####         NOTE: NOTHING WOULD NORMALLY CHANGE BELOW THIS POINT.          ####
163################################################################################
164################################################################################
165
166# Get system user and host names.
167# These values can be used to distinguish between two similar runs by two
168# different users or runs by the same user on two different machines.
169user = get_user_name()
170host = get_host_name()
171
172# Environment variable names.
173# The inundation directory, not the data directory.
174ENV_INUNDATIONHOME = 'INUNDATIONHOME'
175
176#-------------------------------------------------------------------------------
177# Output Elevation Data
178#-------------------------------------------------------------------------------
179
180# Output filename for elevation
181# this is a combination of all the data generated in build_elevation.py
182combined_elevation_basename = scenario_name + 'GEMS_combined_elevation'
183
184#-------------------------------------------------------------------------------
185# Directory Structure
186#-------------------------------------------------------------------------------
187
188# determines time for setting up output directories
189time = strftime('%Y%m%d_%H%M%S', localtime()) 
190gtime = strftime('%Y%m%d_%H%M%S', gmtime()) 
191build_time = time + '_build'
192run_time = time + '_run_'
193
194# create paths generated from environment variables.
195home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder
196       
197# check various directories/files that must exist
198anuga_folder = join(home, state, scenario_folder, 'anuga')
199topographies_folder = join(anuga_folder, 'topographies')
200polygons_folder = join(anuga_folder, 'polygons')
201boundaries_folder = join(anuga_folder, 'boundaries')
202output_folder = join(anuga_folder, 'outputs')
203gauges_folder = join(anuga_folder, 'gauges')
204event_folder = join(boundaries_folder, str(event))
205
206#-------------------------------------------------------------------------------
207# Location of input and output data
208#-------------------------------------------------------------------------------
209
210# Convert the user output_comment to a string for run_model.py
211output_comment = ('_'.join([str(x) for x in output_comment if x != user])
212                                  + '_' + user)
213
214# The absolute pathname of the all elevation, generated in build_elevation.py
215combined_elevation = join(topographies_folder, combined_elevation_basename)
216
217
218# The pathname for the GEMS order points
219if gems_order_filename:
220        gems_order = join(boundaries_folder, gems_order_filename)
221
222# The absolute pathname for the landward points of the bounding polygon,
223# Used within run_model.py)
224if landward_boundary_filename:
225        landward_boundary = join(boundaries_folder, landward_boundary_filename)
226
227# The absolute pathname for the .sts file, generated in build_boundary.py
228event_sts = join(event_folder, scenario_name)
229
230# The absolute pathname for the output folder names
231# Used for build_elevation.py
232output_build = join(output_folder, build_time) + '_' + str(user) 
233# Used for run_model.py
234output_run = join(output_folder, run_time) + output_comment
235# Used by post processing
236output_run_time = join(output_run, scenario_name) 
237
238# The absolute pathname of the mesh, generated in run_model.py
239meshes = join(output_run, scenario_name) + 'GEMS.msh'
240
241# The absolute pathname for the gauges file
242# Used for get_timeseries.py
243if gauges_filename:
244        gauges = join(gauges_folder, gauges_filename)       
245
246# The absolute pathname for the building file
247# Used for run_building_inundation.py
248if building_exposure_filename:
249        building_exposure = join(gauges_folder, building_exposure_filename)
250
251### The absolute pathname for the image file
252### Used for get_runup.py
253##if images_filename:
254##    images = join(polygons_folder, images_filename)
255
256### full path to where MUX files (or meta-files) live
257##mux_input = join(event_folder, mux_input_filename)
258
259
Note: See TracBrowser for help on using the repository browser.