Changeset 6980
- Timestamp:
- May 5, 2009, 7:55:49 PM (15 years ago)
- Location:
- anuga_work/production/australia_ph2/torres
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/torres/project.py
r6978 r6980 41 41 friction=0.01 # manning's friction coefficient 42 42 starttime=0 # start time for simulation 43 finaltime= 1000 # final time for simulation44 setup = ' trial' # This can be one of three values43 finaltime=80000 # final time for simulation 44 setup = 'final' # This can be one of three values 45 45 # trial - coarsest mesh, fast 46 46 # basic - coarse mesh … … 79 79 # Used in build_elevation.py 80 80 # Format for ascii grids, as produced in ArcGIS + a projection file 81 ascii_grid_filenames = ['grid250 _pro'] # 250m grid 200581 ascii_grid_filenames = ['grid250m_pro'] # 250m grid 2005 82 82 83 83 # Format for points is x,y,elevation (with header) -
anuga_work/production/australia_ph2/torres/run_model.py
r6978 r6980 93 93 # Boundary tags refer to project.landward_boundary 94 94 # 4 points equals 5 segments start at N 95 boundary_tags={'back': [num_ocean_segments+ 3],95 boundary_tags={'back': [num_ocean_segments+1], 96 96 'side': [num_ocean_segments, 97 num_ocean_segments+1,98 97 num_ocean_segments+2, 98 num_ocean_segments+3, 99 99 num_ocean_segments+4], 100 100 'ocean': range(num_ocean_segments)} … … 105 105 print 'boundary tags', boundary_tags 106 106 107 import sys;sys.exit()108 107 # Build mesh and domain 109 108 domain = create_domain_from_regions(bounding_polygon_sts,
Note: See TracChangeset
for help on using the changeset viewer.