Changeset 4504 for anuga_work/production/onslow_2006
- Timestamp:
- May 28, 2007, 6:08:39 PM (18 years ago)
- Location:
- anuga_work/production/onslow_2006
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/onslow_2006/export_results.py
r4479 r4504 5 5 from os import sep 6 6 7 time_dir = '20070507_215717_run_final_1.5_nbartzis' # HAT 1 in Dampier 10000 yr7 #time_dir = '20070507_215717_run_final_1.5_nbartzis' # HAT 1 in Dampier 10000 yr 8 8 #time_dir = '20070517_061654_run_final_0.0_nbartzis' # MSL 1 in Dampier 10000 yr 9 9 #time_dir = '' # HAT 1 in Broome 10000 yr … … 15 15 #time_dir = '' # HAT 1 in Exmouth 10000 yr 16 16 #time_dir = '' # MSL 1 in Exmouth 10000 yr 17 cellsize = 25 17 time_dir = '20060704_063005' # 2006 simulation HAT Mw9 18 #cellsize = 30 19 cellsize = 250 18 20 timestep = None 19 21 directory = project.outputdir 20 22 #name = directory + time_dir + sep + project.scenario_name 21 name = directory+time_dir+sep+project.scenario_name 23 #name = directory+time_dir+sep+project.scenario_name 24 name = directory+time_dir+sep+'source' 22 25 23 is_parallel = True 26 is_parallel = False 27 #is_parallel = True 24 28 if is_parallel == True: nodes = 4 25 29 print 'output dir:', name 26 30 27 var = [2,3,4] # depth and speed 31 #var = [2,3,4] # depth and speed 32 var = [3] # depth and speed 28 33 29 34 for which_var in var: … … 71 76 timestep = timestep, 72 77 cellsize = cellsize, 73 easting_min = project.e_min_area,74 easting_max = project.e_max_area,75 northing_min = project.n_min_area,76 northing_max = project.n_max_area,78 #easting_min = project.e_min_area, 79 #easting_max = project.e_max_area, 80 #northing_min = project.n_min_area, 81 #northing_max = project.n_max_area, 77 82 reduction = max, 78 83 verbose = True, -
anuga_work/production/onslow_2006/project.py
r4477 r4504 133 133 # region to export 134 134 135 e_min_area = 300000136 e_max_area = 3 10000137 n_min_area = 760 0000138 n_max_area = 76 10000135 e_min_area = 290500 136 e_max_area = 321500 137 n_min_area = 7601550 138 n_max_area = 7620000 139 139 140 140 # region to export to make elevation map: JS 22/9/06 - NOTE, this won't -
anuga_work/production/onslow_2006/run_building_inundation.py
r4314 r4504 20 20 21 21 from anuga.damage_modelling.inundation_damage import add_depth_and_momentum2csv, inundation_damage 22 import project 22 import project_urs 23 23 24 24 # Inputs 25 #timestampdir = '20060704_063005' # HAT 26 #timestampdir = '20060704_063112' # LAT 27 #timestampdir = '20060704_063234' # MSL 28 timestampdir = '20060515_001733' # DTED MSL 29 file_loc = project.outputdir + timestampdir + sep 30 swwfile = file_loc + project.basename + '.sww' 31 buildings_filename = project.buildings_filename 32 buildings_filename_out = file_loc + project.buildings_filename_out 25 #timestampdir = '20070507_215717_run_final_1.5_nbartzis' # HAT 26 timestampdir = '20070518_021050_run_final_0.0_nbartzis' # MSL 27 file_loc = project_urs.output_dir + timestampdir + sep 28 swwfile = file_loc + project_urs.scenario_name #+ '.sww' 29 buildings_filename = project_urs.buildings_filename 30 buildings_filename_out = file_loc + project_urs.buildings_filename_out 33 31 34 32 #add_depth_and_momentum2csv(swwfile, buildings_filename, buildings_filename_out)
Note: See TracChangeset
for help on using the changeset viewer.