Ignore:
Timestamp:
Oct 16, 2006, 2:12:04 PM (17 years ago)
Author:
sexton
Message:

path fixups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/onslow_2006/run_onslow.py

    r3535 r3788  
    2323
    2424# Related major packages
    25 from anuga.pyvolution.shallow_water import Domain, Reflective_boundary, \
     25from anuga.shallow_water import Domain, Reflective_boundary, \
    2626                            Dirichlet_boundary, Time_boundary, File_boundary
    27 from anuga.pyvolution.data_manager import convert_dem_from_ascii2netcdf, dem2pts
    28 from anuga.pyvolution.combine_pts import combine_rectangular_points_files
    29 from anuga.pyvolution.pmesh2domain import pmesh_to_domain_instance
     27from anuga.shallow_water.data_manager import convert_dem_from_ascii2netcdf, dem2pts
     28from anuga.abstract_2d_finite_volumes.combine_pts import combine_rectangular_points_files
    3029from anuga.geospatial_data.geospatial_data import *
    31 from anuga.pyvolution.util import Screen_Catcher
     30from anuga.abstract_2d_finite_volumes.util import Screen_Catcher
    3231
    3332# Application specific imports
     
    144143#-------------------------------------------------------------------------------                                 
    145144
    146 domain = pmesh_to_domain_instance(meshname, Domain,
    147                                   use_cache = False,
    148                                   verbose = True)
     145#domain = pmesh_to_domain_instance(meshname, Domain,
     146#                                  use_cache = False,
     147#                                  verbose = True)
     148
     149domain = Domain(meshname, use_cache = False, verbose = True)
    149150
    150151print 'Number of triangles = ', len(domain)
Note: See TracChangeset for help on using the changeset viewer.