Changeset 5829


Ignore:
Timestamp:
Oct 9, 2008, 5:57:31 PM (15 years ago)
Author:
kristy
Message:

update

Location:
anuga_work/production
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/busselton/build_busselton.py

    r5786 r5829  
    8787# create coastal and offshore pts files
    8888print'create Geospatial data2 objects from topographies'
    89 G3 = Geospatial_data(file_name = coast_in_dir_name)
     89G2 = Geospatial_data(file_name = coast_in_dir_name)
    9090print'create Geospatial data3 objects from topographies'
    91 G4 = Geospatial_data(file_name = coast_in_dir_name1)
     91G3 = Geospatial_data(file_name = coast_in_dir_name1)
    9292print'create Geospatial data4 objects from topographies'
    9393G_off = Geospatial_data(file_name = offshore_in_dir_name)
  • anuga_work/production/busselton/project.py

    r5828 r5829  
    4343# Model specific parameters. One or all can be changed each time the
    4444# run_scenario script is executed
    45 tide = 0                #0.6
     45tide = 0.6                #0.6
    4646#event_number = 27255 # Java 9.3 worst case for Perth
    4747event_number = 68693 # Sumatra 9.2
  • anuga_work/production/geraldton/project.py

    r5828 r5829  
    4343# Model specific parameters. One or all can be changed each time the
    4444# run_scenario script is executed
    45 tide = 0                #0.6
     45tide = 0.6                #0.6
    4646#event_number = 27255 # Java 9.3 worst case for Perth
    4747event_number = 68693 # Sumatra 9.2
  • anuga_work/production/perth/project.py

    r5828 r5829  
    190190
    191191#Land, to set the initial stage/water to be offcoast only
    192 poly_mainland = read_polygon(polygons_dir+'initial_condition.csv')
     192poly_mainland_N = read_polygon(polygons_dir+'initial_conditions_N.csv')
     193
     194#Land, to set the initial stage/water to be offcoast only
     195poly_mainland_S = read_polygon(polygons_dir+'initial_conditions_S.csv')
     196
     197#Island, to set the initial stage/water to be offcoast only
     198poly_island1 = read_polygon(polygons_dir+'initial_conditions_rottnest.csv')
     199
     200#Island, to set the initial stage/water to be offcoast only
     201poly_island2 = read_polygon(polygons_dir+'initial_conditions_garden.csv')
    193202
    194203# Initial bounding polygon for data clipping
Note: See TracChangeset for help on using the changeset viewer.