Changeset 6984 for anuga_work/production/busselton/busselton_rerun
- Timestamp:
- May 6, 2009, 12:10:16 PM (16 years ago)
- Location:
- anuga_work/production/busselton/busselton_rerun
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/busselton_rerun/Arc_asc2raster_GDA94z50.py
r6678 r6984 32 32 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 33 33 34 time_dirs = [time_dir 5] #, time_dir4, time_dir5]34 time_dirs = [time_dir6] #1, time_dir2, time_dir3, time_dir4, time_dir5] 35 35 36 36 for time_dir in time_dirs: … … 57 57 58 58 generate_filename = [] 59 input_ascii = glob.glob(folder + '* n_depth_max.asc')59 input_ascii = glob.glob(folder + '*depth_max.asc') 60 60 61 61 for infile in input_ascii: -
anuga_work/production/busselton/busselton_rerun/Arc_txt2feature_class.py
r6678 r6984 26 26 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 27 27 28 time_dirs = [time_dir 1, time_dir2] #, time_dir5] #4, time_dir5, time_dir6]28 time_dirs = [time_dir6] #1, time_dir2] #, time_dir5] #4, time_dir5, time_dir6] 29 29 30 30 for time_dir in time_dirs: -
anuga_work/production/busselton/busselton_rerun/Arc_txt2feature_class_res.py
r6678 r6984 27 27 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 28 28 29 time_dirs = [time_dir 1]29 time_dirs = [time_dir2, time_dir3, time_dir4, time_dir5, time_dir6] 30 30 31 31 def replace_in_file(filename, instr, repstr): -
anuga_work/production/busselton/busselton_rerun/export_results_max.py
r6678 r6984 30 30 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 31 31 32 time_dirs = [time_dir 1,time_dir2, time_dir3, time_dir4, time_dir5]32 time_dirs = [time_dir6] #1,time_dir2, time_dir3, time_dir4, time_dir5] 33 33 34 34 -
anuga_work/production/busselton/busselton_rerun/get_runup.py
r6678 r6984 24 24 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 25 25 26 time_dirs = [time_dir 3, time_dir4, time_dir5]26 time_dirs = [time_dir6] #3, time_dir4, time_dir5] 27 27 28 28 interior_region = [] -
anuga_work/production/busselton/busselton_rerun/project.py
r6716 r6984 26 26 # Model specific parameters. 27 27 # One or all can be changed each time the run_model script is executed 28 tide = 0 # difference between MSL and HAT in metres28 tide = 0.6 # difference between MSL and HAT in metres 29 29 zone = 50 # specify zone of model 30 event_number = 272 83# 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 … … 60 60 # Format for ascii grids, as produced in ArcGIS + a projection file 61 61 ascii_grid_filenames = ['busselton_v2', # Topo 62 'grid_250m_clip'] # Busselton Topo 62 'grid_250m_clip', 63 'grid_250m_clip2'] # Busselton Topo 63 64 64 65 # Format for point is x,y,elevation (with header) … … 81 82 # Used in build_elevation.py 82 83 # Format for points easting,northing (no header) 83 bounding_polygon_filename = 'bounding_polygon .csv'84 bounding_polygon_filename = 'bounding_polygon_new.csv' 84 85 bounding_polygon_maxarea = 100000 85 86 … … 97 98 # LAND - used to set the initial stage/water to be offcoast only 98 99 # Used in run_model.py. Format for points easting,northing (no header) 99 land_initial_conditions_filename = [['initial_condition_ extend.csv', 0],100 land_initial_conditions_filename = [['initial_condition_new.csv', 0], 100 101 ['initial_condition_marina.csv', 0]] 101 102 … … 121 122 # Landward bounding points 122 123 # Format easting,northing (no header) 123 landward_boundary_filename = 'landward_boundary_ extend.csv'124 landward_boundary_filename = 'landward_boundary_new.csv' 124 125 125 126 # MUX input filename. -
anuga_work/production/busselton/busselton_rerun/run_building_inundation.py
r6678 r6984 33 33 time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt' 34 34 35 time_dirs = [time_dir 3, time_dir4, time_dir5]35 time_dirs = [time_dir6] #, time_dir3, time_dir4, time_dir5, time_dir6] 36 36 37 37 buildings = project.building_exposure … … 39 39 for time_dir in time_dirs: 40 40 41 time_dir_name = time_dir[-25:][:-18] 41 time_dir_name = time_dir[-20:][:-12] 42 print time_dir_name 42 43 43 44 building_marker = '_m_'+ time_dir_name
Note: See TracChangeset
for help on using the changeset viewer.