Ignore:
Timestamp:
Aug 7, 2009, 1:58:22 PM (16 years ago)
Author:
kristy
Message:

to reflect scripts in sandpit

Location:
DVD_images/extra_files/Hobart/project
Files:
2 edited

Legend:

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

    r7300 r7333  
    8383land_initial_conditions_filename = 'initial_conditions.csv'
    8484
     85# FINAL BOUNDING POLYGON - used in build_boundary.py and run_model.py respectively
     86# NOTE: when files are put together the points must be in sequence
     87# For ease go clockwise!
     88# Check the run_model.py for boundary_tags
     89
     90# Thinned ordering file from Hazard Map (geographic)
     91# Format is index,latitude,longitude (with header)
     92urs_order_filename = 'urs_order.csv'
     93
     94# Landward bounding points
     95# Format easting,northing (no header)
     96landward_boundary_filename = 'landward_boundary.csv'
     97
    8598# GAUGES - for creating timeseries at a specific point
    8699# Used in get_timeseries.py. 
     
    88101gauges_filename = 'time_of_arrival_all.csv' #'TideGaugesPoints.csv'
    89102                                            #'tsunamipointsMGA.csv'
    90 
    91 # FINAL BOUNDING POLYGON - used in build_boundary.py and run_model.py respectively
    92 # NOTE: when files are put together the points must be in sequence
    93 # For ease go clockwise!
    94 # Check the run_model.py for boundary_tags
    95 
    96 # Thinned ordering file from Hazard Map (geographic)
    97 # Format is index,latitude,longitude (with header)
    98 urs_order_filename = 'urs_order.csv'
    99 
    100 # Landward bounding points
    101 # Format easting,northing (no header)
    102 landward_boundary_filename = 'landward_boundary.csv'
    103103
    104104#-------------------------------------------------------------------------------
  • DVD_images/extra_files/Hobart/project/run_model.py

    r7300 r7333  
    136136Br = Reflective_boundary(domain)
    137137Bt = Transmissive_stage_zero_momentum_boundary(domain)
    138 Bd = Dirichlet_boundary([project.tide, 0, 0])
    139138Bf = Field_boundary(project.event_sts+'.sts',
    140139                    domain, mean_stage=project.tide,
    141140                    time_thinning=1,
    142                     default_boundary=Bd,
     141                    default_boundary=Dirichlet_boundary([0, 0, 0]),
    143142                    boundary_polygon=bounding_polygon_sts,                   
    144143                    use_cache=True,
Note: See TracChangeset for help on using the changeset viewer.