source: anuga_work/production/australia_ph2/perth/project.py @ 6549

Last change on this file since 6549 was 6549, checked in by myall, 15 years ago

running darwin and wyndham.
split perth and albany; running as possible

File size: 8.9 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 = 'australia_ph2'
19scenario_name = 'perth'
20scenario_folder = scenario_name
21
22#-------------------------------------------------------------------------------
23# Initial Conditions
24#-------------------------------------------------------------------------------
25
26# Model specific parameters.
27# One or all can be changed each time the run_model script is executed
28tide = 0                # difference between MSL and HAT
29zone = 50               # specify zone of model
30event_number = 27240    # the event number or the mux file name
31# events: 11126 (andaman), 27240 (java), 64454 (sandwich)
32# 68840 (sumatra), 70903 (sumba_normal)
33# other events: 13215 (arakan),
34alpha = 0.1             # smoothing parameter for mesh
35friction=0.01           # manning's friction coefficient
36starttime=0             # start time for simulation
37finaltime=80000          # final time for simulation
38
39# index is only used when wave = Tb
40index = 1039            # index from the PTHA - 1 in 2000 yr 0.5357m
41wave = 'Bf'             # Bf (sts wave) Tb (index wave)
42
43setup = 'final'         # This can be one of three values
44                        #    trial - coarsest mesh, fast
45                        #    basic - coarse mesh
46                        #    final - fine mesh, slowest
47
48#-------------------------------------------------------------------------------
49# Output filename
50#
51# Your output filename should be unique between different runs on different data.
52# The list of items below will be used to create a file in your output directory.
53# Your user name and time+date will be automatically added.  For example,
54#     [setup, tide, event_number]
55# will result in a filename like
56#     20090212_091046_run_final_0_27283_rwilson
57#-------------------------------------------------------------------------------
58
59output_comment = [setup, tide, event_number, index, wave]
60
61#-------------------------------------------------------------------------------
62# Input Data
63#-------------------------------------------------------------------------------
64
65# ELEVATION DATA
66# Used in build_elevation.py
67# Format for ascii grids, as produced in ArcGIS + a projection file
68ascii_grid_filenames = [] # 250m grid 2005
69
70# Format for point is x,y,elevation (with header)
71point_filenames = ['grid_250m_small.txt'] # 250m grid 2005
72
73### Add csv header list to all files in point_filenames
74##headerlist = ['x', 'y', 'elevation']
75##for f in point_filenames:
76##    add_csv_header(join(topographies_folder, f), headerlist)
77
78    # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh
79# Used in build_elevation.py
80# Format for points easting,northing (no header)
81bounding_polygon_filename = 'bounding_polygon.csv'
82bounding_polygon_maxarea = 100000
83
84# INTERIOR REGIONS -  for designing the mesh
85# Used in run_model.py
86# Format for points easting,northing (no header)                   
87interior_regions_data = []
88
89# LAND - used to set the initial stage/water to be offcoast only
90# Used in run_model.py.  Format for points easting,northing (no header)
91land_initial_conditions_filename = []
92
93# GAUGES - for creating timeseries at a specific point
94# Used in get_timeseries.py. 
95# Format easting,northing,name,elevation (with header)
96gauges_filename = 'gauges.csv'
97
98# BUILDINGS EXPOSURE - for identifying inundated houses
99# Used in run_building_inundation.py
100# Format latitude,longitude etc (geographic)
101building_exposure_filename = 'busselton_res_clip.csv' # from NEXIS
102
103# BOUNDING POLYGON - used in build_boundary.py and run_model.py respectively
104# NOTE: when files are put together the points must be in sequence
105# For ease go clockwise!
106# Check the run_model.py for boundary_tags
107
108# Thinned ordering file from Hazard Map (geographic)
109# Format is index,latitude,longitude (with header)
110urs_order_filename = 'urs_order.csv'
111
112# Landward bounding points
113# Format easting,northing (no header)
114landward_boundary_filename = 'landward_boundary.csv'
115
116# MUX input filename.
117# If a meta-file from EventSelection is used, set 'multi-mux' to True.
118# If a single MUX stem filename (*.grd) is used, set 'multi-mux' to False.
119##mux_input_filename = event_number # to be found in event_folder
120                                    # (ie boundaries/event_number/)
121##multi_mux = False
122mux_input_filename = 'event.list'
123multi_mux = True
124
125
126################################################################################
127################################################################################
128####         NOTE: NOTHING WOULD NORMALLY CHANGE BELOW THIS POINT.          ####
129################################################################################
130################################################################################
131
132# Get system user and host names.
133# These values can be used to distinguish between two similar runs by two
134# different users or runs by the same user on two different machines.
135user = get_user_name()
136host = get_host_name()
137
138# Environment variable names.
139# The inundation directory, not the data directory.
140ENV_INUNDATIONHOME = 'INUNDATIONHOME'
141
142# Path to MUX data
143ENV_MUXHOME = 'MUXHOME'
144
145#-------------------------------------------------------------------------------
146# Output Elevation Data
147#-------------------------------------------------------------------------------
148
149# Output filename for elevation
150# this is a combination of all the data generated in build_elevation.py
151combined_elevation_basename = scenario_name + '_combined_elevation'
152
153#-------------------------------------------------------------------------------
154# Directory Structure
155#-------------------------------------------------------------------------------
156
157# determines time for setting up output directories
158time = strftime('%Y%m%d_%H%M%S', localtime()) 
159gtime = strftime('%Y%m%d_%H%M%S', gmtime()) 
160build_time = time + '_build'
161run_time = time + '_run_'
162
163# create paths generated from environment variables.
164home = join(os.getenv(ENV_INUNDATIONHOME), 'data') # Absolute path for data folder
165muxhome = os.getenv(ENV_MUXHOME)
166   
167# check various directories/files that must exist
168anuga_folder = join(home, state, scenario_folder, 'anuga')
169topographies_folder = join(anuga_folder, 'topographies')
170polygons_folder = join(anuga_folder, 'polygons')
171boundaries_folder = join(anuga_folder, 'boundaries')
172output_folder = join(anuga_folder, 'outputs')
173gauges_folder = join(anuga_folder, 'gauges')
174meshes_folder = join(anuga_folder, 'meshes')
175event_folder = join(boundaries_folder, str(event_number))
176
177# MUX data files
178# Directory containing the MUX data files to be used with EventSelection.
179mux_data_folder = join(muxhome, 'mux')
180
181#-------------------------------------------------------------------------------
182# Location of input and output data
183#-------------------------------------------------------------------------------
184
185# Convert the user output_comment to a string for run_model.py
186output_comment = ('_'.join([str(x) for x in output_comment if x != user])
187                  + '_' + user)
188
189# The absolute pathname of the all elevation, generated in build_elevation.py
190combined_elevation = join(topographies_folder, combined_elevation_basename)
191
192# The absolute pathname of the mesh, generated in run_model.py
193meshes = join(meshes_folder, scenario_name) + '.msh'
194
195# The pathname for the urs order points, used within build_urs_boundary.py
196urs_order = join(boundaries_folder, urs_order_filename)
197
198# The absolute pathname for the landward points of the bounding polygon,
199# Used within run_model.py)
200landward_boundary = join(boundaries_folder, landward_boundary_filename)
201
202# The absolute pathname for the .sts file, generated in build_boundary.py
203event_sts = join(event_folder, scenario_name)
204
205# The absolute pathname for the output folder names
206# Used for build_elevation.py
207output_build = join(output_folder, build_time) + '_' + str(user) 
208# Used for run_model.py
209output_run = join(output_folder, run_time) + output_comment
210# Used by post processing
211output_run_time = join(output_run, scenario_name) 
212
213# The absolute pathname for the gauges file
214# Used for get_timeseries.py
215gauges = join(gauges_folder, gauges_filename)       
216
217# The absolute pathname for the building file
218# Used for run_building_inundation.py
219building_exposure = join(gauges_folder, building_exposure_filename)
220
221# full path to where MUX files (or meta-files) live
222mux_input = join(event_folder, mux_input_filename)
223
224# sts gauge with desired index number - used for wave 'Tb'
225boundary_csv = join(event_folder, 'sts_gauge_' + str(index) +'.csv')
Note: See TracBrowser for help on using the repository browser.