- Timestamp:
- 09/17/2008 08:58:10 AM (4 months ago)
- Files:
-
- 1 modified
-
trunk/fipy/terms/term.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fipy/terms/term.py
r2728 r2737 7 7 # FILE: "term.py" 8 8 # created: 11/12/03 {10:54:37 AM} 9 # last update: 7/25/07 {9:57:14AM}9 # last update: 9/17/08 {9:34:46 AM} 10 10 # Author: Jonathan Guyer <guyer@nist.gov> 11 11 # Author: Daniel Wheeler <daniel.wheeler@nist.gov> … … 213 213 matrix, RHSvector = self._applyUnderRelaxation(matrix, var, RHSvector, underRelaxation) 214 214 215 residualFn = residualFn or self._calcResidual 215 residualFn = residualFn or self._calcResidualVector 216 216 217 217 return residualFn(var, matrix, RHSvector)
FiPy: A Finite Volume PDE Solver Using Python