Changeset 4430
- Timestamp:
- May 15, 2007, 4:15:50 PM (18 years ago)
- Location:
- anuga_work/production/dampier_2006
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/dampier_2006/get_timeseries.py
r4422 r4430 40 40 #gauges_dir_name_simple = 41 41 if is_parallel is True: 42 print 'bugger'43 42 44 43 for i in range(nodes): -
anuga_work/production/dampier_2006/project.py
r4423 r4430 31 31 #tide = -2.5 32 32 #tide = 0.0 33 tide = 2.434 33 #tide = 2.4 34 tide = 200.0 35 35 #Making assumptions about the location of scenario data 36 36 state = 'western_australia' … … 155 155 print 'Area of bounding polygon', polygon_area(poly_all)/1000000.0 156 156 157 res_factor = 1157 res_factor = 2 158 158 res_poly_all = 150000*res_factor 159 #res_poly_all = 150000 160 161 poly_pipeline = read_polygon(polygons_dir+'pipeline2.csv') 162 res_pipeline = 2000 159 163 160 164 ############################### … … 248 252 [poly_island8,res_island0],[poly_ref_nw4,res_ref_nw4], 249 253 [poly_ref_nw5,res_ref_nw5],[poly_ref_nw6,res_ref_nw6], 250 [poly_ref_nw7,res_ref_nw7],[poly_ref_nw8,res_ref_nw8]] 254 [poly_ref_nw7,res_ref_nw7],[poly_ref_nw8,res_ref_nw8] 255 # ,[poly_pipeline,res_pipeline] 256 ] 251 257 252 258 interior_regions_test = [[poly_dampier,res_dampier], -
anuga_work/production/dampier_2006/run_dampier.py
r4422 r4430 122 122 from polygon import * 123 123 #following sets the stage/water to be offcoast only 124 #IC = Polygon_function( [(project.poly_mainland, 0.)], default = tide)125 IC = Polygon_function( [(project.poly_mainland, 0.)], default = 200)124 IC = Polygon_function( [(project.poly_mainland, 0.)], default = tide) 125 # IC = Polygon_function( [(project.poly_mainland, 0.)], default = 200) 126 126 domain.set_quantity('stage', IC) 127 127 domain.set_quantity('friction', 0.01) … … 170 170 171 171 Bf = Field_boundary(project.boundaries_dir_namea + '.sww', 172 domain, time_thinning=1 , mean_stage=tide,172 domain, time_thinning=12, mean_stage=tide, 173 173 use_cache=True, verbose=True) 174 174
Note: See TracChangeset
for help on using the changeset viewer.