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

Go to the source code of this file.

Classes

class  MaskedBodyForce
 This kernel creates a body force that is modified by a mask defined as a material. More...
 

Functions

template<>
InputParameters validParams< MaskedBodyForce > ()
 

Function Documentation

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