Changeset 7324
- Timestamp:
- Aug 3, 2009, 2:40:59 PM (16 years ago)
- Location:
- anuga_work/production/hobart_2009/For_DVD
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/hobart_2009/For_DVD/get_timeseries.py
r7305 r7324 20 20 time_dir2 = '20090619_165136_run_final_0.8_58260_None_kvanputt' 21 21 22 time_dirs = [time_dir 2, time_dir2]22 time_dirs = [time_dir1, time_dir2] 23 23 24 24 print 'time directories', time_dirs -
anuga_work/production/hobart_2009/For_DVD/project.py
r7269 r7324 83 83 land_initial_conditions_filename = 'initial_conditions.csv' 84 84 85 # FINAL BOUNDING POLYGON - used in build_boundary.py and run_model.py respectively 86 # NOTE: when files are put together the points must be in sequence 87 # For ease go clockwise! 88 # Check the run_model.py for boundary_tags 89 90 # Thinned ordering file from Hazard Map (geographic) 91 # Format is index,latitude,longitude (with header) 92 urs_order_filename = 'urs_order.csv' 93 94 # Landward bounding points 95 # Format easting,northing (no header) 96 landward_boundary_filename = 'landward_boundary.csv' 97 85 98 # GAUGES - for creating timeseries at a specific point 86 99 # Used in get_timeseries.py. … … 88 101 gauges_filename = 'time_of_arrival_all.csv' #'TideGaugesPoints.csv' 89 102 #'tsunamipointsMGA.csv' 90 91 # FINAL BOUNDING POLYGON - used in build_boundary.py and run_model.py respectively92 # NOTE: when files are put together the points must be in sequence93 # For ease go clockwise!94 # Check the run_model.py for boundary_tags95 96 # Thinned ordering file from Hazard Map (geographic)97 # Format is index,latitude,longitude (with header)98 urs_order_filename = 'urs_order.csv'99 100 # Landward bounding points101 # Format easting,northing (no header)102 landward_boundary_filename = 'landward_boundary.csv'103 103 104 104 #------------------------------------------------------------------------------- -
anuga_work/production/hobart_2009/For_DVD/run_model.py
r7305 r7324 137 137 Br = Reflective_boundary(domain) 138 138 Bt = Transmissive_stage_zero_momentum_boundary(domain) 139 Bd = Dirichlet_boundary([project.tide, 0, 0])140 139 Bf = Field_boundary(project.event_sts+'.sts', 141 140 domain, mean_stage=project.tide, 142 141 time_thinning=1, 143 default_boundary= Bd,142 default_boundary=Dirichlet_boundary([0, 0, 0]), 144 143 boundary_polygon=bounding_polygon_sts, 145 144 use_cache=True,
Note: See TracChangeset
for help on using the changeset viewer.