www.mooseframework.org
Classes | Functions
ACInterfaceKobayashi1.h File Reference

Go to the source code of this file.

Classes

class  ACInterfaceKobayashi1
 Kernel 1 of 2 for interfacial energy anisotropy in the Allen-Cahn equation as implemented in R. More...
 

Functions

template<>
InputParameters validParams< ACInterfaceKobayashi1 > ()
 

Function Documentation

◆ 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 }