www.mooseframework.org
Functions
MacroElastic.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("SolidMechanicsApp", MacroElastic)
 
template<>
InputParameters validParams< MacroElastic > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "SolidMechanicsApp"  ,
MacroElastic   
)

◆ validParams< MacroElastic >()

template<>
InputParameters validParams< MacroElastic > ( )

Definition at line 18 of file MacroElastic.C.

19 {
20  InputParameters params = validParams<Elastic>();
21  params.addRequiredParam<PostprocessorName>("C1111",
22  "The postprocessor associated with the C1111 value");
23  params.addRequiredParam<PostprocessorName>("C1122",
24  "The postprocessor associated with the C1122 value");
25  params.addRequiredParam<PostprocessorName>("C1133",
26  "The postprocessor associated with the C1133 value");
27  params.addRequiredParam<PostprocessorName>("C2222",
28  "The postprocessor associated with the C2222 value");
29  params.addRequiredParam<PostprocessorName>("C2233",
30  "The postprocessor associated with the C2233 value");
31  params.addRequiredParam<PostprocessorName>("C3333",
32  "The postprocessor associated with the C3333 value");
33  params.addRequiredParam<PostprocessorName>("C1212",
34  "The postprocessor associated with the C1212 value");
35  params.addRequiredParam<PostprocessorName>("C2323",
36  "The postprocessor associated with the C2323 value");
37  params.addRequiredParam<PostprocessorName>("C3131",
38  "The postprocessor associated with the C3131 value");
39  return params;
40 }
validParams< Elastic >
InputParameters validParams< Elastic >()
Definition: Elastic.C:16