Changeset 6681
- Timestamp:
- Apr 1, 2009, 2:49:44 PM (16 years ago)
- Location:
- anuga_work/production/carnarvon/carnarvon_rerun
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/carnarvon/carnarvon_rerun/export_results_max.py
r6568 r6681 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 polygons 27 ###time_dir2 = '20080912_154716_run_final_0_27283_alpha0.1_kvanputt' # This uses original bathyemetry data 28 ###time_dir3 = '20080924_123601_run_final_0_27283_250m_none_kvanputt' # This uses the 250m bathymetry without any interior polygons 29 ##time_dirs = [time_dir1, time_dir2]#, time_dir3] 24 time_dir1 = '20090324_134442_run_final_1_27255_Bt_kvanputt' 25 time_dir2 = '20090324_154738_run_final_1_27283_Bt_kvanputt' 26 time_dir3 = '20090324_154824_run_final_1_68693_Bt_kvanputt' 27 time_dir4 = '20090327_154730_run_final_0_68693_Bt_kvanputt' 28 time_dir5 = '20090327_154824_run_final_0_27255_Bt_kvanputt' 29 time_dir6 = '20090327_160753_run_final_0_27283_Bt_kvanputt' 30 30 31 time_dir1 = '20090130_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] 39 31 time_dirs = [time_dir5, time_dir6] 40 32 41 cellsize = 25042 ##cellsize = 5 33 #cellsize = 250 34 cellsize = 20 43 35 44 #timestep = None # None means no timestep!45 timestep = 036 timestep = None # None means no timestep! 37 #timestep = 0 46 38 47 39 ###### … … 49 41 ###### 50 42 51 #area = ['Bunbury', 'Busselton'] # strings must match keys in var_equations below52 area = ['All'] # 'All' means no special areas - the whole thing43 area = ['CBD'] # strings must match keys in var_equations below 44 #area = ['All'] # 'All' means no special areas - the whole thing 53 45 54 46 ###### … … 63 55 64 56 # one or more key strings from var_equations above 65 var = [' elevation']57 var = ['depth', 'speed'] 66 58 67 59 ###### … … 93 85 94 86 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'87 name2 = join(directory, time_dir, project.scenario_name)+'_time_39300_0' 88 name3 = join(directory, time_dir, project.scenario_name)+'_time_78600_0' 97 89 98 names = [name1 ] #, name2]#, name3]90 names = [name1, name2, name3] 99 91 100 #asc_name = []92 asc_name = [] 101 93 102 94 for name in names: … … 119 111 format = 'asc') 120 112 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)113 asc_name.append(outname + '.asc') 114 115 maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc' 116 117 print 'max asc outname ', maxasc_outname 118 print 'asc_name ', str(asc_name) 119 120 MaxAsc(maxasc_outname, asc_name) -
anuga_work/production/carnarvon/carnarvon_rerun/project.py
r6568 r6681 28 28 tide = 1 # difference between MSL and HAT in metres 29 29 zone = 49 # specify zone of model 30 event_number = 68693# the event number or the mux file name30 event_number = 27255 # 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', 'yieldstep_5'] 53 53 54 54 #-------------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.