www.mooseframework.org
Functions
NodalDisplacementDifferenceL2NormPD.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PeridynamicsApp", NodalDisplacementDifferenceL2NormPD)
 
template<>
InputParameters validParams< NodalDisplacementDifferenceL2NormPD > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PeridynamicsApp"  ,
NodalDisplacementDifferenceL2NormPD   
)

◆ validParams< NodalDisplacementDifferenceL2NormPD >()

template<>
InputParameters validParams< NodalDisplacementDifferenceL2NormPD > ( )

Definition at line 18 of file NodalDisplacementDifferenceL2NormPD.C.

19 {
20  InputParameters params = validParams<NodalIntegralPostprocessorBasePD>();
21  params.addClassDescription("Class for computing the L2 norm of the difference between "
22  "displacements and their analytic solutions");
23 
24  params.addRequiredParam<std::vector<FunctionName>>(
25  "analytic_functions", "The known analytic functions for displacements");
26  params.addRequiredParam<std::vector<NonlinearVariableName>>(
27  "displacements", "Nonlinear variable name for the displacements");
28 
29  return params;
30 }
validParams< NodalIntegralPostprocessorBasePD >
InputParameters validParams< NodalIntegralPostprocessorBasePD >()
Definition: NodalIntegralPostprocessorBasePD.C:14