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

Go to the source code of this file.

Classes

class  AllenCahn
 AllenCahn uses the Free Energy function and derivatives provided by a DerivativeParsedMaterial to computer the residual for the bulk part of the Allen-Cahn equation. More...
 

Functions

template<>
InputParameters validParams< AllenCahn > ()
 

Function Documentation

◆ validParams< AllenCahn >()

template<>
InputParameters validParams< AllenCahn > ( )

Definition at line 16 of file AllenCahn.C.

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