Changeset 5381 for anuga_work/production/busselton/project.py
- Timestamp:
- May 30, 2008, 10:52:58 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/project.py
r5160 r5381 72 72 # AHO + DPI data 73 73 coast_name = 'coastline_excluding_beach_survey' 74 coast_name1 = 'b each_survey_final'75 offshore_name = ' busselton'74 coast_name1 = 'bussleton_beach_data' 75 offshore_name = 'Busselton_bathymetry' 76 76 77 77 #final topo name … … 84 84 topographies_dir = home+state+sep+scenario+sep+'anuga'+sep+'topographies'+sep 85 85 86 #input topo file location 87 onshore_in_dir_name = topographies_in_dir + onshore_name 88 #island_in_dir_name = topographies_in_dir + island_name 86 # input topo file location 87 onshore_in_dir_name = topographies_in_dir + onshore_name #topo 89 88 90 coast_in_dir_name = topographies_in_dir + coast_name 91 coast_in_dir_name1 = topographies_in_dir + coast_name1 92 offshore_in_dir_name = topographies_in_dir + offshore_name 89 coast_in_dir_name = topographies_in_dir + coast_name #coastline 90 coast_in_dir_name1 = topographies_in_dir + coast_name1 #beach survey 91 offshore_in_dir_name = topographies_in_dir + offshore_name #bathymetry 93 92 93 #output to anuga from build file 94 94 onshore_dir_name = topographies_dir + onshore_name 95 #island_dir_name = topographies_dir + island_name 95 96 96 coast_dir_name = topographies_dir + coast_name 97 97 coast_dir_name1 = topographies_dir + coast_name1 … … 177 177 res_busselton1 = 10000*res_factor 178 178 179 poly_busselton2 = read_polygon(polygons_dir+'neg5_pos5_poly _.csv')179 poly_busselton2 = read_polygon(polygons_dir+'neg5_pos5_poly.csv') 180 180 res_busselton2 = 500*res_factor 181 181 … … 183 183 184 184 interior_regions = [[poly_busselton1,res_busselton1],[poly_busselton2,res_busselton2]] 185 print 'Hello',interior_regions 185 186 186 boundary_tags={'back': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1 5],187 'side': [10 , 14], 'ocean': [11, 12, 13]}187 boundary_tags={'back': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14], 188 'side': [10], 'ocean': [11, 12, 13]} 188 189 189 190 trigs_min = number_mesh_triangles(interior_regions, poly_all, res_poly_all) 190 191 191 poly_mainland=read_polygon( polygons_dir+'initial_condition_south.csv')192 poly_mainland=read_polygon(topographies_in_dir+'initial_condition_south.csv') 192 193 193 194 print 'min number triangles', trigs_min
Note: See TracChangeset
for help on using the changeset viewer.