www.mooseframework.org
Functions
ACInterface.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
ACInterface   
)

◆ validParams< ACInterface >()

template<>
InputParameters validParams< ACInterface > ( )

Definition at line 16 of file ACInterface.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addClassDescription("Gradient energy Allen-Cahn Kernel");
20  params.addParam<MaterialPropertyName>("mob_name", "L", "The mobility used with the kernel");
21  params.addParam<MaterialPropertyName>("kappa_name", "kappa_op", "The kappa used with the kernel");
22  params.addCoupledVar("args", "Vector of nonlinear variable arguments this object depends on");
23  params.addParam<bool>("variable_L",
24  true,
25  "The mobility is a function of any MOOSE variable (if "
26  "this is set to false L must be constant over the "
27  "entire domain!)");
28  return params;
29 }

Referenced by validParams< ACInterface2DMultiPhase1 >(), and validParams< ACInterface2DMultiPhase2 >().