Changeset 6972
- Timestamp:
- May 5, 2009, 6:12:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/bamaga/project.py
r6967 r6972 17 17 # Note, the user needs to set up the directory system accordingly 18 18 state = 'australia_ph2' 19 scenario_name = ' gulf'20 21 #------------------------------------------------------------------------------- 22 # Initial Conditions 19 scenario_name = 'bamaga' 20 21 #------------------------------------------------------------------------------- 22 # Initial Conditions 23 23 #------------------------------------------------------------------------------- 24 24 … … 26 26 # One or all can be changed each time the run_model script is executed 27 27 28 central_meridian = 1 39.0# Central meridian for projection (optional)28 central_meridian = 143.5 # Central meridian for projection (optional) 29 29 zone = None 30 ##import sys 31 ##if len(sys.argv) > 1: 32 ## event_number = int(sys.argv[1]) 33 ##else: 34 35 event_number = 64977 #71114 # the event number or the mux file name 36 37 #event_number_list = [31975, 51390, 63735] # To piggy back multiple events 30 import sys 31 if len(sys.argv) > 1: 32 event_number = int(sys.argv[1]) 33 else: 34 event_number = 31975 # the event number or the mux file name 35 36 event_number_list = [31975, 51390, 63735] # To piggy back multiple events 38 37 39 38 tide = 0 # difference between MSL and HAT 40 39 alpha = 0.1 # smoothing parameter for mesh 41 friction =0.01 # manning's friction coefficient40 friction = 0.01 # manning's friction coefficient 42 41 starttime=0 # start time for simulation 43 finaltime= 1000 # final time for simulation44 setup = ' trial' # This can be one of three values42 finaltime=60000 # final time for simulation 43 setup = 'final' # This can be one of three values 45 44 # trial - coarsest mesh, fast 46 45 # basic - coarse mesh … … 48 47 49 48 # index is only used when wave = Tb 50 index = 1914# index from the PTHA - Y2000 0.257m49 index = 2000 # index from the PTHA - Y2000 0.257m 51 50 wave = 'Tb' # Bf (sts wave) Tb (index wave) 52 51 … … 79 78 # Used in build_elevation.py 80 79 # Format for ascii grids, as produced in ArcGIS + a projection file 81 ascii_grid_filenames = ['g ulf_large'] # 250m grid 200580 ascii_grid_filenames = ['grid250m_pro'] # 250m grid 2005 82 81 83 82 # Format for points is x,y,elevation (with header) … … 106 105 # Used in build_elevation.py 107 106 # Format for points: easting,northing (no header) 108 bounding_polygon_filename = 'bounding_polygon _large.csv'107 bounding_polygon_filename = 'bounding_polygon.csv' 109 108 bounding_polygon_maxarea = 125000 110 109 … … 143 142 # Thinned ordering file from Hazard Map (geographic) 144 143 # Format is index,latitude,longitude (with header) 145 urs_order_filename = 'urs_order_simple _large.csv'144 urs_order_filename = 'urs_order_simple.csv' 146 145 147 146 # Landward bounding points 148 147 # Format easting,northing (no header) 149 landward_boundary_filename = 'landward_boundary _large.csv'148 landward_boundary_filename = 'landward_boundary.csv' 150 149 151 150 # MUX input filename.
Note: See TracChangeset
for help on using the changeset viewer.