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
  • production/broome_2006/run_broome.py

    r3477 r3514  
    1919
    2020# Related major packages
    21 from pyvolution.shallow_water import Domain, Reflective_boundary, \
     21from anuga.pyvolution.shallow_water import Domain, Reflective_boundary, \
    2222                            Dirichlet_boundary, Time_boundary, File_boundary
    23 from pyvolution.data_manager import convert_dem_from_ascii2netcdf, dem2pts
    24 from pyvolution.combine_pts import combine_rectangular_points_files
    25 from pyvolution.pmesh2domain import pmesh_to_domain_instance
     23from anuga.pyvolution.data_manager import convert_dem_from_ascii2netcdf, dem2pts
     24from anuga.pyvolution.combine_pts import combine_rectangular_points_files
     25from anuga.pyvolution.pmesh2domain import pmesh_to_domain_instance
    2626from shutil import copy
    2727from os import mkdir, access, F_OK
    28 from geospatial_data import *
     28from anuga.geospatial_data.geospatial_data import *
    2929import sys
    30 from pyvolution.util import Screen_Catcher
     30from anuga.pyvolution.util import Screen_Catcher
    3131
    3232# Application specific imports
     
    107107print 'number of interior regions', len(interior_regions)
    108108
    109 from utilities.polygon import plot_polygons
     109from anuga.utilities.polygon import plot_polygons
    110110if sys.platform == 'win32':
    111111    #figname = project.outputtimedir + 'pt_hedland_polys'
     
    169169# skipped as results in file SU-AU_clipped is correct for all WA
    170170
    171 from pyvolution.data_manager import ferret2sww
     171from anuga.pyvolution.data_manager import ferret2sww
    172172
    173173south = project.south
Note: See TracChangeset for help on using the changeset viewer.