Ignore:
Timestamp:
May 5, 2009, 6:51:54 PM (15 years ago)
Author:
ole
Message:

Removed accidental copying of the 'gulf' scenario onto 'bamaga.'
This reverted all changesets from 6895 to the current (6972).
The command used on bamaga was

svn merge -r HEAD:6894 .

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/australia_ph2/bamaga/run_model.py

    r6911 r6975  
    8787# Number of boundary segments
    8888num_ocean_segments = len(event_sts) - 1
    89 print num_ocean_segments
    9089# Number of landward_boundary points
    9190num_land_points = file_length(project.landward_boundary)
    92 print num_land_points
     91
    9392# Boundary tags refer to project.landward_boundary
    9493# 4 points equals 5 segments start at N
    95 boundary_tags={'back': range(num_ocean_segments+2,
    96                              num_ocean_segments+5),
     94boundary_tags={'back': range(num_ocean_segments+1,
     95                             num_ocean_segments+num_land_points),
    9796               'side': [num_ocean_segments,
    98                         num_ocean_segments+1,
    99                         num_ocean_segments+5,
    100                         num_ocean_segments+6,
    101                         num_ocean_segments+7,
    102                         num_ocean_segments+8,
    103                         num_ocean_segments+9],
     97                        num_ocean_segments+num_land_points],
    10498               'ocean': range(num_ocean_segments)}
    105 ##boundary_tags = {'back':[3],
    106 ##                 'side':[2,4],
    107 ##                 'ocean':[0,1,5]}
    108 
    109 print 'boundary tags', boundary_tags
    11099
    111100# Build mesh and domain
Note: See TracChangeset for help on using the changeset viewer.