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

Go to the source code of this file.

Classes

class  NodalDisplacementDifferenceL2NormPD
 Postprocessor class to compute L2 norm of displacements difference between prediction and analytical solution for peridynamic model. More...
 

Functions

template<>
InputParameters validParams< NodalDisplacementDifferenceL2NormPD > ()
 

Function Documentation

◆ 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