Changeset 6580
- Timestamp:
- Mar 23, 2009, 1:09:01 PM (16 years ago)
- Location:
- anuga_work/production/new_south_wales/batemans_bay
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/new_south_wales/batemans_bay/project.py
r6577 r6580 110 110 # Used in get_timeseries.py. 111 111 # Format easting,northing,name,elevation (with header) 112 ##gauges_filename = 'gauges.csv'112 gauges_filename = 'gauges.csv' 113 113 114 114 # BUILDINGS EXPOSURE - for identifying inundated houses … … 245 245 # The absolute pathname for the gauges file 246 246 # Used for get_timeseries.py 247 ##gauges = join(gauges_folder, gauges_filename)247 gauges = join(gauges_folder, gauges_filename) 248 248 249 249 # The absolute pathname for the building file -
anuga_work/production/new_south_wales/batemans_bay/run_model.py
r6577 r6580 147 147 148 148 domain.set_boundary({'back': Br, 149 'side': B t,149 'side': Bd, 150 150 'ocean': Bf}) 151 151 … … 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=5, 164 ## finaltime=project.finaltime, 165 ## skip_initial_step=True): 166 ## print domain.timestepping_statistics() 167 ## print domain.boundary_statistics(tags='ocean') 168 168 169 169 print 'Simulation took %.2f seconds' % (time.time()-t0)
Note: See TracChangeset
for help on using the changeset viewer.