Changeset 7333 for DVD_images/extra_files/Hobart/project
- Timestamp:
- Aug 7, 2009, 1:58:22 PM (16 years ago)
- Location:
- DVD_images/extra_files/Hobart/project
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
DVD_images/extra_files/Hobart/project/project.py
r7300 r7333 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 #------------------------------------------------------------------------------- -
DVD_images/extra_files/Hobart/project/run_model.py
r7300 r7333 136 136 Br = Reflective_boundary(domain) 137 137 Bt = Transmissive_stage_zero_momentum_boundary(domain) 138 Bd = Dirichlet_boundary([project.tide, 0, 0])139 138 Bf = Field_boundary(project.event_sts+'.sts', 140 139 domain, mean_stage=project.tide, 141 140 time_thinning=1, 142 default_boundary= Bd,141 default_boundary=Dirichlet_boundary([0, 0, 0]), 143 142 boundary_polygon=bounding_polygon_sts, 144 143 use_cache=True,
Note: See TracChangeset
for help on using the changeset viewer.