Changeset 6511 for anuga_work/production/australia_ph2/LHI
- Timestamp:
- Mar 13, 2009, 1:25:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/LHI/run_model.py
r6502 r6511 80 80 # Reading the landward defined points, this incorporates the original clipping 81 81 # polygon minus the 100m contour 82 ##landward_boundary = read_polygon(project.landward_boundary)82 landward_boundary = read_polygon(project.landward_boundary) 83 83 84 84 # Combine sts polyline with landward points 85 bounding_polygon_sts = event_sts #+ landward_boundary85 bounding_polygon_sts = event_sts + landward_boundary 86 86 87 87 # Number of boundary segments 88 88 num_ocean_segments = len(event_sts) - 1 89 89 # Number of landward_boundary points 90 num_land_points = 0 #file_length(project.landward_boundary)90 num_land_points = file_length(project.landward_boundary) 91 91 92 92 # Boundary tags refer to project.landward_boundary … … 151 151 domain, mean_stage=project.tide, 152 152 time_thinning=1, 153 default_boundary= Bd,153 default_boundary=Dirichlet_boundary([0, 0, 0]), 154 154 boundary_polygon=bounding_polygon_sts, 155 155 use_cache=True, … … 160 160 161 161 elif project.wave == 'Tb': 162 Tb = Time_boundary(domain,f,default_boundary=Bd, 163 verbose=True) 162 Tb = Time_boundary(domain,f,default_boundary=Bd ) 164 163 165 164 domain.set_boundary({'back': Br,
Note: See TracChangeset
for help on using the changeset viewer.