Changeset 6021
- Timestamp:
- Nov 28, 2008, 11:38:37 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/carnarvon/project.py
r5828 r6021 45 45 tide = 0 #0.6 46 46 #event_number = 27255 # Java 9.3 worst case for Perth 47 event_number = 68693 # Sumatra 9.248 #event_number = 27283 # Java 9.3 original47 #event_number = 68693 # Sumatra 9.2 48 event_number = 27283 # Java 9.3 original 49 49 alpha = 0.1 # smoothing parameter for mesh 50 50 friction=0.01 # manning's friction coefficient 51 51 starttime=0 52 finaltime= 1000 # final time for simulation52 finaltime=80000 # final time for simulation 53 53 54 54 setup='final' # Final can be replaced with trial or basic. … … 86 86 # onshore data: format ascii grid with accompanying projection file 87 87 onshore_name = 'dem_onshore' 88 # coastline: format x,y,elevation (with title)89 coast_name = 'coastline.txt'90 88 # bathymetry: format x,y,elevation (with title) 91 offshore_name = 'Shark_Bay_Clip.txt' 92 offshore_name1 = 'XYAHD_Clip.txt' 93 offshore_name2 = 'DPI_data.txt' 89 offshore_name = 'carnarvon_data.txt' 90 offshore_name1 = 'makeup.txt' 91 #grids made for aoi and aos as anuga interpretation was bad 92 topo_aoi = 'topo_20m_aoi' 93 topo_aos = 'topo_50m_aos' 94 94 95 95 # gauges - used in get_timeseries.py … … 131 131 # where the input data sits 132 132 onshore_in_dir_name = topographies_in_dir + onshore_name 133 coast_in_dir_name = topographies_in_dir + coast_name134 133 offshore_in_dir_name = topographies_in_dir + offshore_name 135 134 offshore_in_dir_name1 = topographies_in_dir + offshore_name1 136 offshore_in_dir_name2 = topographies_in_dir + offshore_name2 135 offshore_in_dir_aoi = topographies_in_dir + topo_aoi 136 offshore_in_dir_aos = topographies_in_dir + topo_aos 137 137 138 138 # where the output data sits 139 139 onshore_dir_name = topographies_dir + onshore_name 140 coast_dir_name = topographies_dir + coast_name141 140 offshore_dir_name = topographies_dir + offshore_name 142 141 offshore_dir_name1 = topographies_dir + offshore_name1 143 offshore_dir_name2 = topographies_dir + offshore_name2 142 offshore_dir_aoi = topographies_dir + topo_aoi 143 offshore_dir_aos = topographies_dir + topo_aos 144 144 145 145 # where the combined elevation file sits … … 179 179 poly_island2=read_polygon(polygons_dir +'land_initial_condition_dorne.csv') 180 180 poly_ocean=read_polygon(polygons_dir +'ocean_initial_condition.csv') 181 poly_aos_extract = read_polygon(polygons_dir+'extract_aos.csv') 181 182 182 183 # Initial bounding polygon for data clipping
Note: See TracChangeset
for help on using the changeset viewer.