Changeset 7254
- Timestamp:
- Jun 23, 2009, 6:09:12 PM (15 years ago)
- Location:
- anuga_work/production
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/Broome_2009/project.py
r7209 r7254 31 31 friction=0.01 # manning's friction coefficient 32 32 starttime=0 # start time for simulation 33 finaltime= 80000 # final time for simulation33 finaltime=1000 # final time for simulation 34 34 35 35 setup = 'final' # This can be one of three values … … 64 64 'other_topo_250m', 65 65 'south_250m'] 66 point_filenames = ['Broome_coastline.txt','Broome_Bathymetry .txt']66 point_filenames = ['Broome_coastline.txt','Broome_Bathymetry_exWADPI.txt'] 67 67 68 68 ### Add csv header list to all files in point_filenames … … 80 80 # Used in run_model.py 81 81 # Format for points easting,northing (no header) 82 interior_regions_data = [['Shallow_Water_large_MH.csv', 10000],82 interior_regions_data = [['Shallow_Water_large_MH.csv', 5000], 83 83 ['AoS_MH.csv', 800], 84 84 ['AoI_MH.csv', 500], -
anuga_work/production/exmouth_2009/project.py
r7238 r7254 8 8 from time import localtime, strftime, gmtime 9 9 from os.path import join, exists 10 from anuga.lib.add_csv_header.add_csv_header import add_csv_header 10 11 11 12 #------------------------------------------------------------------------------- … … 34 35 finaltime=1000 # final time for simulation 35 36 36 setup = ' final' # This can be one of three values37 setup = 'trial' # This can be one of three values 37 38 # trial - coarsest mesh, fast 38 39 # basic - coarse mesh … … 59 60 # Used in build_elevation.py 60 61 # Format for ascii grids, as produced in ArcGIS + a projection file 61 ascii_grid_filenames = ['extract_dli', 62 'extract_dted'] 62 ##ascii_grid_filenames = ['extract_dli', 63 ## 'extract_dted'] 64 ascii_grid_filenames = [] 63 65 64 66 # Format for point is x,y,elevation (with header) … … 66 68 'Exmouth.txt', 67 69 'extract_dgapcs100.txt', 68 'extract_rivoli.txt'] 70 'extract_rivoli.txt', 71 'extract_dli.txt', 72 'extract_dted.txt'] 69 73 70 74 ### Add csv header list to all files in point_filenames … … 76 80 # Used in build_elevation.py 77 81 # Format for points easting,northing (no header) 78 bounding_polygon_filename = 'poly_all .csv'82 bounding_polygon_filename = 'poly_all_MH.csv' 79 83 bounding_polygon_maxarea = 100000 80 84 … … 196 200 event_folder = join(boundaries_folder, str(event_number)) 197 201 202 ### Add csv header list to all files in point_filenames 203 ##headerlist = ['x', 'y', 'elevation'] 204 ##for f in point_filenames: 205 ## add_csv_header(join(topographies_folder, f), headerlist) 206 198 207 # MUX data files 199 208 # Directory containing the MUX data files to be used with EventSelection.
Note: See TracChangeset
for help on using the changeset viewer.