Changeset 9548


Ignore:
Timestamp:
Jan 29, 2015, 6:03:10 PM (9 years ago)
Author:
steve
Message:

Resoving some more module names

Location:
trunk/anuga_core/source/anuga
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/file_function.py

    r8974 r9548  
    123123    if use_cache is True:
    124124        try:
    125             from caching import cache
     125            from anuga.caching import cache
    126126        except:
    127127            msg = 'Caching was requested, but caching module'+\
  • trunk/anuga_core/source/anuga/fit_interpolate/test/test_fit.py

    r9480 r9548  
    859859
    860860    def test_fit_to_mesh_file2domain(self):
    861         from load_mesh.loadASCII import import_mesh_file, \
     861        from anuga.load_mesh.loadASCII import import_mesh_file, \
    862862             export_mesh_file
    863863        import tempfile
     
    917917
    918918    def test_fit_to_mesh_file3(self):
    919         from load_mesh.loadASCII import import_mesh_file, \
     919        from anuga.load_mesh.loadASCII import import_mesh_file, \
    920920             export_mesh_file
    921921        import tempfile
     
    972972
    973973    def test_fit_to_mesh_fileII(self):
    974         from load_mesh.loadASCII import import_mesh_file, \
     974        from anuga.load_mesh.loadASCII import import_mesh_file, \
    975975             export_mesh_file
    976976        import tempfile
     
    10261026
    10271027    def test_fit_to_mesh_file_errors(self):
    1028         from load_mesh.loadASCII import import_mesh_file, export_mesh_file
     1028        from anuga.load_mesh.loadASCII import import_mesh_file, export_mesh_file
    10291029        import tempfile
    10301030        import os
     
    10671067
    10681068    def test_fit_to_mesh_file_errorsII(self):
    1069         from load_mesh.loadASCII import import_mesh_file, export_mesh_file
     1069        from anuga.load_mesh.loadASCII import import_mesh_file, export_mesh_file
    10701070        import tempfile
    10711071        import os
     
    11001100
    11011101    def test_fit_to_mesh_file_errorsIII(self):
    1102         from load_mesh.loadASCII import import_mesh_file, export_mesh_file
     1102        from anuga.load_mesh.loadASCII import import_mesh_file, export_mesh_file
    11031103        import tempfile
    11041104        import os
  • trunk/anuga_core/source/anuga/shallow_water/forcing.py

    r8780 r9548  
    99"""
    1010
     11from warnings import warn
     12import numpy as num
     13from copy import copy
    1114
    1215from anuga.abstract_2d_finite_volumes.neighbour_mesh import segment_midpoints
     
    1720                                    polygon_area
    1821from anuga.geospatial_data.geospatial_data import ensure_geospatial
    19 
    20 from warnings import warn
    21 import numpy as num
    2222from anuga.file.netcdf import NetCDFFile
    2323from anuga.config import netcdf_mode_r, netcdf_mode_w, netcdf_mode_a
    24 from copy import copy
     24
    2525
    2626def check_forcefield(f):
     
    938938    """
    939939
    940     from utilities.numerical_tools import gradient
     940    from anuga.utilities.numerical_tools import gradient
    941941    from anuga.config import rho_a, rho_w, eta_w
    942942
  • trunk/anuga_core/source/anuga/shallow_water/test/test_data_manager.py

    r9490 r9548  
    563563        """
    564564
    565         import time, os, config
     565        import time, os
    566566
    567567        self.domain.set_name('synctest')
Note: See TracChangeset for help on using the changeset viewer.