Changeset 6603 for anuga_work/production/pt_hedland_2008
- Timestamp:
- Mar 24, 2009, 3:36:38 PM (16 years ago)
- Location:
- anuga_work/production/pt_hedland_2008
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/pt_hedland_2008/export_results.py
r5861 r6603 5 5 from os import sep 6 6 7 time_dir = '20081 014_163150_run_final_0_27283_alpha0.1_jgriffin'7 time_dir = '20081210_163235_run_final_3.6_27283_alpha0.1_jgriffin' 8 8 9 cellsize = 309 cellsize = 20 10 10 #cellsize = 150 11 11 timestep = 0 … … 24 24 #var = [3,4] # depth and speed 25 25 #var = [2] # depth 26 var = [0] #stage26 #var = [0] #stage 27 27 #var = [0,4] # stage and elevation 28 var = [4] #elevation 28 29 29 30 for which_var in var: -
anuga_work/production/pt_hedland_2008/export_results_all.py
r5861 r6603 20 20 directory = project.output_dir 21 21 22 time_dir1 = '20081 015_140641_run_final_0_27283_alpha0.1_jgriffin'22 time_dir1 = '20081211_095614_run_final_0.0_27283_alpha0.1_jgriffin' 23 23 time_dirs = [time_dir1] 24 24 … … 53 53 for time_dir in time_dirs: 54 54 name1 = directory+time_dir+sep+project.scenario_name 55 # name2 = directory+time_dir+sep+project.scenario_name+'_time_39900_0' #need to get assistance on how to make this into anything 56 names = [name1] 55 name2 = directory+time_dir+sep+project.scenario_name+'_time_24720_0' #need to get assistance on how to make this into anything 56 name3 = directory+time_dir+sep+project.scenario_name+'_time_49440_0' 57 name4 = directory+time_dir+sep+project.scenario_name+'_time_74160_0' 58 names = [name1,name2,name3,name4] 57 59 58 60 for name in names: … … 94 96 verbose = True, 95 97 format = 'asc') 98 99 asc_name.append(outname + '.asc') 100 101 maxasc_outname = directory+time_dir+sep+project_250m.scenario_name+'_'+which_area+'_'+which_var+'_max.asc' 102 103 print 'max asc outname ', maxasc_outname 104 print 'asc_name ', str(asc_name) 105 106 MaxAsc(maxasc_outname, asc_name) -
anuga_work/production/pt_hedland_2008/export_results_max.py
r6012 r6603 20 20 directory = project_250m.output_dir 21 21 22 time_dir1 = '200 81125_135917_run_final_0_27283_250m_none_lfountai'22 time_dir1 = '20090108_120325_run_final_3.6_27283_alpha0.1_jgriffin' 23 23 24 24 time_dirs = [time_dir1]#, time_dir2, time_dir3, time_dir4, time_dir5, time_dir6] -
anuga_work/production/pt_hedland_2008/project.py
r5837 r6603 43 43 # Model specific parameters. One or all can be changed each time the 44 44 # run_scenario script is executed 45 tide = 0 #0.645 tide = 3.6 #3.6 46 46 #event_number = 27255 # linked to hazard map 47 47 event_number = 27283 … … 176 176 poly_ocean = read_polygon(polygons_dir+'initial_conditions_ocean.csv') 177 177 178 #Island, to set the initial stage/water to be offcoast only 179 #poly_island1 = read_polygon(polygons_dir+'initial_conditions_island1.csv') 180 181 #Island, to set the initial stage/water to be offcoast only 182 poly_island2 = read_polygon(polygons_dir+'initial_conditions_island2.csv') 183 178 184 # Initial bounding polygon for data clipping 179 185 poly_all = read_polygon(polygons_dir+'poly_all.csv') 180 res_poly_all = 100000*res_factor 186 #res_poly_all = 100000*res_factor 187 res_poly_all = 200000*res_factor 181 188 182 189 # Area of Interest 1 (pt_hedland) … … 186 193 # Area of Significance 1 (pt_hedland) 187 194 poly_aos1 = read_polygon(polygons_dir+'area_of_significance.csv') 188 res_aos1 = 1000*res_factor195 res_aos1 = 2500*res_factor 189 196 190 197 # Shallow water 1 191 198 poly_sw1 = read_polygon(polygons_dir+'shallow_water.csv') 192 res_sw1 = 25000*res_factor199 res_sw1 = 50000*res_factor 193 200 194 201
Note: See TracChangeset
for help on using the changeset viewer.