Changeset 6328
- Timestamp:
- Feb 13, 2009, 9:37:53 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/standardised_version/run_model.py
r6324 r6328 32 32 from anuga.interface import create_sts_boundary 33 33 from anuga.interface import csv2building_polygons 34 from file_length import file_length 34 35 35 36 from anuga.shallow_water.data_manager import start_screen_catcher … … 78 79 # Number of boundary segments 79 80 N = len(event_sts) - 1 81 # Number of landward_boundary points 82 M = file_length(project.landward_boundary) 80 83 81 84 # Boundary tags refer to project.landward_boundary 82 85 # 4 points equals 5 segments start at N 83 boundary_tags={'back': [N+1, N+2, N+3, N+4, N+5, N+6, N+7],84 'side': [N, N+8],86 boundary_tags={'back': range(N+1,N+M), 87 'side': [N,N+M], 85 88 'ocean': range(N)} 86 89
Note: See TracChangeset
for help on using the changeset viewer.