Changeset 6972


Ignore:
Timestamp:
May 5, 2009, 6:12:03 PM (16 years ago)
Author:
Leharne
Message:

reverted to changeset:6966 with correct scenario information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/australia_ph2/bamaga/project.py

    r6967 r6972  
    1717# Note, the user needs to set up the directory system accordingly
    1818state = 'australia_ph2'
    19 scenario_name = 'gulf'
    20 
    21 #-------------------------------------------------------------------------------
    22 # Initial Conditions
     19scenario_name = 'bamaga'
     20
     21#-------------------------------------------------------------------------------
     22# Initial Conditions 
    2323#-------------------------------------------------------------------------------
    2424
     
    2626# One or all can be changed each time the run_model script is executed
    2727
    28 central_meridian = 139.0 # Central meridian for projection (optional)
     28central_meridian = 143.5 # Central meridian for projection (optional)
    2929zone = None
    30 ##import sys
    31 ##if len(sys.argv) > 1:
    32 ##    event_number = int(sys.argv[1])
    33 ##else:
    34 
    35 event_number = 64977    #71114    # the event number or the mux file name
    36 
    37 #event_number_list = [31975, 51390, 63735] # To piggy back multiple events
     30import sys
     31if len(sys.argv) > 1:
     32    event_number = int(sys.argv[1])
     33else:   
     34    event_number = 31975    # the event number or the mux file name
     35
     36event_number_list = [31975, 51390, 63735] # To piggy back multiple events
    3837
    3938tide = 0                # difference between MSL and HAT
    4039alpha = 0.1             # smoothing parameter for mesh
    41 friction=0.01           # manning's friction coefficient
     40friction = 0.01           # manning's friction coefficient
    4241starttime=0             # start time for simulation
    43 finaltime=1000 # final time for simulation
    44 setup = 'trial'         # This can be one of three values
     42finaltime=60000 # final time for simulation
     43setup = 'final'         # This can be one of three values
    4544                        #    trial - coarsest mesh, fast
    4645                        #    basic - coarse mesh
     
    4847
    4948# index is only used when wave = Tb
    50 index = 1914            # index from the PTHA - Y2000 0.257m
     49index = 2000            # index from the PTHA - Y2000 0.257m
    5150wave = 'Tb'             # Bf (sts wave) Tb (index wave)
    5251
     
    7978# Used in build_elevation.py
    8079# Format for ascii grids, as produced in ArcGIS + a projection file
    81 ascii_grid_filenames = ['gulf_large'] # 250m grid 2005
     80ascii_grid_filenames = ['grid250m_pro'] # 250m grid 2005
    8281
    8382# Format for points is x,y,elevation (with header)
     
    106105# Used in build_elevation.py
    107106# Format for points: easting,northing (no header)
    108 bounding_polygon_filename = 'bounding_polygon_large.csv'
     107bounding_polygon_filename = 'bounding_polygon.csv'
    109108bounding_polygon_maxarea = 125000
    110109
     
    143142# Thinned ordering file from Hazard Map (geographic)
    144143# Format is index,latitude,longitude (with header)
    145 urs_order_filename = 'urs_order_simple_large.csv'
     144urs_order_filename = 'urs_order_simple.csv'
    146145
    147146# Landward bounding points
    148147# Format easting,northing (no header)
    149 landward_boundary_filename = 'landward_boundary_large.csv'
     148landward_boundary_filename = 'landward_boundary.csv'
    150149
    151150# MUX input filename.
Note: See TracChangeset for help on using the changeset viewer.