Ignore:
Timestamp:
Mar 25, 2009, 4:26:41 PM (15 years ago)
Author:
myall
Message:

putting in the option for a internal polygon with same triangle area (to test discretisation issues) in project scripts.
adding required scripts for broome

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/australia_ph2/esperance/project.py

    r6484 r6617  
    2727# One or all can be changed each time the run_model script is executed
    2828tide = 0                # difference between MSL and HAT
    29 zone = 51               # specify zone of model
     29central_meridian = 123.0 # Central meridian for projection (optional)
    3030event_number = 58367    # the event number or the mux file name
    3131# main events: 27329 (java), 64449 (sandwich), 58367 (puysegur)
     
    4646                        #    final - fine mesh, slowest
    4747
     48internal_polygon = False
     49
    4850#-------------------------------------------------------------------------------
    4951# Output filename
     
    5759#-------------------------------------------------------------------------------
    5860
    59 output_comment = [setup, tide, event_number, index, wave]
     61if internal_polygon:
     62    internal_poly_comment = 'internal'
     63else:
     64    internal_poly_comment = None
     65
     66output_comment = [setup, tide, event_number, index, wave, internal_poly_comment]
    6067
    6168#-------------------------------------------------------------------------------
     
    8794# Format for points easting,northing (no header)                   
    8895interior_regions_data = []
     96
     97# add an internal polygon to force different mesh generation
     98# used to test for discretisation error when building elevation
     99# make sure file is in same folder as interior regions and bouding polygon;
     100# format is same (2 column .csv; easting, northing; no header)
     101if internal_polygon:
     102    interior_regions_data.append(['internal_polygon.csv',
     103                                  bounding_polygon_maxarea])
    89104
    90105# LAND - used to set the initial stage/water to be offcoast only
Note: See TracChangeset for help on using the changeset viewer.