Go to the source code of this file.
|
class | MatReaction |
| This kernel adds to the residual a contribution of \( -L*v \) where \( L \) is a material property and \( v \) is a variable (nonlinear or coupled). More...
|
|
◆ validParams< MatReaction >()
Definition at line 16 of file MatReaction.C.
18 InputParameters params = validParams<Kernel>();
19 params.addCoupledVar(
"v",
20 "Set this to make v a coupled variable, otherwise it will use the "
21 "kernel's nonlinear variable for v");
22 params.addClassDescription(
"Kernel to add -L*v, where L=reaction rate, v=variable");
23 params.addParam<MaterialPropertyName>(
"mob_name",
"L",
"The reaction rate used with the kernel");
24 params.addCoupledVar(
"args",
"Vector of nonlinear variable arguments this object depends on");