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

Go to the source code of this file.

Classes

class  SimpleCHInterface
 Compute the Cahn-Hilliard interface term with constant Mobility and Interfacial parameter. More...
 

Functions

template<>
InputParameters validParams< SimpleCHInterface > ()
 

Function Documentation

◆ 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 }