Changeset 5444
- Timestamp:
- Jun 27, 2008, 3:01:28 PM (15 years ago)
- Location:
- anuga_work/production/busselton
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/export_results.py
r5430 r5444 9 9 #time_dir = '20080624_172109_run_final_0.6_exmouth_0.1_kvanputt' 10 10 #time_dir = '20080624_172126_run_final_0.6_exmouth_0.5_kvanputt' 11 time_dir = '2008062 4_172143_run_final_0.6_exmouth_1.0_kvanputt'11 time_dir = '20080627_085741_run_final_0.6_exmouth_current_kvanputt' 12 12 13 13 -
anuga_work/production/busselton/export_results_all.py
r5431 r5444 39 39 northing_min = project.yminBunbury 40 40 northing_max = project.ymaxBunbury 41 42 if which_area == 'Dunsborough': 43 easting_min = project.xminDunsborough 44 easting_max = project.xmaxDunsborough 45 northing_min = project.yminDunsborough 46 northing_max = project.ymaxDunsborough 41 47 42 48 # var = [2,3,4] # depth and speed -
anuga_work/production/busselton/project.py
r5430 r5444 35 35 tide = 0.6 36 36 37 alpha = 1.0#changed for testing purposes37 alpha = 0.1 #changed for testing purposes 38 38 friction=0.01 39 39 starttime=0 … … 60 60 yieldstep=60 61 61 62 #rev_num = 'current'62 rev_num = 'current' 63 63 ##rev_num = '4695' # 2nd Sept 2007 64 64 ##rev_num = '4743' # 3nd Oct 2007 … … 72 72 73 73 74 dir_comment='_'+setup+'_'+str(tide)+'_'+str(source)+'_'+str( alpha)+'_'+str(user)74 dir_comment='_'+setup+'_'+str(tide)+'_'+str(source)+'_'+str(rev_num)+'_'+str(user) 75 75 76 76 … … 177 177 #digitized polygons 178 178 poly_large = read_polygon(polygons_dir+'coast_5km_d20m.csv') 179 res_large = 30000*res_factor179 res_large = 40000*res_factor 180 180 181 181 poly_busselton = read_polygon(polygons_dir+'busselton_1km.csv') … … 191 191 res_busselton2 = 10000*res_factor 192 192 193 poly_bunbury2 = read_polygon(polygons_dir+'bunbury_2km.csv') 194 res_bunbury2 = 10000*res_factor 193 195 194 196 195 197 interior_regions = [[poly_large,res_large],[poly_busselton,res_busselton],[poly_bunbury,res_bunbury] 196 ,[poly_dunsborough,res_dunsborough],[poly_busselton2,res_busselton2]] 198 ,[poly_dunsborough,res_dunsborough],[poly_busselton2,res_busselton2] 199 ,[poly_bunbury2,res_bunbury2]] 197 200 198 201 … … 212 215 213 216 # exporting asc grid for Busselton 214 xminBusselton = 325000 215 xmaxBusselton = 360000 216 yminBusselton = 6273000 217 ymaxBusselton = 6290000 218 219 # exporting asc grid for Busselton 220 xminBunbury = 370000 221 xmaxBunbury = 386000 222 yminBunbury = 6305000 223 ymaxBunbury = 6334000 217 xminBusselton = 340000 218 xmaxBusselton = 352000 219 yminBusselton = 6271500 220 ymaxBusselton = 6280000 221 222 # exporting asc grid for Bunbury 223 xminBunbury = 369000 224 xmaxBunbury = 381000 225 yminBunbury = 6308000 226 ymaxBunbury = 6308000 227 228 # exporting asc grid for Dunsborough 229 xminDunsborough = 321000 230 xmaxDunsborough = 327500 231 yminDunsborough = 6277000 232 ymaxDunsborough = 6282000 233 -
anuga_work/production/busselton/run_busselton.py
r5442 r5444 158 158 domain.set_quantities_to_be_stored(['stage', 'xmomentum', 'ymomentum']) 159 159 domain.tight_slope_limiters = 1 160 #domain.set_maximum_allowed_speed(0.1) # Allow a little runoff (0.1 is OK)161 160 print 'domain id', id(domain) 162 161
Note: See TracChangeset
for help on using the changeset viewer.