source: trunk/anuga_core/source/anuga/__init__.py @ 7761

Last change on this file since 7761 was 7751, checked in by hudson, 14 years ago

Refactorings from May ANUGA meeting.

File size: 867 bytes
Line 
1"""Make directory available as a Python package
2"""
3
4pass
5
6#Add path of package to PYTHONPATH to allow C-extensions to be loaded
7import sys
8sys.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 TracBrowser for help on using the repository browser.