Changeset 6967
- Timestamp:
- May 5, 2009, 3:04:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/bamaga/project.py
r6936 r6967 17 17 # Note, the user needs to set up the directory system accordingly 18 18 state = 'australia_ph2' 19 scenario_name = ' bamaga'19 scenario_name = 'gulf' 20 20 21 21 #------------------------------------------------------------------------------- … … 26 26 # One or all can be changed each time the run_model script is executed 27 27 28 central_meridian = 1 43.5# Central meridian for projection (optional)28 central_meridian = 139.0 # 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 event_number = 31975 # the event number or the mux file name 35 36 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 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 37 38 38 39 tide = 0 # difference between MSL and HAT … … 40 41 friction=0.01 # manning's friction coefficient 41 42 starttime=0 # start time for simulation 42 finaltime= 60000 # final time for simulation43 setup = ' final' # This can be one of three values43 finaltime=1000 # final time for simulation 44 setup = 'trial' # This can be one of three values 44 45 # trial - coarsest mesh, fast 45 46 # basic - coarse mesh … … 47 48 48 49 # index is only used when wave = Tb 49 index = 2000# index from the PTHA - Y2000 0.257m50 index = 1914 # index from the PTHA - Y2000 0.257m 50 51 wave = 'Tb' # Bf (sts wave) Tb (index wave) 51 52 … … 78 79 # Used in build_elevation.py 79 80 # Format for ascii grids, as produced in ArcGIS + a projection file 80 ascii_grid_filenames = ['g rid250m_pro'] # 250m grid 200581 ascii_grid_filenames = ['gulf_large'] # 250m grid 2005 81 82 82 83 # Format for points is x,y,elevation (with header) … … 105 106 # Used in build_elevation.py 106 107 # Format for points: easting,northing (no header) 107 bounding_polygon_filename = 'bounding_polygon .csv'108 bounding_polygon_filename = 'bounding_polygon_large.csv' 108 109 bounding_polygon_maxarea = 125000 109 110 … … 142 143 # Thinned ordering file from Hazard Map (geographic) 143 144 # Format is index,latitude,longitude (with header) 144 urs_order_filename = 'urs_order_simple .csv'145 urs_order_filename = 'urs_order_simple_large.csv' 145 146 146 147 # Landward bounding points 147 148 # Format easting,northing (no header) 148 landward_boundary_filename = 'landward_boundary .csv'149 landward_boundary_filename = 'landward_boundary_large.csv' 149 150 150 151 # MUX input filename.
Note: See TracChangeset
for help on using the changeset viewer.