Changeset 3085 for inundation/pyvolution
- Timestamp:
- Jun 5, 2006, 5:03:48 PM (19 years ago)
- Location:
- inundation/pyvolution
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/domain.py
r3021 r3085 8 8 """ 9 9 10 from pyvolution. mesh import Mesh10 from pyvolution.neighbour_mesh import Mesh 11 11 from pyvolution.generic_boundary_conditions import Boundary 12 12 from pyvolution.generic_boundary_conditions import File_boundary -
inundation/pyvolution/least_squares.py
r2884 r3085 25 25 #from general_mesh import General_mesh 26 26 from Numeric import zeros, array, Float, Int, transpose, concatenate, ArrayType, NewAxis 27 from pyvolution. mesh import Mesh27 from pyvolution.neighbour_mesh import Mesh 28 28 29 29 from Numeric import dot, zeros, take, compress, array, Float, Int, transpose, concatenate, ArrayType -
inundation/pyvolution/quantity.py
r2924 r3085 20 20 def __init__(self, domain, vertex_values=None): 21 21 22 from pyvolution. mesh import Mesh22 from pyvolution.neighbour_mesh import Mesh 23 23 from Numeric import array, zeros, Float 24 24 -
inundation/pyvolution/test_least_squares.py
r2778 r3085 8 8 9 9 from pyvolution.least_squares import * 10 from pyvolution.neighbour_mesh import Mesh 11 10 12 from Numeric import allclose, array, transpose 11 13 … … 819 821 820 822 def test_fit_and_interpolation(self): 821 from mesh import Mesh822 823 823 824 a = [0.0, 0.0] … … 912 913 using another set of points. 913 914 """ 914 from mesh import Mesh915 916 915 917 916 #Setup mesh used to represent fitted function … … 1003 1002 """ 1004 1003 1005 from mesh import Mesh1006 1007 1008 1004 #Setup mesh used to represent discontinuous function 1009 1005 a = [0.0, 0.0] … … 1288 1284 coordinate system as defined by origin. 1289 1285 """ 1290 from mesh import Mesh1291 1286 1292 1287 #Setup mesh used to represent fitted function … … 1824 1819 using another set of points. 1825 1820 """ 1826 from mesh import Mesh1827 1828 1821 1829 1822 #Setup mesh used to represent fitted function … … 1869 1862 Check that exceedance in fitted values are caught. 1870 1863 """ 1871 from mesh import Mesh1872 1873 1864 1874 1865 #Setup mesh used to represent fitted function -
inundation/pyvolution/test_mesh.py
r3072 r3085 10 10 from math import sqrt 11 11 12 from mesh import *12 from neighbour_mesh import * 13 13 from mesh_factory import rectangular 14 14 from config import epsilon … … 710 710 def test_boundary_polygon(self): 711 711 from mesh_factory import rectangular 712 from mesh import Mesh712 #from mesh import Mesh 713 713 from Numeric import zeros, Float 714 714 … … 730 730 731 731 def test_boundary_polygon_II(self): 732 from mesh import Mesh733 732 from Numeric import zeros, Float 734 733 … … 770 769 """ 771 770 772 from mesh import Mesh773 771 from Numeric import zeros, Float 774 772 … … 811 809 """ 812 810 813 from mesh import Mesh814 811 from Numeric import zeros, Float 815 812 from mesh_factory import rectangular … … 855 852 856 853 """ 857 from mesh import Mesh858 854 from Numeric import zeros, Float 859 855
Note: See TracChangeset
for help on using the changeset viewer.