www.mooseframework.org
Functions
ContactDOFSetSize.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("ContactApp", ContactDOFSetSize)
 
template<>
InputParameters validParams< ContactDOFSetSize > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "ContactApp"  ,
ContactDOFSetSize   
)

◆ validParams< ContactDOFSetSize >()

template<>
InputParameters validParams< ContactDOFSetSize > ( )

Definition at line 25 of file ContactDOFSetSize.C.

26 {
27  InputParameters params = validParams<GeneralPostprocessor>();
28  params.addRequiredParam<VariableName>("variable", "The name of the variable to test for contact");
29  params.addRequiredParam<SubdomainName>("subdomain", "The subdomain that the variable lives on");
30  params.addParam<Real>(
31  "tolerance", TOLERANCE, "The tolerance for accepting that the variable indicates contact");
32  params.addClassDescription("Outputs the number of dofs greater than a tolerance threshold "
33  "indicating mechanical contact");
34  return params;
35 }