source: trunk/anuga_core/source/anuga/shallow_water/__init__.py @ 7772

Last change on this file since 7772 was 7736, checked in by hudson, 14 years ago

Shallow water refactorings - all unit tests pass, and new file conversion test module created.

File size: 745 bytes
Line 
1"""Make directory available as a Python package
2"""
3
4# Add path of package to PYTHONPATH to allow C-extensions to be loaded
5import sys
6sys.path += __path__
7
8# Make selected classes available directly
9from boundaries import Reflective_boundary,\
10     Transmissive_momentum_set_stage_boundary,\
11     Dirichlet_discharge_boundary,\
12     Field_boundary,\
13     Transmissive_stage_zero_momentum_boundary,\
14     Transmissive_n_momentum_zero_t_momentum_set_stage_boundary
15
16from anuga.abstract_2d_finite_volumes.generic_boundary_conditions\
17     import Transmissive_boundary, Dirichlet_boundary, \
18            Time_boundary, File_boundary, AWI_boundary
19
20from shallow_water_domain import Domain
21
22
23#from shallow_water_balanced_domain import Swb_domain
24
25
26 
Note: See TracBrowser for help on using the repository browser.