Ignore:
Timestamp:
Apr 24, 2008, 7:30:33 PM (16 years ago)
Author:
steve
Message:
 
Location:
anuga_core/source/anuga/advection
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/advection/__init__.py

    r3592 r5242  
    22"""
    33
    4 pass
     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 advection import Domain,\
     10    Transmissive_boundary, Dirichlet_boundary
    511
    612
    713
    8 
  • anuga_core/source/anuga/advection/advection.py

    r4978 r5242  
    157157
    158158        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)
    160160
    161161
  • anuga_core/source/anuga/advection/test_advection.py

    r4978 r5242  
    143143
    144144
    145     def FIXME_test_advection_example(self):
     145    def test_advection_example(self):
    146146        #Test that system can evolve
    147147
Note: See TracChangeset for help on using the changeset viewer.