Changeset 3737


Ignore:
Timestamp:
Oct 10, 2006, 11:40:36 PM (18 years ago)
Author:
steve
Message:

In island.py the creap is very thin!

Location:
anuga_core/source/anuga
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/abstract_2d_finite_volumes/realtime_visualisation_new.py

    r2334 r3737  
    211211        #print 'update bed image'
    212212        if qname=='elevation':
    213             self.pos[:,2] = self.pos[:,2]+1.0e-3
     213            self.pos[:,2] = self.pos[:,2]+1.0e-2
    214214
    215215        self.vpython_z_models[qname].pos    = self.pos
  • anuga_core/source/anuga/config.py

    r3704 r3737  
    111111maximum_allowed_speed = 100.0 #Maximal particle speed of water
    112112
    113 minimum_storable_height = minimum_allowed_height #Water depth below which it is *stored* as 0
     113minimum_storable_height = 1.0e-5 #Water depth below which it is *stored* as 0
  • anuga_core/source/anuga/pmesh/mesh_interface.py

    r3734 r3737  
    159159    if interior_holes is not None:       
    160160        # Test that all the interior polygons are inside the bounding_poly
    161         for interior_polygon, res in interior_holes:
     161        for interior_polygon in interior_holes:
    162162            indices = inside_polygon(interior_polygon, bounding_polygon,
    163163                                     closed = True, verbose = False)
     
    236236    # Do interior holes
    237237    if interior_holes is not None:   
    238         for polygon, res in interior_holes:
     238        for polygon in interior_holes:
    239239            m.add_hole_from_polygon(polygon,
    240240                                      geo_reference=poly_geo_reference)
Note: See TracChangeset for help on using the changeset viewer.