Changeset 6856 for anuga_work/production/australia_ph2/carnarvon
- Timestamp:
- Apr 21, 2009, 2:42:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/carnarvon/project.py
r6794 r6856 28 28 central_meridian = 113.5 # Central meridian for projection (optional) 29 29 zone = None 30 31 30 import sys 32 31 if len(sys.argv) > 1: … … 36 35 37 36 event_number_list = [27285, 68754, 70881] # To piggy back multiple events 38 # events: 27285 (java), 68794 (sumatra), 70375 (sumba)39 37 40 38 tide = 0 # difference between MSL and HAT … … 42 40 friction=0.01 # manning's friction coefficient 43 41 starttime=0 # start time for simulation 44 finaltime=1000 #60000# final time for simulation42 finaltime=1000 # final time for simulation 45 43 setup = 'trial' # This can be one of three values 46 44 # trial - coarsest mesh, fast … … 80 78 # Used in build_elevation.py 81 79 # Format for ascii grids, as produced in ArcGIS + a projection file 82 ascii_grid_filenames = ['grid250m_simple'] 80 ascii_grid_filenames = ['grid250m_simple'] # 250m grid 2005 83 81 84 82 # Format for points is x,y,elevation (with header) 85 point_filenames = [] 83 point_filenames = [] 86 84 87 85 ### Add csv header list to all files in point_filenames … … 221 219 222 220 # The absolute pathname of the all elevation, generated in build_elevation.py 223 combined_elevation = join(topographies_folder, combined_elevation_basename) 221 combined_elevation = join(topographies_folder, combined_elevation_basename)+'_simple' 224 222 225 223 # The absolute pathname of the mesh, generated in run_model.py
Note: See TracChangeset
for help on using the changeset viewer.