Changeset 7004 for anuga_work/production/gold_coast_2009
- Timestamp:
- May 8, 2009, 4:25:40 PM (16 years ago)
- Location:
- anuga_work/production/gold_coast_2009
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/gold_coast_2009/build_urs_boundary.py
r6558 r7004 140 140 weights=mux_weights, 141 141 zone=project.zone, 142 mean_stage=project.tide,143 142 verbose=True) 144 143 else: # a single mux stem file, assume 1.0 weight … … 158 157 ordering_filename=order_filename, 159 158 weights=mux_weights, 160 mean_stage=project.tide,161 159 verbose=True) 162 160 -
anuga_work/production/gold_coast_2009/export_results_max.py
r6733 r7004 22 22 directory = project.output_folder 23 23 24 #time_dir1 = '20090327_135943_run_final_0_51469_lfountai'25 time_dir2 = '20090327_153206_run_final_0_51348_lfountai'26 time_dir3 = '20090327_153231_run_final_0_51253_lfountai'27 time_dir4 = '20090327_153304_run_final_0_50863_lfountai'28 time_dir5 = '20090327_153403_run_final_0_51423_lfountai'29 time_dir6 = '20090327_153602_run_final_0_62833_lfountai' 30 time_dirs = [time_dir 2, time_dir3, time_dir4, time_dir5, time_dir6]24 time_dir1 = '20090327_135943_run_final_0_51469_lfountai' 25 ##time_dir2 = '20090327_153206_run_final_0_51348_lfountai' 26 ##time_dir3 = '20090327_153231_run_final_0_51253_lfountai' 27 ##time_dir4 = '20090327_153304_run_final_0_50863_lfountai' 28 ##time_dir5 = '20090327_153403_run_final_0_51423_lfountai' 29 ##time_dir6 = '20090327_153602_run_final_0_62833_lfountai' 30 time_dirs = [time_dir1] #time_dir2, time_dir3, time_dir4, time_dir5, time_dir6] 31 31 32 32 ##cellsize = 250 -
anuga_work/production/gold_coast_2009/get_timeseries.py
r6733 r7004 19 19 directory = project.output_folder 20 20 21 #time_dir1 = '20090327_135943_run_final_0_51469_lfountai'22 time_dir2 = '20090327_153206_run_final_0_51348_lfountai'23 time_dir3 = '20090327_153231_run_final_0_51253_lfountai'24 time_dir4 = '20090327_153304_run_final_0_50863_lfountai'21 time_dir1 = '20090327_135943_run_final_0_51469_lfountai' 22 ##time_dir2 = '20090327_153206_run_final_0_51348_lfountai' 23 ##time_dir3 = '20090327_153231_run_final_0_51253_lfountai' 24 ##time_dir4 = '20090327_153304_run_final_0_50863_lfountai' 25 25 time_dir5 = '20090327_153403_run_final_0_51423_lfountai' 26 26 time_dir6 = '20090327_153602_run_final_0_62833_lfountai' 27 time_dirs = [time_dir 2, time_dir3, time_dir4, time_dir5, time_dir6]27 time_dirs = [time_dir1, time_dir5, time_dir6] #time_dir2, time_dir3, time_dir4, time_dir5, time_dir6] 28 28 29 29 for time_dir in time_dirs: -
anuga_work/production/gold_coast_2009/project.py
r6657 r7004 27 27 # One or all can be changed each time the run_model script is executed 28 28 29 model_description = 'small_v2' 30 31 tide = 0 # difference between MSL and HAT in metres 32 zone = 56 # specify zone of model 33 ##event_number = 51469 # the event number or the mux file name with: 34 # 2.32m waveheight 35 ##event_number = 51423 # 1.5m waveheight 36 ##event_number= 51348 # 1.0m waveheight 37 ##event_number = 51253 # 0.5m wavheight 38 ##event_number = 50863 # 0.3m wavheight from New Hebridies 39 event_number = 62833 # 0.3m waveheight from SE Solomons 29 # difference between MSL and HAT in metres 30 central_meridian = None # Central meridian for projection (optional) 31 zone = 56 32 import sys 33 if len(sys.argv) > 1: 34 event_number = int(sys.argv[1]) 35 else: 36 event_number = 51469 # the event number or the mux file name 37 38 event_number_list = [51469, 50863] # To piggy back multiple events 39 40 tide = 0 40 41 alpha = 0.1 # smoothing parameter for mesh 41 42 friction=0.01 # manning's friction coefficient … … 59 60 #------------------------------------------------------------------------------- 60 61 61 output_comment = [setup, tide, model_description,event_number]62 output_comment = [setup, tide, event_number] 62 63 63 64 #------------------------------------------------------------------------------- … … 82 83 # Used in build_elevation.py 83 84 # Format for points easting,northing (no header) 84 bounding_polygon_filename = 'bounding_polygon_sml _v2.csv'85 bounding_polygon_filename = 'bounding_polygon_sml.csv' 85 86 bounding_polygon_maxarea = 125000 86 87 … … 88 89 # Used in run_model.py 89 90 # Format for points easting,northing (no header) 90 interior_regions_data = [['buffer_3km_simplify_sml_v2.csv', 500]] 91 interior_regions_data = [['area_of_interest.csv', 500], 92 ['intermediate.csv', 25000]] 91 93 92 94 # LAND - used to set the initial stage/water to be offcoast only 93 95 # Used in run_model.py. Format for points easting,northing (no header) 94 land_initial_conditions_filename = [['initial_conditions_sml _v2.csv', 0]]96 land_initial_conditions_filename = [['initial_conditions_sml.csv', 0]] 95 97 96 98 # GAUGES - for creating timeseries at a specific point … … 111 113 # Thinned ordering file from Hazard Map (geographic) 112 114 # Format is index,latitude,longitude (with header) 113 urs_order_filename = 'urs_order_sml _v2.csv'115 urs_order_filename = 'urs_order_sml.csv' 114 116 115 117 # Landward bounding points 116 118 # Format easting,northing (no header) 117 landward_boundary_filename = 'landward_boundary_sml _v2.csv'119 landward_boundary_filename = 'landward_boundary_sml.csv' 118 120 119 121 # MUX input filename.
Note: See TracChangeset
for help on using the changeset viewer.