Changeset 5444


Ignore:
Timestamp:
Jun 27, 2008, 3:01:28 PM (15 years ago)
Author:
kristy
Message:
 
Location:
anuga_work/production/busselton
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/busselton/export_results.py

    r5430 r5444  
    99#time_dir = '20080624_172109_run_final_0.6_exmouth_0.1_kvanputt'
    1010#time_dir = '20080624_172126_run_final_0.6_exmouth_0.5_kvanputt'
    11 time_dir = '20080624_172143_run_final_0.6_exmouth_1.0_kvanputt'
     11time_dir = '20080627_085741_run_final_0.6_exmouth_current_kvanputt'
    1212
    1313
  • anuga_work/production/busselton/export_results_all.py

    r5431 r5444  
    3939        northing_min = project.yminBunbury
    4040        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
    4147
    4248   # var = [2,3,4] # depth and speed
  • anuga_work/production/busselton/project.py

    r5430 r5444  
    3535tide = 0.6
    3636
    37 alpha = 1.0 #changed for testing purposes
     37alpha = 0.1 #changed for testing purposes
    3838friction=0.01
    3939starttime=0
     
    6060    yieldstep=60
    6161
    62 #rev_num = 'current'
     62rev_num = 'current'
    6363##rev_num = '4695' # 2nd Sept 2007
    6464##rev_num = '4743' # 3nd Oct 2007
     
    7272
    7373
    74 dir_comment='_'+setup+'_'+str(tide)+'_'+str(source)+'_'+str(alpha)+'_'+str(user)
     74dir_comment='_'+setup+'_'+str(tide)+'_'+str(source)+'_'+str(rev_num)+'_'+str(user)
    7575
    7676
     
    177177#digitized polygons
    178178poly_large = read_polygon(polygons_dir+'coast_5km_d20m.csv')
    179 res_large = 30000*res_factor
     179res_large = 40000*res_factor
    180180
    181181poly_busselton = read_polygon(polygons_dir+'busselton_1km.csv')
     
    191191res_busselton2 = 10000*res_factor
    192192
     193poly_bunbury2 = read_polygon(polygons_dir+'bunbury_2km.csv')
     194res_bunbury2 = 10000*res_factor
    193195
    194196
    195197interior_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]]
    197200
    198201
     
    212215
    213216# 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
     217xminBusselton = 340000
     218xmaxBusselton = 352000
     219yminBusselton = 6271500
     220ymaxBusselton = 6280000
     221
     222# exporting asc grid for Bunbury
     223xminBunbury = 369000
     224xmaxBunbury = 381000
     225yminBunbury = 6308000
     226ymaxBunbury = 6308000
     227
     228# exporting asc grid for Dunsborough
     229xminDunsborough = 321000
     230xmaxDunsborough = 327500
     231yminDunsborough = 6277000
     232ymaxDunsborough = 6282000
     233
  • anuga_work/production/busselton/run_busselton.py

    r5442 r5444  
    158158    domain.set_quantities_to_be_stored(['stage', 'xmomentum', 'ymomentum'])
    159159    domain.tight_slope_limiters = 1
    160     #domain.set_maximum_allowed_speed(0.1) # Allow a little runoff (0.1 is OK)
    161160    print 'domain id', id(domain)
    162161
Note: See TracChangeset for help on using the changeset viewer.