source: trunk/anuga_core/source/anuga_parallel/__init__.py @ 7841

Last change on this file since 7841 was 7811, checked in by steve, 14 years ago
File size: 552 bytes
Line 
1"""
2This is the public API to ANUGA_PARALLEL.
3
4Ideally, all tools needed to run parallel simulations should be
5imported from this module
6"""
7
8from parallel_api import distribute
9from parallel_api import myid, numprocs, get_processor_name
10from parallel_api import send, receive
11from parallel_api import pypar_available, barrier, finalize
12
13from parallel_meshes import parallel_rectangle
14
15from parallel_shallow_water import Parallel_domain as Parallel_shallow_water_domain
16from parallel_advection     import Parallel_domain as Parallel_advection_domain
17
18
Note: See TracBrowser for help on using the repository browser.