www.mooseframework.org
Functions
XFEMCutPlaneAux.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("XFEMApp", XFEMCutPlaneAux)
 
template<>
InputParameters validParams< XFEMCutPlaneAux > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "XFEMApp"  ,
XFEMCutPlaneAux   
)

◆ validParams< XFEMCutPlaneAux >()

template<>
InputParameters validParams< XFEMCutPlaneAux > ( )

Definition at line 18 of file XFEMCutPlaneAux.C.

19 {
20  InputParameters params = validParams<AuxKernel>();
21  MooseEnum quantity("origin_x origin_y origin_z normal_x normal_y normal_z");
22  params.addRequiredParam<MooseEnum>(
23  "quantity", quantity, "The quantity to be extracted. Choices: " + quantity.getRawNames());
24  params.addParam<unsigned int>("plane_id", 0, "The index of the cut plane");
25  return params;
26 }