Ignore:
Timestamp:
Mar 9, 2010, 1:54:17 PM (13 years ago)
Author:
fountain
Message:

updates to bunbury model to refine elevation around leschenault inlet and estuary and include storm gates

File:
1 edited

Legend:

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

    r7647 r7657  
    8585                   'Busselton_Chart_Clip_ss.txt',               # Clipped from Busselton_Chart  - see Busselton Tsunami Scenario 2009
    8686                   'Busselton_NavyFinal_Clip_ss.txt',   # Clipped from Busselton_NavyFinal - see Busselton Tsunami Scenario 2009
    87                    'Leschenault_TIN.txt',               # TIN created over the Leschenault Estuary
    88                    'Leschenault_inlet_TIN.txt'          # TIN created over the Leschenault Inlet
    89                    'DPI5U1A02_01a_edited.txt',          # Bathymetric LiDAR from DPI - split into manageable pieces
    90                    'DPI5U1A02_01b_edited.txt', 
    91                    'DPI5U1A02_01c_edited.txt',
     87                   'DPI5U1A02_01a_edited.txt',          # Bathymetric LiDAR from DPI - split into manageable pieces and edited so
     88                   'DPI5U1A02_01b_edited.txt',          # depths below 0 m are negative, and all soundings on land (ie positive)
     89                   'DPI5U1A02_01c_edited.txt',          # are removed as these are not corrected to "bare earth".
    9290                   'DPI5U1A02_01d_edited.txt',
    93                    'DPI5U1A02_01e_edited.txt']                                 
     91                   'DPI5U1A02_01e_edited.txt',
     92                   'Leschenault_TIN.txt']               # TIN created over the Leschenault Estuary and Inlet]                                   
    9493
    9594# BOUNDING POLYGON - for data clipping and estimate of triangles in mesh
     
    105104                         ['area_of_interest.csv', 100],
    106105                         ['storm_gate_area.csv', 1],
    107                          ['floodgates.csv', floodgate_resolution]]
     106                         ['stormgates.csv', 1]]
    108107
    109108# LAND - used to set the initial stage/water to be offcoast only
     
    114113# Format is index,northing, easting, elevation (without header)
    115114gems_order_filename = 'gems_boundary_order_thinned.csv'
     115
     116# Storm gate filename
     117# Format is as for a building file to be read by csv2building_polygons,
     118# easting, northing, id, floors (with header)
     119storm_gate_filename = 'storm_gates.csv'
    116120
    117121# GAUGES - for creating timeseries at a specific point
     
    231235log.log_filename = join(output_run, scenario_name) + '.log'
    232236
     237# The absolute pathname for the storm gate file
     238# Used for run_model.py
     239if storm_gate_filename:
     240        storm_gate = join(polygons_folder, storm_gate_filename) 
     241
    233242# The absolute pathname for the gauges file
    234243# Used for get_timeseries.py
Note: See TracChangeset for help on using the changeset viewer.