source: anuga_work/development/sudi/sw_2d/__init__.py @ 7738

Last change on this file since 7738 was 7738, checked in by steve, 14 years ago

Adding a directory for Sudi to work on.

File size: 582 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 swb_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     Field_boundary,\
15     Transmissive_stage_zero_momentum_boundary,\
16     Transmissive_n_momentum_zero_t_momentum_set_stage_boundary,\
17     AWI_boundary
18
19
20
21 
Note: See TracBrowser for help on using the repository browser.