www.mooseframework.org
Functions
CoupledAllenCahn.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
CoupledAllenCahn   
)

◆ validParams< CoupledAllenCahn >()

template<>
InputParameters validParams< CoupledAllenCahn > ( )

Definition at line 16 of file CoupledAllenCahn.C.

17 {
18  InputParameters params = ACBulk<Real>::validParams();
19  params.addClassDescription(
20  "Coupled Allen-Cahn Kernel that uses a DerivativeMaterial Free Energy");
21  params.addRequiredCoupledVar("v", "Coupled variable");
22  params.addRequiredParam<MaterialPropertyName>(
23  "f_name", "Base name of the free energy function F defined in a DerivativeParsedMaterial");
24  return params;
25 }
ACBulk::validParams
static InputParameters validParams()
Definition: ACBulk.h:74