Changeset 6617
- Timestamp:
- Mar 25, 2009, 4:26:41 PM (15 years ago)
- Location:
- anuga_work/production/australia_ph2
- Files:
-
- 2 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/adelaide/project.py
r6595 r6617 26 26 # One or all can be changed each time the run_model script is executed 27 27 28 central_meridian = 137.5 # This is the nonstandard projection needed28 central_meridian = 137.5 # Central meridian for projection (optional) 29 29 tide = 0 # difference between MSL and HAT 30 30 event_number = 64322 # the event number … … 47 47 # final - fine mesh, slowest 48 48 49 internal_polygon = False 50 49 51 #------------------------------------------------------------------------------- 50 52 # Output filename … … 58 60 #------------------------------------------------------------------------------- 59 61 60 output_comment = [setup, tide, event_number, index, wave] 62 if internal_polygon: 63 internal_poly_comment = 'internal' 64 else: 65 internal_poly_comment = None 66 67 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 61 68 62 69 #------------------------------------------------------------------------------- … … 89 96 # Format for points easting,northing (no header) 90 97 interior_regions_data = [] 98 99 # add an internal polygon to force different mesh generation 100 # used to test for discretisation error when building elevation 101 # make sure file is in same folder as interior regions and bouding polygon; 102 # format is same (2 column .csv; easting, northing; no header) 103 if internal_polygon: 104 interior_regions_data.append(['internal_polygon.csv', 105 bounding_polygon_maxarea]) 91 106 92 107 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/albany/project.py
r6579 r6617 26 26 # Model specific parameters. 27 27 # One or all can be changed each time the run_model script is executed 28 tide = 0.00001 # difference between MSL and HAT 29 zone = 50 # specify zone of model 28 tide = 0 # difference between MSL and HAT 30 29 event_number = 64344 # the event number or the mux file name 31 30 # selected events: 27319 (java), 64344 (sandwich), 46697 (midamerica), … … 47 46 # basic - coarse mesh 48 47 # final - fine mesh, slowest 48 49 internal_polygon = True 49 50 50 51 #------------------------------------------------------------------------------- … … 59 60 #------------------------------------------------------------------------------- 60 61 61 output_comment = [setup, tide, event_number, index, wave] 62 if internal_polygon: 63 internal_poly_comment = 'internal' 64 else: 65 internal_poly_comment = None 66 67 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 68 62 69 63 70 #------------------------------------------------------------------------------- … … 88 95 # Format for points easting,northing (no header) 89 96 ##interior_regions_data = [] 90 interior_regions_data = [['coast_to_20km_polygon.csv', 91 bounding_polygon_maxarea]] 97 interior_regions_data = [] 98 99 # add an internal polygon to force different mesh generation 100 # used to test for discretisation error when building elevation 101 # make sure file is in same folder as interior regions and bouding polygon; 102 # format is same (2 column .csv; easting, northing; no header) 103 if internal_polygon: 104 interior_regions_data.append(['coast_to_20km_polygon.csv', 105 bounding_polygon_maxarea]) 92 106 93 107 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/broome/project.py
r6601 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 = 70468 # (sumba) the event number or the mux file name 31 31 alpha = 0.1 # smoothing parameter for mesh … … 43 43 # basic - coarse mesh 44 44 # final - fine mesh, slowest 45 46 internal_polygon = False 45 47 46 48 #------------------------------------------------------------------------------- … … 55 57 #------------------------------------------------------------------------------- 56 58 57 output_comment = [setup, tide, event_number, index, wave] 59 if internal_polygon: 60 internal_poly_comment = 'internal' 61 else: 62 internal_poly_comment = None 63 64 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 58 65 59 66 #------------------------------------------------------------------------------- … … 79 86 # Format for points easting,northing (no header) 80 87 interior_regions_data = [] 88 89 # add an internal polygon to force different mesh generation 90 # used to test for discretisation error when building elevation 91 # make sure file is in same folder as interior regions and bouding polygon; 92 # format is same (2 column .csv; easting, northing; no header) 93 if internal_polygon: 94 interior_regions_data.append(['internal_polygon.csv', 95 bounding_polygon_maxarea]) 81 96 82 97 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/carnarvon/project.py
r6601 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 = 49 # specify zone of model 29 central_meridian = 111.0 # Central meridian for projection (optional) 30 30 event_number = 27285 # the event number or the mux file name 31 31 # events: 27285 (java), 68794 (sumatra), 70375 (sumba) … … 43 43 # basic - coarse mesh 44 44 # final - fine mesh, slowest 45 46 internal_polygon = False 45 47 46 48 #------------------------------------------------------------------------------- … … 55 57 #------------------------------------------------------------------------------- 56 58 57 output_comment = [setup, tide, event_number, index, wave] 59 if internal_polygon: 60 internal_poly_comment = 'internal' 61 else: 62 internal_poly_comment = None 63 64 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 58 65 59 66 #------------------------------------------------------------------------------- … … 85 92 # Format for points easting,northing (no header) 86 93 interior_regions_data = [] 94 95 # add an internal polygon to force different mesh generation 96 # used to test for discretisation error when building elevation 97 # make sure file is in same folder as interior regions and bouding polygon; 98 # format is same (2 column .csv; easting, northing; no header) 99 if internal_polygon: 100 interior_regions_data.append(['internal_polygon.csv', 101 bounding_polygon_maxarea]) 87 102 88 103 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/ceduna/project.py
r6610 r6617 49 49 # final - fine mesh, slowest 50 50 51 internal_polygon = False 52 51 53 #------------------------------------------------------------------------------- 52 54 # Output filename … … 60 62 #------------------------------------------------------------------------------- 61 63 62 output_comment = [setup, tide, event_number, index, wave,] 64 if internal_polygon: 65 internal_poly_comment = 'internal' 66 else: 67 internal_poly_comment = None 68 69 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 63 70 64 71 #------------------------------------------------------------------------------- … … 89 96 # Format for points easting,northing (no header) 90 97 interior_regions_data = [] 98 99 # add an internal polygon to force different mesh generation 100 # used to test for discretisation error when building elevation 101 # make sure file is in same folder as interior regions and bouding polygon; 102 # format is same (2 column .csv; easting, northing; no header) 103 if internal_polygon: 104 interior_regions_data.append(['internal_polygon.csv', 105 bounding_polygon_maxarea]) 91 106 92 107 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/darwin/project.py
r6579 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 = 52 # specify zone of model 29 central_meridian = 129.0 # for projection (necessary for nonstandard) 30 30 event_number = 70906 # the event number or the mux file name 31 31 # contributing events: 17898 (Flores), 64977 (Seram), 70906 (Sumba_normal), … … 48 48 # for 1860 - point to north of Darwin, large wave from event off Timor 49 49 # event_number 71065 #(timor - mag 7.4, prob 1e-4) 50 51 internal_polygon = False 50 52 51 53 #------------------------------------------------------------------------------- … … 60 62 #------------------------------------------------------------------------------- 61 63 62 output_comment = [setup, tide, event_number, index, wave] 64 if internal_polygon: 65 internal_poly_comment = 'internal' 66 else: 67 internal_poly_comment = None 68 69 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 63 70 64 71 #------------------------------------------------------------------------------- … … 91 98 #interior_regions_data = [] 92 99 interior_regions_data = [['poly_island.csv',200000000]] # large triangles on island 100 101 # add an internal polygon to force different mesh generation 102 # used to test for discretisation error when building elevation 103 # make sure file is in same folder as interior regions and bouding polygon; 104 # format is same (2 column .csv; easting, northing; no header) 105 if internal_polygon: 106 interior_regions_data.append(['internal_polygon.csv', 107 bounding_polygon_maxarea]) 93 108 94 109 # LAND - used to set the initial stage/water to be offcoast only -
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 -
anuga_work/production/australia_ph2/eucla_motel/project.py
r6581 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 = 52 # specify zone of model 29 central_meridian = 129.0 # Central meridian for projection (optional) 30 30 event_number = 64449 # the event number or the mux file name 31 31 # sources: 64449 (sandwich), 68755 (sumatra), 58332 (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 #------------------------------------------------------------------------------- … … 86 93 # Format for points easting,northing (no header) 87 94 interior_regions_data = [] 95 96 # add an internal polygon to force different mesh generation 97 # used to test for discretisation error when building elevation 98 # make sure file is in same folder as interior regions and bouding polygon; 99 # format is same (2 column .csv; easting, northing; no header) 100 if internal_polygon: 101 interior_regions_data.append(['internal_polygon.csv', 102 bounding_polygon_maxarea]) 88 103 89 104 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/perth/project.py
r6549 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 = 50 # specify zone of model 29 central_meridian = 117.0 # Central meridian for projection (optional) 30 30 event_number = 27240 # the event number or the mux file name 31 31 # events: 11126 (andaman), 27240 (java), 64454 (sandwich) … … 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 #------------------------------------------------------------------------------- … … 86 93 # Format for points easting,northing (no header) 87 94 interior_regions_data = [] 95 96 # add an internal polygon to force different mesh generation 97 # used to test for discretisation error when building elevation 98 # make sure file is in same folder as interior regions and bouding polygon; 99 # format is same (2 column .csv; easting, northing; no header) 100 if internal_polygon: 101 interior_regions_data.append(['internal_polygon.csv', 102 bounding_polygon_maxarea]) 88 103 89 104 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/australia_ph2/wyndham/project.py
r6601 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 = 52 # specify zone of model 29 central_meridian = 129.0 # Central meridian for projection (optional) 30 30 event_number = 64962 # the event number or the mux file name 31 31 # contributing events: 17918 (Flores), 64962 (Seram), 70920 (Sumba_normal), … … 44 44 # basic - coarse mesh 45 45 # final - fine mesh, slowest 46 47 internal_polygon = False 46 48 47 49 #------------------------------------------------------------------------------- … … 56 58 #------------------------------------------------------------------------------- 57 59 58 output_comment = [setup, tide, event_number, index, wave] 60 if internal_polygon: 61 internal_poly_comment = 'internal' 62 else: 63 internal_poly_comment = None 64 65 output_comment = [setup, tide, event_number, index, wave, internal_poly_comment] 59 66 60 67 #------------------------------------------------------------------------------- … … 86 93 # Format for points easting,northing (no header) 87 94 interior_regions_data = [] 95 96 # add an internal polygon to force different mesh generation 97 # used to test for discretisation error when building elevation 98 # make sure file is in same folder as interior regions and bouding polygon; 99 # format is same (2 column .csv; easting, northing; no header) 100 if internal_polygon: 101 interior_regions_data.append(['internal_polygon.csv', 102 bounding_polygon_maxarea]) 88 103 89 104 # LAND - used to set the initial stage/water to be offcoast only
Note: See TracChangeset
for help on using the changeset viewer.