www.mooseframework.org
Functions
CoupledDirectionalMeshHeightInterpolation.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("MiscApp", CoupledDirectionalMeshHeightInterpolation)
 
template<>
InputParameters validParams< CoupledDirectionalMeshHeightInterpolation > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "MiscApp"  ,
CoupledDirectionalMeshHeightInterpolation   
)

◆ validParams< CoupledDirectionalMeshHeightInterpolation >()

template<>
InputParameters validParams< CoupledDirectionalMeshHeightInterpolation > ( )

Definition at line 19 of file CoupledDirectionalMeshHeightInterpolation.C.

20 {
21  InputParameters params = validParams<AuxKernel>();
22  params.addRequiredCoupledVar("coupled_var",
23  "The variable whose values are going to be interpolated.");
24 
25  MooseEnum directions("x y z");
26  params.addRequiredParam<MooseEnum>("direction", directions, "The direction to interpolate in.");
27 
28  return params;
29 }