Changeset 5577 for anuga_work/development/Hinwood_2008/slope.py
- Timestamp:
- Jul 25, 2008, 4:36:05 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/Hinwood_2008/slope.py
r5532 r5577 43 43 quantity_locations = title.split(',') #(',') 44 44 quantity_locations.pop(0) # remove 'time' 45 45 46 # Doing j.split(':')[0] drops the y location 46 47 locations = [float(j.split(':')[0]) for j in quantity_locations] 47 48 … … 459 460 It also create's a frounde file. 460 461 """ 461 dx = 0.0 5462 dx = 0.005 462 463 for run_data in scenarios: 463 464 point_x = arange(run_data['start_slope_x'], 464 465 run_data['finish_slope_x'], 465 466 dx).tolist() 466 flume_y_middle = 0. 5467 flume_y_middle = 0.0 467 468 points = [] 468 469 for gauge_x in point_x: … … 673 674 #scenarios = [scenarios[0]] 674 675 outputdir_tag = "_good_tri_area_0.01_limiterD" 675 outputdir_tag = "_good_ tri_area_0.001_limiterD"676 outputdir_tag = "_good_lmts_wdth_0.1_z_0.012_ys_0.01_mta_0.01_F" 676 677 slope_tag = "" 677 678 #outputdir_tag = "_test_limiterC" … … 679 680 #scenarios = scenarios[4:] # !!!!!!!!!!!!!!!!!!!!!! 680 681 681 #gauges_for_slope(slope_tag, outputdir_tag, scenarios)682 gauges_for_slope(slope_tag, outputdir_tag, scenarios) 682 683 #auto_graph_slopes(outputdir_tag, scenarios) #, is_interactive=True) 683 #auto_find_min_slopes(slope_tag, outputdir_tag, scenarios)684 auto_find_min_slopes(slope_tag, outputdir_tag, scenarios) 684 685 #auto_graph_froudes(outputdir_tag, scenarios) 685 auto_plot_froude_slopes(slope_tag, outputdir_tag, scenarios)686 #auto_plot_froude_slopes(slope_tag, outputdir_tag, scenarios) 686 687 #g = Get_file_name(scenarios[0], outputdir_tag, slope_tag) 687 688 #for wave_file, save_as, wave_number in Get_file_name(
Note: See TracChangeset
for help on using the changeset viewer.