- Timestamp:
- Feb 23, 2009, 4:32:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/eucla_motel/project.py
r6384 r6385 16 16 # this section needs to be updated to reflect the modelled community. 17 17 # Note, the user needs to set up the directory system accordingly 18 state = ' western_australia'19 scenario_name = ' busselton'20 scenario_folder = 'busselton_tsunami_scenario'18 state = 'australia_ph2' 19 scenario_name = 'eucla_motel' 20 scenario_folder = scenario_name 21 21 22 22 #------------------------------------------------------------------------------- … … 27 27 # One or all can be changed each time the run_model script is executed 28 28 tide = 0 # difference between MSL and HAT 29 zone = 5 0# specify zone of model30 event_number = 27197# the event number or the mux file name29 zone = 52 # specify zone of model 30 event_number = 65371 # the event number or the mux file name 31 31 alpha = 0.1 # smoothing parameter for mesh 32 32 friction=0.01 # manning's friction coefficient 33 33 starttime=0 # start time for simulation 34 finaltime= 80000# final time for simulation35 36 setup = ' final' # This can be one of three values34 finaltime=1000 # final time for simulation 35 36 setup = 'trial' # This can be one of three values 37 37 # trial - coarsest mesh, fast 38 38 # basic - coarse mesh … … 59 59 # Used in build_elevation.py 60 60 # Format for ascii grids, as produced in ArcGIS + a projection file 61 ascii_grid_filenames = ['busselton_v2', # Topo 62 'grid_250m_clip'] # Busselton Topo 61 ascii_grid_filenames = [] # 250m grid 2005 63 62 64 63 # Format for point is x,y,elevation (with header) 65 point_filenames = ['Busselton_Contour0.txt', # Coastline 66 'Busselton_BeachSurvey.txt', # Beach survey 67 'Busselton_NavyFinal.txt', # Bathymetry 68 'Busselton_Chart.txt', # Bathymetry Charts 69 'Busselton_Digitised.txt', # Digitised Fairsheet 70 'Busselton_250m.txt', # 250m 71 'Bunbury_TIN.txt', # Bunbury aoi TIN'd in ArcGIS 72 'Busselton_TIN.txt', # Busselton aoi TIN'd in ArcGIS 73 'XYAHD_clip.txt'] # To extend boundary 64 point_filenames = ['grid250m_pts.txt'] # 250m grid 2005 74 65 75 66 ### Add csv header list to all files in point_filenames … … 87 78 # Used in run_model.py 88 79 # Format for points easting,northing (no header) 89 interior_regions_data = [['busselton_1km.csv', 500], 90 ['bunbury_1km.csv', 500], 91 ['busselton_2km.csv', 10000], 92 ['bunbury_2km.csv', 10000], 93 ['island1.csv', 10000], 94 ['island2.csv', 10000], 95 ['coast_5km_d20m.csv', 40000]] 80 interior_regions_data = [] 96 81 97 82 # LAND - used to set the initial stage/water to be offcoast only 98 83 # Used in run_model.py. Format for points easting,northing (no header) 99 land_initial_conditions_filename = [['initial_condition_extend.csv', 0], 100 ['initial_condition_marina.csv', 0]] 84 land_initial_conditions_filename = [] 101 85 102 86 # GAUGES - for creating timeseries at a specific point … … 117 101 # Thinned ordering file from Hazard Map (geographic) 118 102 # Format is index,latitude,longitude (with header) 119 urs_order_filename = ' thinned_boundary_ordering_extend.csv'103 urs_order_filename = 'urs_order.csv' 120 104 121 105 # Landward bounding points 122 106 # Format easting,northing (no header) 123 landward_boundary_filename = 'landward_boundary _extend.csv'107 landward_boundary_filename = 'landward_boundary.csv' 124 108 125 109 # MUX input filename.
Note: See TracChangeset
for help on using the changeset viewer.