www.mooseframework.org
Functions
MaskedBodyForce.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
MaskedBodyForce   
)

◆ validParams< MaskedBodyForce >()

template<>
InputParameters validParams< MaskedBodyForce > ( )

Definition at line 17 of file MaskedBodyForce.C.

18 {
19  InputParameters params = validParams<BodyForce>();
20  params.addClassDescription("Kernel that defines a body force modified by a material mask");
21  params.addParam<MaterialPropertyName>("mask", "Material property defining the mask");
22  params.addCoupledVar("args", "Vector of nonlinear variable arguments this object depends on");
23  return params;
24 }