Changeset 3795
- Timestamp:
- Oct 16, 2006, 3:59:04 PM (18 years ago)
- Location:
- anuga_work/production/hobart_2006
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/hobart_2006/project.py
r3779 r3795 192 192 poly_hobart3 = read_polygon(polygondir+'Hob_poly3.csv') 193 193 poly_hobart4 = read_polygon(polygondir+'Hob_poly4.csv') 194 poly_hobart5 = read_polygon(polygondir+'new_interior_region.csv') 194 195 195 196 plot_polygons([polyAll, poly_hobart1,poly_hobart2,poly_hobart3,poly_hobart4],'boundingpoly2',verbose=False) 196 197 print 'Area of interior regions', (polygon_area(poly_hobart1)+\ 197 polygon_area(poly_hobart2)+polygon_area(poly_hobart3)+polygon_area(poly_hobart4))/1000000. 198 polygon_area(poly_hobart2)+polygon_area(poly_hobart3)+\ 199 polygon_area(poly_hobart4)+polygon_area(poly_hobart5))/1000000. 198 200 199 201 print 'Area of original 25m data clipping', (polygon_area(hob_clip)+polygon_area(bruny_clip))/1000000. -
anuga_work/production/hobart_2006/run_hobart_clip_refine.py
r3779 r3795 174 174 175 175 # use 75 for onshore components (12.5m DEM) 176 hobart_res = 50000177 b runy_res = 50000176 hobart_res = 7500 177 bathy_res = 25000 178 178 interior_regions = [[project.poly_hobart1, hobart_res], 179 179 [project.poly_hobart2, hobart_res], 180 180 [project.poly_hobart3, hobart_res], 181 [project.poly_hobart 4, hobart_res]]181 [project.poly_hobart5, bathy_res]] 182 182 183 183 print 'number of interior regions', len(interior_regions) -
anuga_work/production/hobart_2006/run_hobart_usepts.py
r3732 r3795 146 146 147 147 # use 75 for onshore components (12.5m DEM) 148 hobart_res = 50000149 b runy_res = 50000148 hobart_res = 7500 149 bathy_res = 50000 150 150 interior_regions = [[project.poly_hobart1, hobart_res], 151 151 [project.poly_hobart2, hobart_res], 152 152 [project.poly_hobart3, hobart_res], 153 [project.poly_hobart 4, hobart_res]]153 [project.poly_hobart5, bathy_res]] 154 154 155 155 print 'number of interior regions', len(interior_regions) … … 164 164 'e12': [12], 'e13': [13], 'e14': [14], 165 165 'e15': [15]}, 166 'maximum_triangle_area': 250000,166 'maximum_triangle_area': 500000, 167 167 'filename': meshname, 168 168 'interior_regions': interior_regions},
Note: See TracChangeset
for help on using the changeset viewer.