www.mooseframework.org
Functions
SplitCHWResBase.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< SplitCHWResBase<> > ()
 

Function Documentation

◆ validParams< SplitCHWResBase<> >()

template<>
InputParameters validParams< SplitCHWResBase<> > ( )

Definition at line 14 of file SplitCHWResBase.C.

15 {
16  InputParameters params = validParams<Kernel>();
17  params.addClassDescription(
18  "Split formulation Cahn-Hilliard Kernel for the chemical potential variable");
19  params.addParam<MaterialPropertyName>("mob_name", "mobtemp", "The mobility used with the kernel");
20  params.addCoupledVar("args", "Vector of arguments of the mobility");
21  params.addCoupledVar(
22  "w", "Coupled chemical potential (if not specified kernel variable will be used)");
23  return params;
24 }