www.mooseframework.org
Functions
SusceptibilityTimeDerivative.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
SusceptibilityTimeDerivative   
)

◆ validParams< SusceptibilityTimeDerivative >()

template<>
InputParameters validParams< SusceptibilityTimeDerivative > ( )

Definition at line 16 of file SusceptibilityTimeDerivative.C.

17 {
18  InputParameters params = validParams<TimeDerivative>();
19  params.addClassDescription(
20  "A modified time derivative Kernel that multiplies the time derivative "
21  "of a variable by a generalized susceptibility");
22  params.addRequiredParam<MaterialPropertyName>(
23  "f_name", "Susceptibility function F defined in a FunctionMaterial");
24  params.addCoupledVar("args", "Vector of arguments of the susceptibility");
25  return params;
26 }