www.mooseframework.org
Functions
SimpleCHInterface.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
SimpleCHInterface   
)

◆ validParams< SimpleCHInterface >()

template<>
InputParameters validParams< SimpleCHInterface > ( )

Definition at line 16 of file SimpleCHInterface.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addClassDescription("Gradient energy for Cahn-Hilliard equation with constant Mobility "
20  "and Interfacial parameter");
21  params.addRequiredParam<MaterialPropertyName>(
22  "kappa_name", "The kappa used with the kernel, should be constant value");
23  params.addRequiredParam<MaterialPropertyName>(
24  "mob_name", "The mobility used with the kernel, should be constant value");
25  return params;
26 }