Changeset 3514 for development/steve


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

Location:
development/steve
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • development/steve/get_triangle_data.py

    r2229 r3514  
    1515from shallow_water import Domain
    1616from pmesh2domain import pmesh_to_domain_instance
    17 from util import file_function, Polygon_function, read_polygon
     17from anuga.pyvolution.util import file_function, Polygon_function, read_polygon
    1818from Numeric import zeros, Float, maximum, minimum
    1919
  • development/steve/get_triangle_data_new.py

    r2229 r3514  
    1515from shallow_water import Domain
    1616from pmesh2domain import pmesh_to_domain_instance
    17 from util import file_function, Polygon_function, read_polygon
     17from anuga.pyvolution.util import file_function, Polygon_function, read_polygon
    1818from Numeric import zeros, Float, maximum, minimum
    1919
  • development/steve/sww_viewer_vtk.py

    r2386 r3514  
    2626
    2727import project
    28 from pyvolution.data_manager import get_time_interp, interpolated_quantity
     28from anuga.pyvolution.data_manager import get_time_interp, interpolated_quantity
    2929from caching import cache
    3030filename = project.filename[:-3] + '.sww' #filename is of form filename.py
     
    4040
    4141"""
    42 The following is borrowed from data_manager.sww2domain
     42The following is borrowed from anuga.pyvolution.data_manager.sww2domain
    4343"""
    4444NaN=9.969209968386869e+036
     
    4646
    4747from Scientific.IO.NetCDF import NetCDFFile
    48 from pyvolution.shallow_water_vtk import Domain
     48from anuga.pyvolution.shallow_water_vtk import Domain
    4949from Numeric import asarray, transpose, resize
    5050
Note: See TracChangeset for help on using the changeset viewer.