Changeset 7324


Ignore:
Timestamp:
Aug 3, 2009, 2:40:59 PM (15 years ago)
Author:
kristy
Message:

Updating script to look better!

Location:
anuga_work/production/hobart_2009/For_DVD
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/hobart_2009/For_DVD/get_timeseries.py

    r7305 r7324  
    2020time_dir2 = '20090619_165136_run_final_0.8_58260_None_kvanputt'
    2121
    22 time_dirs = [time_dir2, time_dir2]
     22time_dirs = [time_dir1, time_dir2]
    2323
    2424print 'time directories', time_dirs
  • anuga_work/production/hobart_2009/For_DVD/project.py

    r7269 r7324  
    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#-------------------------------------------------------------------------------
  • anuga_work/production/hobart_2009/For_DVD/run_model.py

    r7305 r7324  
    137137Br = Reflective_boundary(domain)
    138138Bt = Transmissive_stage_zero_momentum_boundary(domain)
    139 Bd = Dirichlet_boundary([project.tide, 0, 0])
    140139Bf = Field_boundary(project.event_sts+'.sts',
    141140                    domain, mean_stage=project.tide,
    142141                    time_thinning=1,
    143                     default_boundary=Bd,
     142                    default_boundary=Dirichlet_boundary([0, 0, 0]),
    144143                    boundary_polygon=bounding_polygon_sts,                   
    145144                    use_cache=True,
Note: See TracChangeset for help on using the changeset viewer.