Ignore:
Timestamp:
Aug 21, 2006, 4:10:14 PM (18 years ago)
Author:
duncan
Message:

Hi all,
I'm doing a change in the anuga structure, moving the code to

\anuga_core\source\anuga

After you have done an svn update, the PYTHONPATH has to be changed to;
PYTHONPATH = anuga_core/source/

This is part of changes required to make installation of anuga quicker and reducing the size of our sandpits.

If any imports are broken, try fixing them. With adding anuga. to them for example. If this seems to have really broken things, email/phone me.

Cheers
Duncan

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation-numpy-branch/debug/mesh_error_reporting/show_mesh_bug.py

    r1878 r3514  
    6868
    6969# Module imports
    70 from pyvolution.shallow_water import Domain, Reflective_boundary,\
     70from anuga.pyvolution.shallow_water import Domain, Reflective_boundary,\
    7171            File_boundary, Transmissive_Momentum_Set_Stage_boundary
    72 from pyvolution.mesh_factory import rectangular
    73 from pyvolution.pmesh2domain import pmesh_to_domain_instance
     72from anuga.pyvolution.mesh_factory import rectangular
     73from anuga.pyvolution.pmesh2domain import pmesh_to_domain_instance
    7474from Numeric import array, zeros, Float, allclose
    7575import filenames
     
    8585
    8686#Preparing points
    87 from pyvolution.data_manager import xya2pts
     87from anuga.pyvolution.data_manager import xya2pts
    8888xya2pts(filenames.bathymetry_filename, verbose = True,
    8989        stride = 16,
     
    112112
    113113#LS code to be included in set_quantity
    114 from pyvolution import util, least_squares
     114from anuga.pyvolution import util, least_squares
    115115points, attributes = util.read_xya(filenames.bathymetry_filename[:-4] + '.pts')
    116116
Note: See TracChangeset for help on using the changeset viewer.