Go to the source code of this file.
|
class | Grad2ParsedFunction |
| returns the central difference approx to the derivative (direction.nabla)^2 function viz (f(t, p + direction) - 2*f(t, p) + f(t, p - direction))/|direction|^2 This derives from MooseParsedFunction, so it already knows about a function More...
|
|
◆ validParams< Grad2ParsedFunction >()
Definition at line 17 of file Grad2ParsedFunction.C.
19 InputParameters params = validParams<MooseParsedFunction>();
20 params += validParams<MooseParsedFunction>();
21 params.addRequiredParam<RealVectorValue>(
23 "The direction in which to take the derivative. This must not be a zero-length "
24 "vector. This function returned a finite-difference approx to "
25 "(direction.nabla)^2 function");