Changeset 6334
- Timestamp:
- Feb 13, 2009, 1:48:31 PM (16 years ago)
- Location:
- anuga_work/production/patong
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/patong/project.py
r6322 r6334 175 175 # Initial bounding polygon for data clipping 176 176 poly_all = read_polygon(polygons_dir+'bounding_polygon.csv') 177 res_poly_all = 1 50000*res_factor177 res_poly_all = 160000*res_factor 178 178 179 179 180 180 # Inundation area 181 181 poly_ia = read_polygon(polygons_dir+'inundation_area.csv') 182 res_ia = 59*res_factor182 res_ia = 75*res_factor 183 183 poly_saddle = read_polygon(polygons_dir+'saddle_10m.txt') 184 184 185 185 # Area of Interest 1 elevation from -10m to 20m 186 186 poly_aoi1 = read_polygon(polygons_dir+'aoi.csv') 187 res_aoi1 = 150*res_factor187 res_aoi1 = 200*res_factor 188 188 189 189 # Area of Significance 1 elevation from -20m to a 200m buffer of the 20m contour 190 190 poly_aos1 = read_polygon(polygons_dir+'aos.csv') 191 res_aos1 = 700*res_factor191 res_aos1 = 900*res_factor 192 192 193 193 194 194 # Area of Shallow water and coastal land that needs a finer res than 1000000 195 195 poly_sw = read_polygon(polygons_dir+'sw.csv') 196 res_sw = 5000*res_factor196 res_sw = 7000*res_factor 197 197 198 198 -
anuga_work/production/patong/run_patong.py
r6323 r6334 204 204 t0 = time.time() 205 205 206 # Skip over the first 5000 seconds207 for t in domain.evolve(yieldstep= 500,208 finaltime= 5000):206 # Skip over the first 6000 seconds 207 for t in domain.evolve(yieldstep=2000, 208 finaltime=6000): 209 209 print domain.timestepping_statistics() 210 210 print domain.boundary_statistics(tags='ocean')
Note: See TracChangeset
for help on using the changeset viewer.