Ignore:
Timestamp:
Jul 3, 2009, 4:47:17 PM (15 years ago)
Author:
rwilson
Message:
 
Location:
DVD_images/extra_files/GoldCoast/project
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • DVD_images/extra_files/GoldCoast/project/project.py

    r7205 r7300  
    3636    event_number = 51469    # the event number or the mux file name
    3737
    38 event_number_list = [51469, 50863, 51392] # To piggy back multiple events
    39 
    40 tide = 0
     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
     
    6077#-------------------------------------------------------------------------------
    6178
    62 output_comment = [setup, tide, '250m', event_number]
     79output_comment = [setup, tide, event_number]
    6380
    6481#-------------------------------------------------------------------------------
     
    6986# Used in build_elevation.py
    7087# Format for ascii grids, as produced in ArcGIS + a projection file
    71 ascii_grid_filenames = ['grid250m_all_pro'] # 2005 250m grid
    72 ##                      ['GC_DTM_30m']] # supplied DEM
     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
     
    89100# Used in run_model.py
    90101# Format for points easting,northing (no header)                   
    91 interior_regions_data = []
     102interior_regions_data = [['area_of_interest.csv', 500],
     103                         ['intermediate.csv', 25000]]
    92104
    93105# LAND - used to set the initial stage/water to be offcoast only
    94106# Used in run_model.py.  Format for points easting,northing (no header)
    95 land_initial_conditions_filename = [['initial_conditions_sml.csv', 0]]
     107land_initial_conditions_filename = [['initial_conditions.csv', 0]]
    96108
    97109# GAUGES - for creating timeseries at a specific point
     
    103115# Used in run_building_inundation.py
    104116# Format latitude,longitude etc (geographic)
    105 building_exposure_filename = 'gold_coast_res_clip.csv' # from NEXIS
     117building_exposure_filename = '' # from NEXIS
    106118
    107119# AREA OF IMAGES - Extent of each image to find out highest runup
     
    118130# Thinned ordering file from Hazard Map (geographic)
    119131# Format is index,latitude,longitude (with header)
    120 urs_order_filename = 'urs_order_sml.csv'
     132urs_order_filename = 'urs_order.csv'
    121133
    122134# Landward bounding points
    123135# Format easting,northing (no header)
    124 landward_boundary_filename = 'landward_boundary_sml.csv'
     136landward_boundary_filename = 'landward_boundary.csv'
    125137
    126138# MUX input filename.
     
    138150#-------------------------------------------------------------------------------
    139151
    140 # ASCII export grid for Gold Coast
    141 xminGold_Coast = 541500
    142 xmaxGold_Coast = 546000
    143 yminGold_Coast = 6893500
    144 ymaxGold_Coast = 6898500
    145 
    146 # ASCII export grid for dune study
    147 xminDune = 536710
    148 xmaxDune = 556150
    149 yminDune = 6881125
    150 ymaxDune = 6926860
     152
     153
    151154
    152155################################################################################
     
    172175# Output filename for elevation
    173176# this is a combination of all the data generated in build_elevation.py
    174 combined_elevation_basename = scenario_name + '_combined_elevation_250m'
     177combined_elevation_basename = scenario_name + '_combined_elevation'
    175178
    176179#-------------------------------------------------------------------------------
     
    246249    images = join(polygons_folder, images_filename)
    247250
    248 # full path to where MUX files (or meta-files) live
    249 mux_input = join(event_folder, mux_input_filename)
    250 
     251
  • DVD_images/extra_files/GoldCoast/project/setup_model.py

    r7205 r7300  
    7777    sanity_error = True
    7878
    79 # if multi_mux is True, check if multi-mux file exists
    80 if project.multi_mux:
    81     if not exists(project.mux_input):
    82         print ("Sorry, MUX input file '%s' doesn't exist"
    83                % project.mux_input)
    84         sanity_error = True
    85 
    8679#-----
    8780# If this directory don't exist, EventSelection hasn't been run.
Note: See TracChangeset for help on using the changeset viewer.