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

Go to the source code of this file.

Classes

class  ACMultiInterface
 Compute the gradient interface terms for a multiphase system. More...
 

Functions

template<>
InputParameters validParams< ACMultiInterface > ()
 

Function Documentation

◆ validParams< ACMultiInterface >()

template<>
InputParameters validParams< ACMultiInterface > ( )

Definition at line 20 of file ACMultiInterface.C.

21 {
22  InputParameters params = validParams<Kernel>();
23  params.addClassDescription("Gradient energy Allen-Cahn Kernel with cross terms");
24  params.addRequiredCoupledVar("etas", "All eta_i order parameters of the multiphase problem");
25  params.addRequiredParam<std::vector<MaterialPropertyName>>("kappa_names",
26  "The kappa used with the kernel");
27  params.addParam<MaterialPropertyName>("mob_name", "L", "The mobility used with the kernel");
28  return params;
29 }