Changeset 5242 for anuga_core/source/anuga/advection
- Timestamp:
- Apr 24, 2008, 7:30:33 PM (16 years ago)
- Location:
- anuga_core/source/anuga/advection
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/advection/__init__.py
r3592 r5242 2 2 """ 3 3 4 pass 4 # Add path of package to PYTHONPATH to allow C-extensions to be loaded 5 import sys 6 sys.path += __path__ 7 8 # Make selected classes available directly 9 from advection import Domain,\ 10 Transmissive_boundary, Dirichlet_boundary 5 11 6 12 7 13 8 -
anuga_core/source/anuga/advection/advection.py
r4978 r5242 157 157 158 158 import advection_ext 159 self. timestep = advection_ext.compute_fluxes(self, Stage, huge_timestep, max_timestep)159 self.flux_timestep = advection_ext.compute_fluxes(self, Stage, huge_timestep, max_timestep) 160 160 161 161 -
anuga_core/source/anuga/advection/test_advection.py
r4978 r5242 143 143 144 144 145 def FIXME_test_advection_example(self):145 def test_advection_example(self): 146 146 #Test that system can evolve 147 147
Note: See TracChangeset
for help on using the changeset viewer.