Changeset 5410 for anuga_work/development/Hinwood_2008/run_dam.py
- Timestamp:
- Jun 20, 2008, 3:50:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/Hinwood_2008/run_dam.py
r5405 r5410 83 83 maximum_triangle_area=0.001 84 84 elif run_type == 4: 85 outputdir_name += '_good_tri_area_0.01_A' 86 # this is not a test 87 # Output will go to a file 88 # The sww file will be interpolated 89 yieldstep = 0.01 90 finaltime = None 91 maximum_triangle_area=0.01 92 elif run_type == 5: 85 93 outputdir_name += '_good_tri_area_0.001_A' 86 94 # this is not a test … … 90 98 finaltime = None 91 99 maximum_triangle_area=0.001 92 elif run_type == 5:100 elif run_type == 6: 93 101 outputdir_name += '_good_tri_area_0.0001_A' 94 102 # this is not a test … … 98 106 finaltime = None 99 107 maximum_triangle_area=0.0001 100 elif run_type == 6:101 outputdir_name += '_good_tri_area_0.01_A'102 # this is not a test103 # Output will go to a file104 # The sww file will be interpolated105 yieldstep = 0.01106 finaltime = None107 maximum_triangle_area=0.01108 108 109 109 metadata_dic = set_z_origin_to_water_depth(metadata_dic) … … 125 125 if finaltime is None: 126 126 finaltime = boundary_final_time 127 128 127 # Boundary file manipulation 129 128 if boundary_path is None: … … 276 275 277 276 # T1R3 278 run_data['scenario_id'] = 'T1R3' 277 run_data = {'xleft':[-3.106,0.0], # Av' of ADV and Gauge A 278 'xtoe':[0.0,0.0], 279 'xbeach':[1.285,0.090], 280 'xright':[16.1,.960], 281 'offshore_water_depth':.4, 282 'scenario_id':'T1R3', 283 'gauge_names':['B','1','2','3','4','5','6','7','8', 284 '9','10','11','12','13','14'], 285 'gauge_x':[-0.68, 1.572, 2.572, 3.572, 4.572, 5.572, 286 6.572, 7.572, 8.572, 9.572, 10.572, 11.572, 287 12.572, 13.572, 14.572], 288 'gauge_bed_elevation':[-0.400000, -0.293158, 289 -0.234473, -0.175788, -0.117104, -0.058419, 0.000266, 290 0.058950, 0.117635, 0.176320, 0.235004, 0.293689, 291 0.352374, 0.411058, 0.469743] 292 } 279 293 main( run_data['scenario_id'] + '_boundary.tsm' , run_data, 280 294 run_type = run_type,
Note: See TracChangeset
for help on using the changeset viewer.