www.mooseframework.org
Functions
ACKappaFunction.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
ACKappaFunction   
)

◆ validParams< ACKappaFunction >()

template<>
InputParameters validParams< ACKappaFunction > ( )

Definition at line 16 of file ACKappaFunction.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addClassDescription("Gradient energy term for when kappa as a function of the variable");
20  params.addParam<MaterialPropertyName>("mob_name", "L", "The mobility used with the kernel");
21  params.addParam<MaterialPropertyName>("kappa_name", "kappa_op", "The kappa function name");
22  params.addCoupledVar("v",
23  "Vector of additional nonlinear variables that affect the gradient energy");
24  return params;
25 }