Changeset 6967


Ignore:
Timestamp:
May 5, 2009, 3:04:01 PM (15 years ago)
Author:
jgriffin
Message:
 
File:
1 edited

Legend:

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

    r6936 r6967  
    1717# Note, the user needs to set up the directory system accordingly
    1818state = 'australia_ph2'
    19 scenario_name = 'bamaga'
     19scenario_name = 'gulf'
    2020
    2121#-------------------------------------------------------------------------------
     
    2626# One or all can be changed each time the run_model script is executed
    2727
    28 central_meridian = 143.5 # Central meridian for projection (optional)
     28central_meridian = 139.0 # 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     event_number = 31975    # the event number or the mux file name
    35 
    36 event_number_list = [31975, 51390, 63735] # To piggy back multiple events
     30##import sys
     31##if len(sys.argv) > 1:
     32##    event_number = int(sys.argv[1])
     33##else:
     34
     35event_number = 64977    #71114    # the event number or the mux file name
     36
     37#event_number_list = [31975, 51390, 63735] # To piggy back multiple events
    3738
    3839tide = 0                # difference between MSL and HAT
     
    4041friction=0.01           # manning's friction coefficient
    4142starttime=0             # start time for simulation
    42 finaltime=60000 # final time for simulation
    43 setup = 'final'         # This can be one of three values
     43finaltime=1000 # final time for simulation
     44setup = 'trial'         # This can be one of three values
    4445                        #    trial - coarsest mesh, fast
    4546                        #    basic - coarse mesh
     
    4748
    4849# index is only used when wave = Tb
    49 index = 2000            # index from the PTHA - Y2000 0.257m
     50index = 1914            # index from the PTHA - Y2000 0.257m
    5051wave = 'Tb'             # Bf (sts wave) Tb (index wave)
    5152
     
    7879# Used in build_elevation.py
    7980# Format for ascii grids, as produced in ArcGIS + a projection file
    80 ascii_grid_filenames = ['grid250m_pro'] # 250m grid 2005
     81ascii_grid_filenames = ['gulf_large'] # 250m grid 2005
    8182
    8283# Format for points is x,y,elevation (with header)
     
    105106# Used in build_elevation.py
    106107# Format for points: easting,northing (no header)
    107 bounding_polygon_filename = 'bounding_polygon.csv'
     108bounding_polygon_filename = 'bounding_polygon_large.csv'
    108109bounding_polygon_maxarea = 125000
    109110
     
    142143# Thinned ordering file from Hazard Map (geographic)
    143144# Format is index,latitude,longitude (with header)
    144 urs_order_filename = 'urs_order_simple.csv'
     145urs_order_filename = 'urs_order_simple_large.csv'
    145146
    146147# Landward bounding points
    147148# Format easting,northing (no header)
    148 landward_boundary_filename = 'landward_boundary.csv'
     149landward_boundary_filename = 'landward_boundary_large.csv'
    149150
    150151# MUX input filename.
Note: See TracChangeset for help on using the changeset viewer.