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

Go to the source code of this file.

Classes

class  ACInterface
 Compute the Allen-Cahn interface term with the weak form residual \( \left( \kappa_i \nabla\eta_i, \nabla (L_i \psi) \right) \). More...
 

Functions

template<>
InputParameters validParams< ACInterface > ()
 

Function Documentation

◆ 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 >().