Changeset 7201


Ignore:
Timestamp:
Jun 12, 2009, 5:20:26 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

    r7179 r7201  
    2727tide = 0.0                # difference between MSL and HAT in metres
    2828zone = 51               # specify UTM zone of model
    29 event_number = 27279    # 58280, 64477 the event number or the mux file name
     29event_number = 27255    # 27283 the event number or the mux file name
    3030alpha = 0.1             # smoothing parameter for mesh
    3131friction=0.01           # manning's friction coefficient
     
    3333finaltime=1000         # final time for simulation
    3434
    35 setup = 'trial'         # This can be one of three values
     35setup = 'final'         # This can be one of three values
    3636                        #    trial - coarsest mesh, fast
    3737                        #    basic - coarse mesh
     
    7474# Used in build_elevation.py
    7575# Format for points easting,northing (no header)
    76 bounding_polygon_filename = 'bounding_polygon.csv'
    77 bounding_polygon_maxarea = 1000000
     76bounding_polygon_filename = 'poly_all.csv'
     77bounding_polygon_maxarea = 100000
    7878
    7979# INTERIOR REGIONS -  for designing the mesh
     
    8181# Format for points easting,northing (no header)                   
    8282interior_regions_data = [['Shallow_Water_MH.csv', 1500],
    83                          ['AoS_MH', 800],
    84                          ['AoI_MH', 500],
    85                          ['AoS_north_MH', 800],
    86                          ['AoI_north_MH', 500],
    87                          ['bay_coast_MH', 1500],
    88                          ['bay_coast_small_MH', 800]]
    89 PriorityArea_filename = 'PriorityAreas.csv'
     83                         ['AoS_MH.csv', 800],
     84                         ['AoI_MH.csv', 500],
     85                         ['AoS_north_MH.csv', 800],
     86                         ['AoI_north_MH.csv', 500],
     87##                         ['bay_coast_MH.csv', 5000],
     88                         ['bay_coast_small_MH.csv', 800]]
     89PriorityArea_filename = None
    9090   
    9191# LAND - used to set the initial stage/water to be offcoast only
  • anuga_work/production/pt_hedland_2009/project.py

    r7194 r7201  
    2525# Model specific parameters.
    2626# One or all can be changed each time the run_model script is executed
    27 tide = 0.0                # difference between MSL and HAT in metres
     27tide = 0.0              # 3.6 difference between MSL and HAT in metres
    2828zone = 51               # specify UTM zone of model
    29 event_number = 27255    # 27283 the event number or the mux file name
     29event_number = 27283    # 27255,27283 the event number or the mux file name
    3030alpha = 0.1             # smoothing parameter for mesh
    3131friction=0.01           # manning's friction coefficient
     
    5757# ELEVATION DATA
    5858# Used in build_elevation.py
    59 ascii_grid_filenames = ['town_topo_10m',
    60                         'cable_250m',
    61                         'inferred_north',
    62                         'inferred_south',
    63                         'north_250m',
    64                         'other_topo_250m',
    65                         'south_250m']
    66 point_filenames = ['Broome_coastline.txt','Broome_Bathymetry.txt']
     59ascii_grid_filenames = ['dli_dem_clip']
     60point_filenames = ['coastline.txt','port_hedland_new2.txt']
    6761
    6862### Add csv header list to all files in point_filenames
     
    7569# Format for points easting,northing (no header)
    7670bounding_polygon_filename = 'poly_all.csv'
    77 bounding_polygon_maxarea = 1000000
     71bounding_polygon_maxarea = 100000
    7872
    7973# INTERIOR REGIONS -  for designing the mesh
    8074# Used in run_model.py
    8175# Format for points easting,northing (no header)                   
    82 interior_regions_data = [['Shallow_Water_MH.csv', 1500],
    83                          ['AoS_MH.csv', 800],
    84                          ['AoI_MH.csv', 500],
    85                          ['AoS_north_MH.csv', 800],
    86                          ['AoI_north_MH.csv', 500],
    87 ##                         ['bay_coast_MH.csv', 5000],
    88                          ['bay_coast_small_MH.csv', 800]]
     76interior_regions_data = [['shallow_water.csv', 5000],
     77                         ['area_of_significance.csv', 1500],
     78                         ['area_of_interest.csv', 800]]
     79
    8980PriorityArea_filename = None
    9081   
    9182# LAND - used to set the initial stage/water to be offcoast only
    92 # Used in run_model.py.  Format for points easting,northing (no header)
    93 land_initial_conditions_filename = 'initial_conditions_mainland.csv'
     83# Used in run_model.py.  Format for points easting,northing,id,value
     84land_initial_conditions_filename = 'initial_conditions_comb.csv'
    9485
    9586# GAUGES - for creating timeseries at a specific point
     
    118109# Landward bounding points
    119110# Format easting,northing (no header)
    120 landward_boundary_filename = 'landward_boundary_MH.csv'
     111landward_boundary_filename = 'landward_bounding_polygon.csv'
    121112
    122113# MUX input filename.
Note: See TracChangeset for help on using the changeset viewer.