Changeset 6597
- Timestamp:
- Mar 24, 2009, 2:15:16 PM (16 years ago)
- Location:
- anuga_work/production/new_south_wales/batemans_bay
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/new_south_wales/batemans_bay/project.py
r6580 r6597 17 17 # Note, the user needs to set up the directory system accordingly 18 18 state = 'new_south_wales' 19 scenario_name = ' batemans_bay'20 scenario_folder = ' batemans_bay_tsunami_scenario_2009'19 scenario_name = 'gosford' 20 scenario_folder = 'gosford_tsunami_scenario_2009' 21 21 22 22 #------------------------------------------------------------------------------- … … 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 29 event_number = 58368 # the event number or the mux file name 28 tide = 0 # difference between MSL and HAT 29 30 # the event number or the mux file name 31 ##event_number = #1 in 200 yr Puyesgur 32 ##event_number = #1 in 500 yr 33 ##event_number = #1 in 1000 yr 34 ##event_number = #1 in 2000 yr 35 ##event_number = #1 in 5000 yr 36 event_number = 58242 #1 in 10000 yr Puysegur 37 event_number = 51436 #1 in 10000 yr New Hebrides 38 30 39 alpha = 0.1 # smoothing parameter for mesh 31 40 friction=0.01 # manning's friction coefficient 32 41 starttime=0 # start time for simulation 33 finaltime=6000 # final time for simulation42 finaltime=60000 # final time for simulation 34 43 35 44 setup = 'final' # This can be one of three values … … 58 67 # Used in build_elevation.py 59 68 # Format for ascii grids, as produced in ArcGIS + a projection file 60 ascii_grid_filenames = ['1a',# Topographic data 61 '1b', 62 '2b', 63 '2a_3', 64 '3b', 65 '3a', 66 '4a_2', 67 '4b', 68 'off1', 69 'off2', 70 'off3', 71 'bbhd', 72 'sd100031996_p', 73 'sd100031996_p2', 74 'sd100031996_p3', 75 'sd100031996_p4'] 69 ascii_grid_filenames = [] 76 70 77 71 # Format for point is x,y,elevation (with header) 78 point_filenames = ['SD100031996_jgriffin_clip.csv', 79 'tomaga_offshore_AHD_MGA_1997.csv', 80 'Batemans_BBHD_MGA_1995.csv', 81 'moruya_AHD_MGA_2000.csv'] 72 point_filenames = [] 82 73 83 74 … … 110 101 # Used in get_timeseries.py. 111 102 # Format easting,northing,name,elevation (with header) 112 gauges_filename = 'gauges.csv'103 ##gauges_filename = 'gauges.csv' 113 104 114 105 # BUILDINGS EXPOSURE - for identifying inundated houses … … 245 236 # The absolute pathname for the gauges file 246 237 # Used for get_timeseries.py 247 gauges = join(gauges_folder, gauges_filename)238 ##gauges = join(gauges_folder, gauges_filename) 248 239 249 240 # The absolute pathname for the building file -
anuga_work/production/new_south_wales/batemans_bay/run_model.py
r6580 r6597 161 161 print domain.boundary_statistics(tags='ocean') 162 162 163 ##for t in domain.evolve(yieldstep=5, 164 ## finaltime=project.finaltime, 165 ## skip_initial_step=True): 166 ## print domain.timestepping_statistics() 167 ## print domain.boundary_statistics(tags='ocean') 163 for t in domain.evolve(yieldstep=20, 164 finaltime=6000, 165 skip_initial_step=True): 166 print domain.timestepping_statistics() 167 print domain.boundary_statistics(tags='ocean') 168 169 170 for t in domain.evolve(yieldstep=project.yieldstep, 171 finaltime=project.finaltime, 172 skip_initial_step=True): 173 print domain.timestepping_statistics() 174 print domain.boundary_statistics(tags='ocean') 168 175 169 176 print 'Simulation took %.2f seconds' % (time.time()-t0)
Note: See TracChangeset
for help on using the changeset viewer.