Changeset 3085 for inundation/pyvolution


Ignore:
Timestamp:
Jun 5, 2006, 5:03:48 PM (19 years ago)
Author:
ole
Message:

Moved pyvolution.mesh.py to pyvolution.test_mesh.py in order to avoid confusion with pmesh.

Location:
inundation/pyvolution
Files:
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • inundation/pyvolution/domain.py

    r3021 r3085  
    88"""
    99
    10 from pyvolution.mesh import Mesh
     10from pyvolution.neighbour_mesh import Mesh
    1111from pyvolution.generic_boundary_conditions import Boundary
    1212from pyvolution.generic_boundary_conditions import File_boundary
  • inundation/pyvolution/least_squares.py

    r2884 r3085  
    2525#from general_mesh import General_mesh
    2626from Numeric import zeros, array, Float, Int, transpose, concatenate, ArrayType, NewAxis
    27 from pyvolution.mesh import Mesh
     27from pyvolution.neighbour_mesh import Mesh
    2828
    2929from Numeric import dot, zeros, take, compress, array, Float, Int, transpose, concatenate, ArrayType
  • inundation/pyvolution/quantity.py

    r2924 r3085  
    2020    def __init__(self, domain, vertex_values=None):
    2121
    22         from pyvolution.mesh import Mesh
     22        from pyvolution.neighbour_mesh import Mesh
    2323        from Numeric import array, zeros, Float
    2424
  • inundation/pyvolution/test_least_squares.py

    r2778 r3085  
    88
    99from pyvolution.least_squares import *
     10from pyvolution.neighbour_mesh import Mesh
     11
    1012from Numeric import allclose, array, transpose
    1113
     
    819821
    820822    def test_fit_and_interpolation(self):
    821         from mesh import Mesh
    822823
    823824        a = [0.0, 0.0]
     
    912913        using another set of points.
    913914        """
    914         from mesh import Mesh
    915 
    916915
    917916        #Setup mesh used to represent fitted function
     
    10031002        """
    10041003       
    1005         from mesh import Mesh
    1006 
    1007 
    10081004        #Setup mesh used to represent discontinuous function
    10091005        a = [0.0, 0.0]
     
    12881284        coordinate system as defined by origin.
    12891285        """
    1290         from mesh import Mesh
    12911286
    12921287        #Setup mesh used to represent fitted function
     
    18241819        using another set of points.
    18251820        """
    1826         from mesh import Mesh
    1827 
    18281821
    18291822        #Setup mesh used to represent fitted function
     
    18691862        Check that exceedance in fitted values are caught.
    18701863        """
    1871         from mesh import Mesh
    1872 
    18731864
    18741865        #Setup mesh used to represent fitted function
  • inundation/pyvolution/test_mesh.py

    r3072 r3085  
    1010from math import sqrt
    1111
    12 from mesh import *
     12from neighbour_mesh import *
    1313from mesh_factory import rectangular
    1414from config import epsilon
     
    710710    def test_boundary_polygon(self):
    711711        from mesh_factory import rectangular
    712         from mesh import Mesh
     712        #from mesh import Mesh
    713713        from Numeric import zeros, Float
    714714
     
    730730
    731731    def test_boundary_polygon_II(self):
    732         from mesh import Mesh
    733732        from Numeric import zeros, Float
    734733       
     
    770769        """
    771770
    772         from mesh import Mesh
    773771        from Numeric import zeros, Float
    774772
     
    811809        """
    812810
    813         from mesh import Mesh
    814811        from Numeric import zeros, Float
    815812        from mesh_factory import rectangular       
     
    855852       
    856853        """
    857         from mesh import Mesh
    858854        from Numeric import zeros, Float
    859855       
Note: See TracChangeset for help on using the changeset viewer.