Changeset 7201 for anuga_work
- Timestamp:
- Jun 12, 2009, 5:20:26 PM (16 years ago)
- Location:
- anuga_work/production
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/Broome_2009/project.py
r7179 r7201 27 27 tide = 0.0 # difference between MSL and HAT in metres 28 28 zone = 51 # specify UTM zone of model 29 event_number = 272 79 # 58280, 64477the event number or the mux file name29 event_number = 27255 # 27283 the event number or the mux file name 30 30 alpha = 0.1 # smoothing parameter for mesh 31 31 friction=0.01 # manning's friction coefficient … … 33 33 finaltime=1000 # final time for simulation 34 34 35 setup = ' trial' # This can be one of three values35 setup = 'final' # This can be one of three values 36 36 # trial - coarsest mesh, fast 37 37 # basic - coarse mesh … … 74 74 # Used in build_elevation.py 75 75 # Format for points easting,northing (no header) 76 bounding_polygon_filename = ' bounding_polygon.csv'77 bounding_polygon_maxarea = 100000 076 bounding_polygon_filename = 'poly_all.csv' 77 bounding_polygon_maxarea = 100000 78 78 79 79 # INTERIOR REGIONS - for designing the mesh … … 81 81 # Format for points easting,northing (no header) 82 82 interior_regions_data = [['Shallow_Water_MH.csv', 1500], 83 ['AoS_MH ', 800],84 ['AoI_MH ', 500],85 ['AoS_north_MH ', 800],86 ['AoI_north_MH ', 500],87 ['bay_coast_MH', 1500],88 ['bay_coast_small_MH ', 800]]89 PriorityArea_filename = 'PriorityAreas.csv'83 ['AoS_MH.csv', 800], 84 ['AoI_MH.csv', 500], 85 ['AoS_north_MH.csv', 800], 86 ['AoI_north_MH.csv', 500], 87 ## ['bay_coast_MH.csv', 5000], 88 ['bay_coast_small_MH.csv', 800]] 89 PriorityArea_filename = None 90 90 91 91 # LAND - used to set the initial stage/water to be offcoast only -
anuga_work/production/pt_hedland_2009/project.py
r7194 r7201 25 25 # Model specific parameters. 26 26 # One or all can be changed each time the run_model script is executed 27 tide = 0.0 #difference between MSL and HAT in metres27 tide = 0.0 # 3.6 difference between MSL and HAT in metres 28 28 zone = 51 # specify UTM zone of model 29 event_number = 272 55 #27283 the event number or the mux file name29 event_number = 27283 # 27255,27283 the event number or the mux file name 30 30 alpha = 0.1 # smoothing parameter for mesh 31 31 friction=0.01 # manning's friction coefficient … … 57 57 # ELEVATION DATA 58 58 # Used in build_elevation.py 59 ascii_grid_filenames = ['town_topo_10m', 60 'cable_250m', 61 'inferred_north', 62 'inferred_south', 63 'north_250m', 64 'other_topo_250m', 65 'south_250m'] 66 point_filenames = ['Broome_coastline.txt','Broome_Bathymetry.txt'] 59 ascii_grid_filenames = ['dli_dem_clip'] 60 point_filenames = ['coastline.txt','port_hedland_new2.txt'] 67 61 68 62 ### Add csv header list to all files in point_filenames … … 75 69 # Format for points easting,northing (no header) 76 70 bounding_polygon_filename = 'poly_all.csv' 77 bounding_polygon_maxarea = 100000 071 bounding_polygon_maxarea = 100000 78 72 79 73 # INTERIOR REGIONS - for designing the mesh 80 74 # Used in run_model.py 81 75 # Format for points easting,northing (no header) 82 interior_regions_data = [['Shallow_Water_MH.csv', 1500], 83 ['AoS_MH.csv', 800], 84 ['AoI_MH.csv', 500], 85 ['AoS_north_MH.csv', 800], 86 ['AoI_north_MH.csv', 500], 87 ## ['bay_coast_MH.csv', 5000], 88 ['bay_coast_small_MH.csv', 800]] 76 interior_regions_data = [['shallow_water.csv', 5000], 77 ['area_of_significance.csv', 1500], 78 ['area_of_interest.csv', 800]] 79 89 80 PriorityArea_filename = None 90 81 91 82 # LAND - used to set the initial stage/water to be offcoast only 92 # Used in run_model.py. Format for points easting,northing (no header)93 land_initial_conditions_filename = 'initial_conditions_ mainland.csv'83 # Used in run_model.py. Format for points easting,northing,id,value 84 land_initial_conditions_filename = 'initial_conditions_comb.csv' 94 85 95 86 # GAUGES - for creating timeseries at a specific point … … 118 109 # Landward bounding points 119 110 # Format easting,northing (no header) 120 landward_boundary_filename = 'landward_bound ary_MH.csv'111 landward_boundary_filename = 'landward_bounding_polygon.csv' 121 112 122 113 # MUX input filename.
Note: See TracChangeset
for help on using the changeset viewer.