www.mooseframework.org
Functions
SimpleCoupledACInterface.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
SimpleCoupledACInterface   
)

◆ validParams< SimpleCoupledACInterface >()

template<>
InputParameters validParams< SimpleCoupledACInterface > ( )

Definition at line 16 of file SimpleCoupledACInterface.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addClassDescription("Gradient energy for Allen-Cahn Kernel with constant Mobility and "
20  "Interfacial parameter for a coupled order parameter variable.");
21  params.addRequiredCoupledVar("v", "Coupled variable that the Laplacian is taken of");
22  params.addParam<MaterialPropertyName>("mob_name", "L", "The mobility used with the kernel");
23  params.addParam<MaterialPropertyName>("kappa_name", "kappa_op", "The kappa used with the kernel");
24  return params;
25 }