Ignore:
Timestamp:
Nov 28, 2008, 11:38:37 AM (15 years ago)
Author:
kristy
Message:

addition of more elevation data

File:
1 edited

Legend:

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

    r5828 r6021  
    4545tide = 0                #0.6
    4646#event_number = 27255 # Java 9.3 worst case for Perth
    47 event_number = 68693 # Sumatra 9.2
    48 #event_number = 27283  # Java 9.3 original
     47#event_number = 68693 # Sumatra 9.2
     48event_number = 27283  # Java 9.3 original
    4949alpha = 0.1             # smoothing parameter for mesh
    5050friction=0.01           # manning's friction coefficient
    5151starttime=0             
    52 finaltime=1000         # final time for simulation
     52finaltime=80000         # final time for simulation
    5353
    5454setup='final'  # Final can be replaced with trial or basic.
     
    8686# onshore data: format ascii grid with accompanying projection file
    8787onshore_name = 'dem_onshore'
    88 # coastline: format x,y,elevation (with title)
    89 coast_name = 'coastline.txt'
    9088# bathymetry: format x,y,elevation (with title)
    91 offshore_name = 'Shark_Bay_Clip.txt'
    92 offshore_name1 = 'XYAHD_Clip.txt'
    93 offshore_name2 = 'DPI_data.txt'
     89offshore_name = 'carnarvon_data.txt'
     90offshore_name1 = 'makeup.txt'
     91#grids made for aoi and aos as anuga interpretation was bad
     92topo_aoi = 'topo_20m_aoi'
     93topo_aos = 'topo_50m_aos'
    9494
    9595# gauges - used in get_timeseries.py
     
    131131# where the input data sits
    132132onshore_in_dir_name = topographies_in_dir + onshore_name
    133 coast_in_dir_name = topographies_in_dir + coast_name
    134133offshore_in_dir_name = topographies_in_dir + offshore_name
    135134offshore_in_dir_name1 = topographies_in_dir + offshore_name1
    136 offshore_in_dir_name2 = topographies_in_dir + offshore_name2
     135offshore_in_dir_aoi = topographies_in_dir + topo_aoi
     136offshore_in_dir_aos = topographies_in_dir + topo_aos
    137137
    138138# where the output data sits
    139139onshore_dir_name = topographies_dir + onshore_name
    140 coast_dir_name = topographies_dir + coast_name
    141140offshore_dir_name = topographies_dir + offshore_name
    142141offshore_dir_name1 = topographies_dir + offshore_name1
    143 offshore_dir_name2 = topographies_dir + offshore_name2
     142offshore_dir_aoi = topographies_dir + topo_aoi
     143offshore_dir_aos = topographies_dir + topo_aos
    144144
    145145# where the combined elevation file sits
     
    179179poly_island2=read_polygon(polygons_dir +'land_initial_condition_dorne.csv')
    180180poly_ocean=read_polygon(polygons_dir +'ocean_initial_condition.csv')
     181poly_aos_extract = read_polygon(polygons_dir+'extract_aos.csv')
    181182
    182183# Initial bounding polygon for data clipping
Note: See TracChangeset for help on using the changeset viewer.