Changeset 7204
- Timestamp:
- Jun 15, 2009, 4:59:29 PM (14 years ago)
- Location:
- anuga_work/production
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/Broome_2009/project.py
r7201 r7204 80 80 # Used in run_model.py 81 81 # Format for points easting,northing (no header) 82 interior_regions_data = [['Shallow_Water_ MH.csv', 1500],82 interior_regions_data = [['Shallow_Water_large_MH.csv', 10000], 83 83 ['AoS_MH.csv', 800], 84 84 ['AoI_MH.csv', 500], … … 86 86 ['AoI_north_MH.csv', 500], 87 87 ## ['bay_coast_MH.csv', 5000], 88 ['bay_coast_small_MH.csv', 800]]88 ['bay_coast_small_MH.csv', 1500]] 89 89 PriorityArea_filename = None 90 90 -
anuga_work/production/Broome_2009/run_model.py
r7179 r7204 96 96 97 97 # Build mesh and domain 98 print 'interior regions:', project.interior_regions 99 98 100 domain = create_domain_from_regions(bounding_polygon_sts, 99 101 boundary_tags=boundary_tags, -
anuga_work/production/pt_hedland_2009/build_urs_boundary.py
r7194 r7204 139 139 ordering_filename=project.urs_order, 140 140 weights=mux_weights, 141 central_meridian=project.central_meridian, 141 142 zone=project.zone, 142 143 verbose=True) … … 157 158 ordering_filename=order_filename, 158 159 weights=mux_weights, 160 central_meridian=project.central_meridian, 161 zone=project.zone, 159 162 verbose=True) 160 163 -
anuga_work/production/pt_hedland_2009/project.py
r7201 r7204 26 26 # One or all can be changed each time the run_model script is executed 27 27 tide = 0.0 # 3.6 difference between MSL and HAT in metres 28 zone = 51 # specify UTM zone of model 28 zone = 50 # specify UTM zone of model 29 central_meridian = None 29 30 event_number = 27283 # 27255,27283 the event number or the mux file name 30 31 alpha = 0.1 # smoothing parameter for mesh -
anuga_work/production/pt_hedland_2009/run_model.py
r7194 r7204 89 89 # 4 points equals 5 segments start at N 90 90 boundary_tags={'back': range(num_ocean_segments+1, 91 num_ocean_segments+num_land_points -1), #last segment will be side91 num_ocean_segments+num_land_points), 92 92 'side': [num_ocean_segments, 93 num_ocean_segments+num_land_points-1, # three side segments total94 93 num_ocean_segments+num_land_points], 95 94 'ocean': range(num_ocean_segments)}
Note: See TracChangeset
for help on using the changeset viewer.