1 | """ |
---|
2 | This file contains all your file and directory definitions |
---|
3 | for elevation, meshes and outputs. |
---|
4 | """ |
---|
5 | |
---|
6 | import os |
---|
7 | from anuga.utilities.system_tools import get_user_name, get_host_name |
---|
8 | from time import localtime, strftime, gmtime |
---|
9 | from 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 |
---|
18 | state = 'western_australia' |
---|
19 | #scenario_name = 'case_a' |
---|
20 | scenario_name = 'alby_waves' |
---|
21 | scenario_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 | |
---|
31 | central_meridian = None # Central meridian for projection (optional) |
---|
32 | zone = 50 # UTM zone for projection |
---|
33 | |
---|
34 | event = '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) |
---|
40 | tide = 0 # Mean Sea Level = 0, |
---|
41 | # Highest Astronomical Tide = 0.6 m for Bunbury - CHECK THIS! |
---|
42 | alpha = 0.1 # smoothing parameter for mesh |
---|
43 | friction = 0.01 # manning's friction coefficient |
---|
44 | starttime = 0 # start time for simulation |
---|
45 | finaltime = 86400 # final time for simulation - 24 hours for TC Alby |
---|
46 | |
---|
47 | setup = '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 | |
---|
64 | output_comment = [setup, tide, event] # 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'] |
---|
79 | ascii_grid_filenames = ['Man_25m', # 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 | |
---|
83 | # Format for point is x,y,elevation (with header) |
---|
84 | point_filenames = [] |
---|
85 | ## ['MA-46893-SNDS_AHD.csv', |
---|
86 | ## 'MS0205HY_AHD.csv', |
---|
87 | ## 'MS0404_AHD.csv', |
---|
88 | ## 'YU0403HY_AHD.csv'] |
---|
89 | |
---|
90 | # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh |
---|
91 | # Used in build_elevation.py & run_model.py |
---|
92 | # Format for points easting,northing (no header) |
---|
93 | bounding_polygon_filename = 'bounding_polygon_ss.csv' |
---|
94 | bounding_polygon_maxarea = 50000 |
---|
95 | |
---|
96 | # INTERIOR REGIONS - for designing the mesh |
---|
97 | # Used in run_model.py |
---|
98 | # Format for points easting,northing (no header) |
---|
99 | interior_regions_data = [['intermediate.csv', 2500], |
---|
100 | ['area_of_interest.csv', 100], |
---|
101 | ['canals_nth_2.csv', 100], # Canal regions used to force mesh to fit canals |
---|
102 | ['canals_nth_3.csv', 100], |
---|
103 | ['canals_nth_4.csv', 100], |
---|
104 | ['canals_nth_5.csv', 100], |
---|
105 | ['canals_nth_6.csv', 100], |
---|
106 | ['canals_nth_7.csv', 100], |
---|
107 | ['canals_nth_8.csv', 100], |
---|
108 | ['canals_nth_9.csv', 100], |
---|
109 | ['canals_nth_10.csv', 100], |
---|
110 | ['canals_nth_11.csv', 100], |
---|
111 | ['canals_nth_12.csv', 100], |
---|
112 | ['canals_sth_1.csv', 100], |
---|
113 | ['canals_sth_2.csv', 100], |
---|
114 | ['canals_sth_3.csv', 100], |
---|
115 | ['canals_sth_4.csv', 100], |
---|
116 | ['canals_sth_5.csv', 100], |
---|
117 | ['canals_sth_6.csv', 100]] |
---|
118 | |
---|
119 | # LAND - used to set the initial stage/water to be offcoast only |
---|
120 | # Used in run_model.py. Format for points easting,northing (no header) |
---|
121 | land_initial_conditions_filename = [['initial_conditions.csv', 0]] |
---|
122 | |
---|
123 | # GEMS order filename |
---|
124 | # Format is index,northing, easting, elevation (without header) |
---|
125 | gems_order_filename = 'gems_boundary_order_thinned.csv' |
---|
126 | |
---|
127 | # GAUGES - for creating timeseries at a specific point |
---|
128 | # Used in get_timeseries.py. |
---|
129 | # Format easting,northing,name,elevation (with header) |
---|
130 | gauges_filename = 'gauges.csv' |
---|
131 | |
---|
132 | # BUILDINGS EXPOSURE - for identifying inundated houses |
---|
133 | # Used in run_building_inundation.py |
---|
134 | # Format latitude,longitude etc (geographic) |
---|
135 | building_exposure_filename = '' # from NEXIS |
---|
136 | |
---|
137 | # Landward bounding points |
---|
138 | # Format easting,northing (no header) |
---|
139 | landward_boundary_filename = 'landward_boundary.csv' |
---|
140 | |
---|
141 | ### MUX input filename. |
---|
142 | ### If a meta-file from EventSelection is used, set 'multi-mux' to True. |
---|
143 | ### If a single MUX stem filename (*.grd) is used, set 'multi-mux' to False. |
---|
144 | ####mux_input_filename = event_number # to be found in event_folder |
---|
145 | ## # (ie boundaries/event_number/) |
---|
146 | ####multi_mux = False |
---|
147 | ##mux_input_filename = 'event.list' |
---|
148 | ##multi_mux = True |
---|
149 | |
---|
150 | #------------------------------------------------------------------------------- |
---|
151 | # Clipping regions for export to asc and regions for clipping data |
---|
152 | # Final inundation maps should only be created in regions of the finest mesh |
---|
153 | #------------------------------------------------------------------------------- |
---|
154 | |
---|
155 | # Elevation clip box - used when there are multiple overlapping datasets and you want to use |
---|
156 | # one over another in an area of overlap |
---|
157 | elevation_clip_box_filename = 'elevation_clip_box.csv' |
---|
158 | |
---|
159 | ################################################################################ |
---|
160 | ################################################################################ |
---|
161 | #### NOTE: NOTHING WOULD NORMALLY CHANGE BELOW THIS POINT. #### |
---|
162 | ################################################################################ |
---|
163 | ################################################################################ |
---|
164 | |
---|
165 | # Get system user and host names. |
---|
166 | # These values can be used to distinguish between two similar runs by two |
---|
167 | # different users or runs by the same user on two different machines. |
---|
168 | user = get_user_name() |
---|
169 | host = get_host_name() |
---|
170 | |
---|
171 | # Environment variable names. |
---|
172 | # The inundation directory, not the data directory. |
---|
173 | ENV_INUNDATIONHOME = 'INUNDATIONHOME' |
---|
174 | |
---|
175 | #------------------------------------------------------------------------------- |
---|
176 | # Output Elevation Data |
---|
177 | #------------------------------------------------------------------------------- |
---|
178 | |
---|
179 | # Output filename for elevation |
---|
180 | # this is a combination of all the data generated in build_elevation.py |
---|
181 | combined_elevation_basename = scenario_name + '_combined_elevation' |
---|
182 | |
---|
183 | #------------------------------------------------------------------------------- |
---|
184 | # Directory Structure |
---|
185 | #------------------------------------------------------------------------------- |
---|
186 | |
---|
187 | # determines time for setting up output directories |
---|
188 | time = strftime('%Y%m%d_%H%M%S', localtime()) |
---|
189 | gtime = strftime('%Y%m%d_%H%M%S', gmtime()) |
---|
190 | build_time = time + '_build' |
---|
191 | run_time = time + '_run_' |
---|
192 | |
---|
193 | # create paths generated from environment variables. |
---|
194 | home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder |
---|
195 | |
---|
196 | # check various directories/files that must exist |
---|
197 | anuga_folder = join(home, state, scenario_folder, 'anuga') |
---|
198 | topographies_folder = join(anuga_folder, 'topographies') |
---|
199 | polygons_folder = join(anuga_folder, 'polygons') |
---|
200 | boundaries_folder = join(anuga_folder, 'boundaries') |
---|
201 | output_folder = join(anuga_folder, 'outputs') |
---|
202 | gauges_folder = join(anuga_folder, 'gauges') |
---|
203 | event_folder = join(boundaries_folder, str(event)) |
---|
204 | |
---|
205 | #------------------------------------------------------------------------------- |
---|
206 | # Location of input and output data |
---|
207 | #------------------------------------------------------------------------------- |
---|
208 | |
---|
209 | # Convert the user output_comment to a string for run_model.py |
---|
210 | output_comment = ('_'.join([str(x) for x in output_comment if x != user]) |
---|
211 | + '_' + user) |
---|
212 | |
---|
213 | # The absolute pathname of the all elevation, generated in build_elevation.py |
---|
214 | combined_elevation = join(topographies_folder, combined_elevation_basename) |
---|
215 | |
---|
216 | |
---|
217 | # The pathname for the GEMS order points |
---|
218 | if gems_order_filename: |
---|
219 | gems_order = join(boundaries_folder, gems_order_filename) |
---|
220 | |
---|
221 | # The absolute pathname for the landward points of the bounding polygon, |
---|
222 | # Used within run_model.py) |
---|
223 | if landward_boundary_filename: |
---|
224 | landward_boundary = join(boundaries_folder, landward_boundary_filename) |
---|
225 | |
---|
226 | # The absolute pathname for the .sts file, generated in build_boundary.py |
---|
227 | event_sts = join(event_folder, scenario_name) |
---|
228 | |
---|
229 | # The absolute pathname for the output folder names |
---|
230 | # Used for build_elevation.py |
---|
231 | output_build = join(output_folder, build_time) + '_' + str(user) |
---|
232 | # Used for run_model.py |
---|
233 | output_run = join(output_folder, run_time) + output_comment |
---|
234 | # Used by post processing |
---|
235 | output_run_time = join(output_run, scenario_name) |
---|
236 | |
---|
237 | # The absolute pathname of the mesh, generated in run_model.py |
---|
238 | meshes = join(output_run, scenario_name) + '.msh' |
---|
239 | |
---|
240 | # The absolute pathname for the gauges file |
---|
241 | # Used for get_timeseries.py |
---|
242 | if gauges_filename: |
---|
243 | gauges = join(gauges_folder, gauges_filename) |
---|
244 | |
---|
245 | # The absolute pathname for the building file |
---|
246 | # Used for run_building_inundation.py |
---|
247 | if building_exposure_filename: |
---|
248 | building_exposure = join(gauges_folder, building_exposure_filename) |
---|
249 | |
---|
250 | ### The absolute pathname for the image file |
---|
251 | ### Used for get_runup.py |
---|
252 | ##if images_filename: |
---|
253 | ## images = join(polygons_folder, images_filename) |
---|
254 | |
---|
255 | ### full path to where MUX files (or meta-files) live |
---|
256 | ##mux_input = join(event_folder, mux_input_filename) |
---|
257 | |
---|
258 | |
---|