Changeset 6678
- Timestamp:
- Apr 1, 2009, 2:46:58 PM (14 years ago)
- Location:
- anuga_work/production/busselton/busselton_rerun
- Files:
-
- 5 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/busselton_rerun/export_results_max.py
r6567 r6678 22 22 directory = project.output_folder 23 23 24 ##time_dir1 = '20081217_101310_run_final_0_27283_250m_none_dt_kvanputt'25 ##time_dir2 = '20081217_115336_run_final_0_27283_250m_none_dp_kvanputt'26 ###time_dir1 = '20080924_123626_run_final_0_27283_250m_all_kvanputt' # This uses the 250m bathymetry with all interior polygons27 ###time_dir2 = '20080912_154716_run_final_0_27283_alpha0.1_kvanputt' # This uses original bathyemetry data28 ###time_dir3 = '20080924_123601_run_final_0_27283_250m_none_kvanputt' # This uses the 250m bathymetry without any interior polygons29 ##time_dirs = [time_dir1, time_dir2]#, time_dir3]30 24 31 time_dir1 = '20090 130_165532_run_final_0.6_27255_extend_dt_kvanputt'32 ##time_dir2 = '20081211_162311_run_final_0_27255_alpha0.1_kvanputt'33 ##time_dir3 = '20081211_162346_run_final_0_68693_alpha0.1_kvanputt'34 ##time_dir4 = '20081211_162433_run_final_0.6_68693_alpha0.1_kvanputt'35 ##time_dir5 = '20081211_162656_run_final_0.6_27283_alpha0.1_kvanputt'36 ##time_dir6 = '20081211_162744_run_final_0_27283_alpha0.1_kvanputt'37 ## 38 time_dirs = [time_dir1 ] #5, time_dir4]# , time_dir4, time_dir5, time_dir6]25 time_dir1 = '20090324_134328_run_final_0.6_27255_Bt_kvanputt' 26 time_dir2 = '20090324_140747_run_final_0.6_68693_Bt_kvanputt' 27 time_dir3 = '20090327_152717_run_final_0.6_27283_Bt_kvanputt' 28 time_dir4 = '20090327_160646_run_final_0_27255_Bt_kvanputt' 29 time_dir5 = '20090327_161520_run_final_0_68693_Bt_kvanputt' 30 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 31 32 time_dirs = [time_dir1,time_dir2, time_dir3, time_dir4, time_dir5] 39 33 40 34 41 cellsize = 25042 ##cellsize = 5 35 ##cellsize = 250 36 cellsize = 20 43 37 44 38 #timestep = None # None means no timestep! … … 49 43 ###### 50 44 51 #area = ['Bunbury', 'Busselton'] # strings must match keys in var_equations below52 area = ['All'] # 'All' means no special areas - the whole thing45 area = ['Bunbury', 'Busselton'] # strings must match keys in var_equations below 46 #area = ['All'] # 'All' means no special areas - the whole thing 53 47 54 48 ###### … … 63 57 64 58 # one or more key strings from var_equations above 65 var = [' elevation']59 var = ['depth', 'speed'] 66 60 67 61 ###### … … 93 87 94 88 name1 = join(directory, time_dir, project.scenario_name) 95 #name2 = join(directory, time_dir, project.scenario_name)+'_time_39600_0'96 #name3 = join(directory, time_dir, project.scenario_name)+'_time_79200_0'89 name2 = join(directory, time_dir, project.scenario_name)+'_time_35520_0' 90 name3 = join(directory, time_dir, project.scenario_name)+'_time_71040_0' 97 91 98 names = [name1 ] #, name2]#, name3]92 names = [name1, name2, name3] 99 93 100 #asc_name = []94 asc_name = [] 101 95 102 96 for name in names: … … 119 113 format = 'asc') 120 114 121 ##asc_name.append(outname + '.asc')122 ##123 ##maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc'124 ## 125 ##print 'max asc outname ', maxasc_outname126 ##print 'asc_name ', str(asc_name)127 ##128 ##MaxAsc(maxasc_outname, asc_name)115 asc_name.append(outname + '.asc') 116 117 maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc' 118 119 print 'max asc outname ', maxasc_outname 120 print 'asc_name ', str(asc_name) 121 122 MaxAsc(maxasc_outname, asc_name) -
anuga_work/production/busselton/busselton_rerun/project.py
r6567 r6678 26 26 # Model specific parameters. 27 27 # One or all can be changed each time the run_model script is executed 28 tide = 0 .6# difference between MSL and HAT in metres28 tide = 0 # difference between MSL and HAT in metres 29 29 zone = 50 # specify zone of model 30 event_number = 68693 # the event number or the mux file name30 event_number = 27283 # the event number or the mux file name 31 31 alpha = 0.1 # smoothing parameter for mesh 32 32 friction=0.01 # manning's friction coefficient … … 50 50 #------------------------------------------------------------------------------- 51 51 52 output_comment = [setup, tide, event_number ]52 output_comment = [setup, tide, event_number, 'Bt'] 53 53 54 54 #-------------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.