Changeset 6617 for anuga_work/production/australia_ph2/esperance/project.py
- Timestamp:
- Mar 25, 2009, 4:26:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/esperance/project.py
r6484 r6617 27 27 # One or all can be changed each time the run_model script is executed 28 28 tide = 0 # difference between MSL and HAT 29 zone = 51 # specify zone of model 29 central_meridian = 123.0 # Central meridian for projection (optional) 30 30 event_number = 58367 # the event number or the mux file name 31 31 # main events: 27329 (java), 64449 (sandwich), 58367 (puysegur) … … 46 46 # final - fine mesh, slowest 47 47 48 internal_polygon = False 49 48 50 #------------------------------------------------------------------------------- 49 51 # Output filename … … 57 59 #------------------------------------------------------------------------------- 58 60 59 output_comment = [setup, tide, event_number, index, wave] 61 if internal_polygon: 62 internal_poly_comment = 'internal' 63 else: 64 internal_poly_comment = None 65 66 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 60 67 61 68 #------------------------------------------------------------------------------- … … 87 94 # Format for points easting,northing (no header) 88 95 interior_regions_data = [] 96 97 # add an internal polygon to force different mesh generation 98 # used to test for discretisation error when building elevation 99 # make sure file is in same folder as interior regions and bouding polygon; 100 # format is same (2 column .csv; easting, northing; no header) 101 if internal_polygon: 102 interior_regions_data.append(['internal_polygon.csv', 103 bounding_polygon_maxarea]) 89 104 90 105 # LAND - used to set the initial stage/water to be offcoast only
Note: See TracChangeset
for help on using the changeset viewer.