Changeset 6385


Ignore:
Timestamp:
Feb 23, 2009, 4:32:32 PM (16 years ago)
Author:
kristy
Message:

updated for eucla_motel

File:
1 edited

Legend:

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

    r6384 r6385  
    1616# this section needs to be updated to reflect the modelled community.
    1717# Note, the user needs to set up the directory system accordingly
    18 state = 'western_australia'
    19 scenario_name = 'busselton'
    20 scenario_folder = 'busselton_tsunami_scenario'
     18state = 'australia_ph2'
     19scenario_name = 'eucla_motel'
     20scenario_folder = scenario_name
    2121
    2222#-------------------------------------------------------------------------------
     
    2727# One or all can be changed each time the run_model script is executed
    2828tide = 0                # difference between MSL and HAT
    29 zone = 50               # specify zone of model
    30 event_number = 27197    # the event number or the mux file name
     29zone = 52               # specify zone of model
     30event_number = 65371    # the event number or the mux file name
    3131alpha = 0.1             # smoothing parameter for mesh
    3232friction=0.01           # manning's friction coefficient
    3333starttime=0             # start time for simulation
    34 finaltime=80000         # final time for simulation
    35 
    36 setup = 'final'         # This can be one of three values
     34finaltime=1000          # final time for simulation
     35
     36setup = 'trial'         # This can be one of three values
    3737                        #    trial - coarsest mesh, fast
    3838                        #    basic - coarse mesh
     
    5959# Used in build_elevation.py
    6060# Format for ascii grids, as produced in ArcGIS + a projection file
    61 ascii_grid_filenames = ['busselton_v2',   # Topo
    62                         'grid_250m_clip'] # Busselton Topo
     61ascii_grid_filenames = [] # 250m grid 2005
    6362
    6463# Format for point is x,y,elevation (with header)
    65 point_filenames = ['Busselton_Contour0.txt',    # Coastline
    66                    'Busselton_BeachSurvey.txt', # Beach survey
    67                    'Busselton_NavyFinal.txt',   # Bathymetry
    68                    'Busselton_Chart.txt',       # Bathymetry Charts
    69                    'Busselton_Digitised.txt',   # Digitised Fairsheet
    70                    'Busselton_250m.txt',        # 250m
    71                    'Bunbury_TIN.txt',           # Bunbury aoi TIN'd in ArcGIS
    72                    'Busselton_TIN.txt',         # Busselton aoi TIN'd in ArcGIS
    73                    'XYAHD_clip.txt']            # To extend boundary
     64point_filenames = ['grid250m_pts.txt'] # 250m grid 2005
    7465
    7566### Add csv header list to all files in point_filenames
     
    8778# Used in run_model.py
    8879# Format for points easting,northing (no header)                   
    89 interior_regions_data = [['busselton_1km.csv', 500],
    90                          ['bunbury_1km.csv', 500],
    91                          ['busselton_2km.csv', 10000],
    92                          ['bunbury_2km.csv', 10000],
    93                          ['island1.csv', 10000],
    94                          ['island2.csv', 10000],
    95                          ['coast_5km_d20m.csv', 40000]]
     80interior_regions_data = []
    9681
    9782# LAND - used to set the initial stage/water to be offcoast only
    9883# Used in run_model.py.  Format for points easting,northing (no header)
    99 land_initial_conditions_filename = [['initial_condition_extend.csv', 0],
    100                                     ['initial_condition_marina.csv', 0]]
     84land_initial_conditions_filename = []
    10185
    10286# GAUGES - for creating timeseries at a specific point
     
    117101# Thinned ordering file from Hazard Map (geographic)
    118102# Format is index,latitude,longitude (with header)
    119 urs_order_filename = 'thinned_boundary_ordering_extend.csv'
     103urs_order_filename = 'urs_order.csv'
    120104
    121105# Landward bounding points
    122106# Format easting,northing (no header)
    123 landward_boundary_filename = 'landward_boundary_extend.csv'
     107landward_boundary_filename = 'landward_boundary.csv'
    124108
    125109# MUX input filename.
Note: See TracChangeset for help on using the changeset viewer.