Changeset 7254 for anuga_work


Ignore:
Timestamp:
Jun 23, 2009, 6:09:12 PM (15 years ago)
Author:
myall
Message:
 
Location:
anuga_work/production
Files:
2 edited

Legend:

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

    r7209 r7254  
    3131friction=0.01           # manning's friction coefficient
    3232starttime=0             # start time for simulation
    33 finaltime=80000         # final time for simulation
     33finaltime=1000         # final time for simulation
    3434
    3535setup = 'final'         # This can be one of three values
     
    6464                        'other_topo_250m',
    6565                        'south_250m']
    66 point_filenames = ['Broome_coastline.txt','Broome_Bathymetry.txt']
     66point_filenames = ['Broome_coastline.txt','Broome_Bathymetry_exWADPI.txt']
    6767
    6868### Add csv header list to all files in point_filenames
     
    8080# Used in run_model.py
    8181# Format for points easting,northing (no header)                   
    82 interior_regions_data = [['Shallow_Water_large_MH.csv', 10000],
     82interior_regions_data = [['Shallow_Water_large_MH.csv', 5000],
    8383                         ['AoS_MH.csv', 800],
    8484                         ['AoI_MH.csv', 500],
  • anuga_work/production/exmouth_2009/project.py

    r7238 r7254  
    88from time import localtime, strftime, gmtime
    99from os.path import join, exists
     10from anuga.lib.add_csv_header.add_csv_header import add_csv_header
    1011
    1112#-------------------------------------------------------------------------------
     
    3435finaltime=1000         # final time for simulation
    3536
    36 setup = 'final'         # This can be one of three values
     37setup = 'trial'         # This can be one of three values
    3738                        #    trial - coarsest mesh, fast
    3839                        #    basic - coarse mesh
     
    5960# Used in build_elevation.py
    6061# Format for ascii grids, as produced in ArcGIS + a projection file
    61 ascii_grid_filenames = ['extract_dli',
    62                         'extract_dted']
     62##ascii_grid_filenames = ['extract_dli',
     63##                        'extract_dted']
     64ascii_grid_filenames = []
    6365
    6466# Format for point is x,y,elevation (with header)
     
    6668                   'Exmouth.txt',
    6769                   'extract_dgapcs100.txt',
    68                    'extract_rivoli.txt']
     70                   'extract_rivoli.txt',
     71                   'extract_dli.txt',
     72                   'extract_dted.txt']
    6973
    7074### Add csv header list to all files in point_filenames
     
    7680# Used in build_elevation.py
    7781# Format for points easting,northing (no header)
    78 bounding_polygon_filename = 'poly_all.csv'
     82bounding_polygon_filename = 'poly_all_MH.csv'
    7983bounding_polygon_maxarea = 100000
    8084
     
    196200event_folder = join(boundaries_folder, str(event_number))
    197201
     202### Add csv header list to all files in point_filenames
     203##headerlist = ['x', 'y', 'elevation']
     204##for f in point_filenames:
     205##    add_csv_header(join(topographies_folder, f), headerlist)
     206
    198207# MUX data files
    199208# Directory containing the MUX data files to be used with EventSelection.
Note: See TracChangeset for help on using the changeset viewer.