Changeset 5526
- Timestamp:
- Jul 18, 2008, 9:53:04 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/project.py
r5501 r5526 33 33 scenario = 'busselton_tsunami_scenario' 34 34 35 tide = 0 .635 tide = 0 36 36 37 37 alpha = 0.1 … … 40 40 finaltime=50000 # changed for rev_number trial 41 41 export_cellsize=25 42 setup=' trial'42 setup='final' 43 43 source='exmouth' 44 44 … … 60 60 yieldstep=60 61 61 62 rev_num = 'newExtent' 62 63 #rev_num = '5449' 63 64 #rev_num = '4695' # 2nd Sept 2007 … … 70 71 #rev_num = '5120' # 5th March 2007 71 72 #rev_num = '5140' # 7th March 2007 72 rev_num = '5160' # 11th March 200773 #rev_num = '5160' # 11th March 2007 73 74 #rev_num = '5185' # 1st April 2007 74 75 #rev_num = '5273' # 2nd May 2007 … … 83 84 84 85 # AHO + DPI data 85 coast_name = ' Contour_0' # provided by hamish, represent better coastline than the 100km as compared to charts86 coast_name1 = ' beach_survey_final'87 offshore_name = 'B athymetry_final'86 coast_name = 'Busselton_Contour0' # provided by hamish, represent better coastline than the 100km as compared to charts 87 coast_name1 = 'Busselton_BeachSurvey' 88 offshore_name = 'Busselton_NavyFinal' 88 89 offshore_name1 = 'Busselton_Chart' 89 90 offshore_name2 = 'Busselton_Digitised' 91 offshore_name3 = 'Busselton_250m' # for areas that were heading to zero - 2005 Bathymetry grid 92 90 93 91 94 #final topo name … … 107 110 offshore_in_dir_name1 = topographies_in_dir + offshore_name1 #bathymetry Charts 108 111 offshore_in_dir_name2 = topographies_in_dir + offshore_name2 #Digitised Fairsheet 112 offshore_in_dir_name3 = topographies_in_dir + offshore_name3 #250m 109 113 110 114 #output to anuga from build file … … 117 121 offshore_dir_name1 = topographies_dir + offshore_name1 118 122 offshore_dir_name2 = topographies_dir + offshore_name2 123 offshore_dir_name3 = topographies_dir + offshore_name3 119 124 120 125 #final topo files … … 125 130 meshes_dir_name = meshes_dir + scenario_name 126 131 127 polygons_dir = anuga_dir+'polygons'+sep 132 polygons_dir = anuga_dir+'polygons'+sep+'New_Extents'+sep 128 133 tide_dir = anuga_dir+'tide_data'+sep 129 134 … … 146 151 #output locations 147 152 output_dir = anuga_dir+'outputs'+sep 148 output_build_time_dir = output_dir +'test'+sep + build_time + dir_comment + sep 153 #output_build_time_dir = output_dir +'test'+sep + build_time + dir_comment + sep 154 output_build_time_dir = output_dir +build_time + dir_comment + sep 149 155 #output_run_time_dir = output_dir +run_time+dir_comment+sep 150 156 output_run_time_dir = output_dir +'test'+sep + run_time + dir_comment +sep # take test out … … 170 176 171 177 # bounding polygon for study area 172 poly_all = read_polygon(polygons_dir+'poly_all .csv')178 poly_all = read_polygon(polygons_dir+'poly_all_extend.csv') 173 179 res_poly_all = 100000*res_factor 174 180 … … 203 209 204 210 205 boundary_tags={'back': [ 0, 1, 2, 3, 4, 9],206 'side': [ 5], 'ocean': [6, 7, 8]}211 boundary_tags={'back': [3, 4, 5, 6, 7], 212 'side': [2, 8], 'ocean': [0, 1, 9]} 207 213 208 214 trigs_min = number_mesh_triangles(interior_regions, poly_all, res_poly_all)
Note: See TracChangeset
for help on using the changeset viewer.