source: anuga_core/source/anuga/shallow_water/__init__.py @ 3750

Last change on this file since 3750 was 3678, checked in by steve, 18 years ago

Added more limiting to cells near dry cells, use beta_*_dry

File size: 466 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 shallow_water_domain import Domain,\
10    Transmissive_boundary, Reflective_boundary,\
11    Dirichlet_boundary, Time_boundary, File_boundary,\
12    Transmissive_Momentum_Set_Stage_boundary,\
13    Dirichlet_Discharge_boundary,\
14    Constant_stage, Constant_height
15
16
Note: See TracBrowser for help on using the repository browser.