Ignore:
Timestamp:
May 28, 2010, 1:24:10 PM (14 years ago)
Author:
hudson
Message:

Refactorings from May ANUGA meeting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/__init__.py

    r3518 r7751  
    77import sys
    88sys.path += __path__
     9
     10
     11# Make selected classes available directly
     12
     13# Boundaries specific to shallow water domain.
     14from anuga.shallow_water.boundaries import Reflective_boundary,\
     15     Transmissive_momentum_set_stage_boundary,\
     16     Dirichlet_discharge_boundary,\
     17     Field_boundary,\
     18     Transmissive_stage_zero_momentum_boundary,\
     19     Transmissive_n_momentum_zero_t_momentum_set_stage_boundary
     20
     21# Boundaries generic across all forms of domain.
     22from anuga.abstract_2d_finite_volumes.generic_boundary_conditions\
     23     import Transmissive_boundary, Dirichlet_boundary, \
     24            Time_boundary, File_boundary, AWI_boundary
     25
     26# Shallow water domain is the standard
     27from anuga.shallow_water.shallow_water_domain import Domain
Note: See TracChangeset for help on using the changeset viewer.