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

Go to the source code of this file.

Classes

class  SplitCHWResBase< T >
 SplitCHWresBase implements the residual for the chemical potential in the split form of the Cahn-Hilliard equation in a general way that can be templated to a scalar or tensor mobility. More...
 
class  SplitCHWResBase< T >
 SplitCHWresBase implements the residual for the chemical potential in the split form of the Cahn-Hilliard equation in a general way that can be templated to a scalar or tensor mobility. More...
 

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 }