Changeset 7204


Ignore:
Timestamp:
Jun 15, 2009, 4:59:29 PM (14 years ago)
Author:
myall
Message:
 
Location:
anuga_work/production
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/Broome_2009/project.py

    r7201 r7204  
    8080# Used in run_model.py
    8181# Format for points easting,northing (no header)                   
    82 interior_regions_data = [['Shallow_Water_MH.csv', 1500],
     82interior_regions_data = [['Shallow_Water_large_MH.csv', 10000],
    8383                         ['AoS_MH.csv', 800],
    8484                         ['AoI_MH.csv', 500],
     
    8686                         ['AoI_north_MH.csv', 500],
    8787##                         ['bay_coast_MH.csv', 5000],
    88                          ['bay_coast_small_MH.csv', 800]]
     88                         ['bay_coast_small_MH.csv', 1500]]
    8989PriorityArea_filename = None
    9090   
  • anuga_work/production/Broome_2009/run_model.py

    r7179 r7204  
    9696
    9797# Build mesh and domain
     98print 'interior regions:', project.interior_regions
     99
    98100domain = create_domain_from_regions(bounding_polygon_sts,
    99101                                    boundary_tags=boundary_tags,
  • anuga_work/production/pt_hedland_2009/build_urs_boundary.py

    r7194 r7204  
    139139                ordering_filename=project.urs_order,
    140140                weights=mux_weights,
     141                central_meridian=project.central_meridian,
    141142                zone=project.zone,
    142143                verbose=True)
     
    157158                ordering_filename=order_filename,
    158159                weights=mux_weights,
     160                central_meridian=project.central_meridian,
     161                zone=project.zone,
    159162                verbose=True)
    160163
  • anuga_work/production/pt_hedland_2009/project.py

    r7201 r7204  
    2626# One or all can be changed each time the run_model script is executed
    2727tide = 0.0              # 3.6 difference between MSL and HAT in metres
    28 zone = 51               # specify UTM zone of model
     28zone = 50               # specify UTM zone of model
     29central_meridian = None
    2930event_number = 27283    # 27255,27283 the event number or the mux file name
    3031alpha = 0.1             # smoothing parameter for mesh
  • anuga_work/production/pt_hedland_2009/run_model.py

    r7194 r7204  
    8989# 4 points equals 5 segments start at N
    9090boundary_tags={'back': range(num_ocean_segments+1,
    91                              num_ocean_segments+num_land_points-1), #last segment will be side
     91                             num_ocean_segments+num_land_points),
    9292               'side': [num_ocean_segments,
    93                         num_ocean_segments+num_land_points-1, # three side segments total
    9493                        num_ocean_segments+num_land_points],
    9594               'ocean': range(num_ocean_segments)}
Note: See TracChangeset for help on using the changeset viewer.