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
  • development/analytical solutions/Analytical_solution_Sampson_cross_mesh.py

    r2648 r3514  
    2222from os import sep
    2323sys.path.append('..'+sep+'pyvolution')
    24 from pyvolution.shallow_water import Domain, Transmissive_boundary, Reflective_boundary,\
     24from anuga.pyvolution.shallow_water import Domain, Transmissive_boundary, Reflective_boundary,\
    2525     Dirichlet_boundary, gravity, linear_friction
    2626from math import sqrt, cos, sin, pi, exp
    27 from pyvolution.mesh_factory import rectangular_cross
    28 from pyvolution.quantity import Quantity
    29 from utilities.polygon import inside_polygon
     27from anuga.pyvolution.mesh_factory import rectangular_cross
     28from anuga.pyvolution.quantity import Quantity
     29from anuga.utilities.polygon import inside_polygon
    3030from Numeric import asarray
    3131from least_squares import Interpolation
     
    6767#-----------------------------------------
    6868#Reduction operation for get_vertex_values
    69 from utilities.numerical_tools import mean
     69from anuga.utilities.numerical_tools import mean
    7070domain.reduction = mean
    7171#domain.reduction = min  #Looks better near steep slopes
Note: See TracChangeset for help on using the changeset viewer.