www.mooseframework.org
Functions
ACInterfaceKobayashi1.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
ACInterfaceKobayashi1   
)

◆ validParams< ACInterfaceKobayashi1 >()

template<>
InputParameters validParams< ACInterfaceKobayashi1 > ( )

Definition at line 16 of file ACInterfaceKobayashi1.C.

17 {
18  InputParameters params = validParams<KernelGrad>();
19  params.addClassDescription("Anisotropic gradient energy Allen-Cahn Kernel Part 1");
20  params.addParam<MaterialPropertyName>("mob_name", "L", "The mobility used with the kernel");
21  params.addParam<MaterialPropertyName>("eps_name", "eps", "The anisotropic interface parameter");
22  params.addParam<MaterialPropertyName>(
23  "deps_name",
24  "deps",
25  "The derivative of the anisotropic interface parameter with respect to angle");
26  params.addParam<MaterialPropertyName>(
27  "depsdgrad_op_name",
28  "depsdgrad_op",
29  "The derivative of the anisotropic interface parameter eps with respect to grad_op");
30  params.addParam<MaterialPropertyName>(
31  "ddepsdgrad_op_name", "ddepsdgrad_op", "The derivative of deps with respect to grad_op");
32  params.addCoupledVar("args", "Vector of nonlinear variable arguments this object depends on");
33  return params;
34 }