Changeset 7247 for anuga_work
- Timestamp:
- Jun 23, 2009, 9:11:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/gold_coast_2009/project.py
r7089 r7247 34 34 event_number = int(sys.argv[1]) 35 35 else: 36 event_number = 51423 # the event number or the mux file name 37 38 event_number_list = [51469, 50863] # To piggy back multiple events 39 40 tide = 1.1 36 event_number = 51469 # the event number or the mux file name 37 38 event_number_list = [51469, 51392, 50863] # To piggy back multiple events 39 40 # Event Details: 41 # Event 1 (51469) 42 # Source Zone = New Hebrides 43 # Return Period = 10 000 years 44 # Wave height at 100 m = 2.3 m 45 # 46 # Event 2 (51392) 47 # Source Zone = New Hebrides 48 # Return Period = 5000 years 49 # Wave height at 100 m = 1.7 m 50 # 51 # Event 3 (50863) 52 # Source Zone = New Hebrides 53 # Return Period = 200 years 54 # Wave height at 100 m = 0.3 m 55 56 tide = 0 # Mean Sea Level = 0, 57 # Highest Astronomical Tide = 1.1 m for Gold Coast 41 58 alpha = 0.1 # smoothing parameter for mesh 42 friction =0.01 # manning's friction coefficient43 starttime =0 # start time for simulation44 finaltime =80000 # final time for simulation59 friction = 0.01 # manning's friction coefficient 60 starttime = 0 # start time for simulation 61 finaltime = 80000 # final time for simulation 45 62 46 63 setup = 'final' # This can be one of three values … … 69 86 # Used in build_elevation.py 70 87 # Format for ascii grids, as produced in ArcGIS + a projection file 71 ascii_grid_filenames = ['GC_DTM_30m', # Supplied DTM 72 'grid250m'] # Supplemented data from 2005 250m grid 88 ascii_grid_filenames = [] 73 89 74 90 # Format for point is x,y,elevation (with header) 75 91 point_filenames = [] 76 77 ### Add csv header list to all files in point_filenames78 ##headerlist = ['x', 'y', 'elevation']79 ##for f in point_filenames:80 ## add_csv_header(join(topographies_folder, f), headerlist)81 92 82 93 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh 83 94 # Used in build_elevation.py 84 95 # Format for points easting,northing (no header) 85 bounding_polygon_filename = 'bounding_polygon _sml.csv'96 bounding_polygon_filename = 'bounding_polygon.csv' 86 97 bounding_polygon_maxarea = 125000 87 98 … … 94 105 # LAND - used to set the initial stage/water to be offcoast only 95 106 # Used in run_model.py. Format for points easting,northing (no header) 96 land_initial_conditions_filename = [['initial_conditions _sml.csv', 0]]107 land_initial_conditions_filename = [['initial_conditions.csv', 0]] 97 108 98 109 # GAUGES - for creating timeseries at a specific point … … 104 115 # Used in run_building_inundation.py 105 116 # Format latitude,longitude etc (geographic) 106 building_exposure_filename = ' gold_coast_res_clip.csv' # from NEXIS117 building_exposure_filename = '' # from NEXIS 107 118 108 119 # AREA OF IMAGES - Extent of each image to find out highest runup … … 119 130 # Thinned ordering file from Hazard Map (geographic) 120 131 # Format is index,latitude,longitude (with header) 121 urs_order_filename = 'urs_order _sml.csv'132 urs_order_filename = 'urs_order.csv' 122 133 123 134 # Landward bounding points 124 135 # Format easting,northing (no header) 125 landward_boundary_filename = 'landward_boundary _sml.csv'136 landward_boundary_filename = 'landward_boundary.csv' 126 137 127 138 # MUX input filename. … … 139 150 #------------------------------------------------------------------------------- 140 151 141 # ASCII export grid for Gold Coast 142 xminGold_Coast = 541500 143 xmaxGold_Coast = 546000 144 yminGold_Coast = 6893500 145 ymaxGold_Coast = 6898500 146 147 # ASCII export grid for dune study 148 xminDune = 536710 149 xmaxDune = 556150 150 yminDune = 6881125 151 ymaxDune = 6926860 152 153 152 154 153 155 ################################################################################ … … 258 260 mux_input = join(event_folder, mux_input_filename) 259 261 262
Note: See TracChangeset
for help on using the changeset viewer.