www.mooseframework.org
Functions
MatReaction.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PhaseFieldApp", MatReaction)
 
template<>
InputParameters validParams< MatReaction > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
MatReaction   
)

◆ validParams< MatReaction >()

template<>
InputParameters validParams< MatReaction > ( )

Definition at line 16 of file MatReaction.C.

17 {
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");
25  return params;
26 }