Ignore:
Timestamp:
Nov 19, 2010, 2:53:46 PM (12 years ago)
Author:
steve
Message:

Added in a unit test for inlet operator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/abstract_2d_finite_volumes/generic_domain.py

    r8068 r8073  
    13211321    # @note Raises exception of method not known.
    13221322    def set_timestepping_method(self, timestepping_method):
    1323         methods = ['euler', 'rk2', 'rk3']   
     1323        methods = ['euler', 'rk2', 'rk3']
    13241324        if timestepping_method in methods:
    13251325            self.timestepping_method = timestepping_method
    13261326            return
    13271327        if timestepping_method in [1,2,3]:
    1328             self.timetepping_method = methods[timestepping_method-1]
     1328            self.timestepping_method = methods[timestepping_method-1]
    13291329            return
    13301330
Note: See TracChangeset for help on using the changeset viewer.