Ignore:
Timestamp:
Sep 12, 2006, 4:35:11 PM (19 years ago)
Author:
ole
Message:

Moved shallow water out from the old pyvolution directory.
All tests pass, most examples and okushiri works again.

Location:
documentation/user_manual/examples
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • documentation/user_manual/examples/file_function_example.py

    r3534 r3563  
    44#Notice the statistics output
    55
    6 from anuga.pyvolution.util import file_function
     6from anuga.abstract_2d_finite_volumes.util import file_function
    77 
    88f = file_function('bedslope.sww',
  • documentation/user_manual/examples/harbour.py

    r3534 r3563  
    1616
    1717from anuga.pmesh.mesh_interface import create_mesh_from_regions
    18 from anuga.pyvolution.shallow_water import Domain
    19 from anuga.pyvolution.shallow_water import Reflective_boundary
    20 from anuga.pyvolution.shallow_water import Dirichlet_boundary
    21 from anuga.pyvolution.shallow_water import Time_boundary
    22 from anuga.pyvolution.shallow_water import Transmissive_boundary
     18from anuga.shallow_water import Domain
     19from anuga.shallow_water import Reflective_boundary
     20from anuga.shallow_water import Dirichlet_boundary
     21from anuga.shallow_water import Time_boundary
     22from anuga.shallow_water import Transmissive_boundary
    2323
    2424waveheight = 1.0
     
    127127gauges, gaugex, gaugey = gauge_line(west,east,north,south)
    128128
    129 from anuga.pyvolution.util import file_function
     129from anuga.abstract_2d_finite_volumes.util import file_function
    130130
    131131f = file_function('harbour.sww',
  • documentation/user_manual/examples/runsydney.py

    r3534 r3563  
    2020
    2121# Related major packages
    22 from anuga.pyvolution.shallow_water import Domain, Dirichlet_boundary
    23 from anuga.pyvolution.data_manager import convert_dem_from_ascii2netcdf, dem2pts
    24 from anuga.pyvolution.combine_pts import combine_rectangular_points_files
     22from anuga.shallow_water import Domain, Dirichlet_boundary
     23from anuga.shallow_water.data_manager import convert_dem_from_ascii2netcdf, dem2pts
     24from anuga.abstract_2d_finite_volumes.combine_pts import combine_rectangular_points_files
    2525from anuga.pmesh.mesh_interface import create_mesh_from_regions
    2626
    2727# Application specific imports
    2828import project                           # Define file names and polygons
    29 from anuga.pyvolution.smf import slump_tsunami # Function for submarine mudslide
     29from anuga.shallow_water.smf import slump_tsunami # Function for submarine mudslide
    3030
    3131
  • documentation/user_manual/examples/runup.py

    r3534 r3563  
    1010#------------------------------------------------------------------------------
    1111
    12 from anuga.pyvolution.mesh_factory import rectangular_cross
    13 from anuga.pyvolution.shallow_water import Domain
    14 from anuga.pyvolution.shallow_water import Reflective_boundary
    15 from anuga.pyvolution.shallow_water import Dirichlet_boundary
    16 from anuga.pyvolution.shallow_water import Time_boundary
    17 from anuga.pyvolution.shallow_water import Transmissive_boundary
     12from anuga.abstract_2d_finite_volumes.mesh_factory import rectangular_cross
     13from anuga.shallow_water import Domain
     14from anuga.shallow_water import Reflective_boundary
     15from anuga.shallow_water import Dirichlet_boundary
     16from anuga.shallow_water import Time_boundary
     17from anuga.shallow_water import Transmissive_boundary
    1818
    1919
  • documentation/user_manual/examples/runuptest.py

    r3534 r3563  
    1111
    1212from anuga.pmesh.mesh_interface import create_mesh_from_regions
    13 from anuga.pyvolution.shallow_water import Domain
    14 from anuga.pyvolution.shallow_water import Reflective_boundary
    15 from anuga.pyvolution.shallow_water import Dirichlet_boundary
    16 from anuga.pyvolution.shallow_water import Time_boundary
    17 from anuga.pyvolution.shallow_water import Transmissive_boundary
     13from anuga.shallow_water import Domain
     14from anuga.shallow_water import Reflective_boundary
     15from anuga.shallow_water import Dirichlet_boundary
     16from anuga.shallow_water import Time_boundary
     17from anuga.shallow_water import Transmissive_boundary
    1818
    1919
     
    103103gauges, gaugex, gaugey = gauge_line(west,east,north,south)
    104104
    105 from anuga.pyvolution.util import file_function
     105from anuga.abstract_2d_finite_volumes.util import file_function
    106106
    107107f = file_function('test.sww',
Note: See TracChangeset for help on using the changeset viewer.