Changeset 3514 for inundation-numpy-branch/debug
- Timestamp:
- Aug 21, 2006, 4:10:14 PM (19 years ago)
- Location:
- inundation-numpy-branch/debug/mesh_error_reporting
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation-numpy-branch/debug/mesh_error_reporting/create_mesh.py
r1878 r3514 7 7 8 8 from pmesh.mesh import * 9 from pyvolution.coordinate_transforms.geo_reference import Geo_reference9 from anuga.pyvolution.coordinate_transforms.geo_reference import Geo_reference 10 10 11 11 #------------------------------------------------------------- -
inundation-numpy-branch/debug/mesh_error_reporting/show_bad_mesh.py
r3437 r3514 14 14 15 15 16 from pyvolution.least_squares import Interpolation16 from anuga.pyvolution.least_squares import Interpolation 17 17 from Numeric import allclose, array, transpose 18 18 -
inundation-numpy-branch/debug/mesh_error_reporting/show_mesh_bug.py
r1878 r3514 68 68 69 69 # Module imports 70 from pyvolution.shallow_water import Domain, Reflective_boundary,\70 from anuga.pyvolution.shallow_water import Domain, Reflective_boundary,\ 71 71 File_boundary, Transmissive_Momentum_Set_Stage_boundary 72 from pyvolution.mesh_factory import rectangular73 from pyvolution.pmesh2domain import pmesh_to_domain_instance72 from anuga.pyvolution.mesh_factory import rectangular 73 from anuga.pyvolution.pmesh2domain import pmesh_to_domain_instance 74 74 from Numeric import array, zeros, Float, allclose 75 75 import filenames … … 85 85 86 86 #Preparing points 87 from pyvolution.data_manager import xya2pts87 from anuga.pyvolution.data_manager import xya2pts 88 88 xya2pts(filenames.bathymetry_filename, verbose = True, 89 89 stride = 16, … … 112 112 113 113 #LS code to be included in set_quantity 114 from pyvolution import util, least_squares114 from anuga.pyvolution import util, least_squares 115 115 points, attributes = util.read_xya(filenames.bathymetry_filename[:-4] + '.pts') 116 116
Note: See TracChangeset
for help on using the changeset viewer.