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

Go to the source code of this file.

Classes

class  NodalAreaAction
 

Functions

template<>
InputParameters validParams< NodalAreaAction > ()
 

Function Documentation

◆ validParams< NodalAreaAction >()

template<>
InputParameters validParams< NodalAreaAction > ( )

Definition at line 24 of file NodalAreaAction.C.

25 {
26  MooseEnum orders("FIRST SECOND THIRD FOURTH", "FIRST");
27 
28  InputParameters params = validParams<Action>();
29  params.addParam<BoundaryName>("slave", "The slave surface");
30 
31  // Set this action to build "NodalArea"
32  params.set<std::string>("type") = "NodalArea";
33  return params;
34 }