Changeset 7247


Ignore:
Timestamp:
Jun 23, 2009, 9:11:56 AM (15 years ago)
Author:
kristy
Message:

update for DVD

File:
1 edited

Legend:

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

    r7089 r7247  
    3434    event_number = int(sys.argv[1])
    3535else:   
    36     event_number = 51423    # the event number or the mux file name
    37 
    38 event_number_list = [51469, 50863] # To piggy back multiple events
    39 
    40 tide = 1.1
     36    event_number = 51469    # the event number or the mux file name
     37
     38event_number_list = [51469, 51392, 50863] # To piggy back multiple events
     39
     40# Event Details:
     41# Event 1 (51469)
     42# Source Zone = New Hebrides
     43# Return Period = 10 000 years
     44# Wave height at 100 m = 2.3 m
     45#
     46# Event 2 (51392)
     47# Source Zone = New Hebrides
     48# Return Period = 5000 years
     49# Wave height at 100 m = 1.7 m
     50#
     51# Event 3 (50863)
     52# Source Zone = New Hebrides
     53# Return Period = 200 years
     54# Wave height at 100 m = 0.3 m
     55
     56tide = 0                # Mean Sea Level = 0,
     57                        # Highest Astronomical Tide = 1.1 m for Gold Coast                       
    4158alpha = 0.1             # smoothing parameter for mesh
    42 friction=0.01           # manning's friction coefficient
    43 starttime=0             # start time for simulation
    44 finaltime=80000         # final time for simulation
     59friction = 0.01           # manning's friction coefficient
     60starttime = 0             # start time for simulation
     61finaltime = 80000         # final time for simulation
    4562
    4663setup = 'final'         # This can be one of three values
     
    6986# Used in build_elevation.py
    7087# Format for ascii grids, as produced in ArcGIS + a projection file
    71 ascii_grid_filenames = ['GC_DTM_30m',   # Supplied DTM
    72                         'grid250m'] # Supplemented data from 2005 250m grid
     88ascii_grid_filenames = []
    7389
    7490# Format for point is x,y,elevation (with header)
    7591point_filenames = []
    76 
    77 ### Add csv header list to all files in point_filenames
    78 ##headerlist = ['x', 'y', 'elevation']
    79 ##for f in point_filenames:
    80 ##    add_csv_header(join(topographies_folder, f), headerlist)
    8192
    8293# BOUNDING POLYGON - for data clipping and estimate of triangles in mesh
    8394# Used in build_elevation.py
    8495# Format for points easting,northing (no header)
    85 bounding_polygon_filename = 'bounding_polygon_sml.csv'
     96bounding_polygon_filename = 'bounding_polygon.csv'
    8697bounding_polygon_maxarea = 125000
    8798
     
    94105# LAND - used to set the initial stage/water to be offcoast only
    95106# Used in run_model.py.  Format for points easting,northing (no header)
    96 land_initial_conditions_filename = [['initial_conditions_sml.csv', 0]]
     107land_initial_conditions_filename = [['initial_conditions.csv', 0]]
    97108
    98109# GAUGES - for creating timeseries at a specific point
     
    104115# Used in run_building_inundation.py
    105116# Format latitude,longitude etc (geographic)
    106 building_exposure_filename = 'gold_coast_res_clip.csv' # from NEXIS
     117building_exposure_filename = '' # from NEXIS
    107118
    108119# AREA OF IMAGES - Extent of each image to find out highest runup
     
    119130# Thinned ordering file from Hazard Map (geographic)
    120131# Format is index,latitude,longitude (with header)
    121 urs_order_filename = 'urs_order_sml.csv'
     132urs_order_filename = 'urs_order.csv'
    122133
    123134# Landward bounding points
    124135# Format easting,northing (no header)
    125 landward_boundary_filename = 'landward_boundary_sml.csv'
     136landward_boundary_filename = 'landward_boundary.csv'
    126137
    127138# MUX input filename.
     
    139150#-------------------------------------------------------------------------------
    140151
    141 # ASCII export grid for Gold Coast
    142 xminGold_Coast = 541500
    143 xmaxGold_Coast = 546000
    144 yminGold_Coast = 6893500
    145 ymaxGold_Coast = 6898500
    146 
    147 # ASCII export grid for dune study
    148 xminDune = 536710
    149 xmaxDune = 556150
    150 yminDune = 6881125
    151 ymaxDune = 6926860
     152
     153
    152154
    153155################################################################################
     
    258260mux_input = join(event_folder, mux_input_filename)
    259261
     262
Note: See TracChangeset for help on using the changeset viewer.