www.mooseframework.org
Functions
OutOfPlaneStress.C File Reference

Go to the source code of this file.

Functions

 registerMooseObjectDeprecated ("SolidMechanicsApp", OutOfPlaneStress, "07/30/2020 24:00")
 
template<>
InputParameters validParams< OutOfPlaneStress > ()
 

Function Documentation

◆ registerMooseObjectDeprecated()

registerMooseObjectDeprecated ( "SolidMechanicsApp"  ,
OutOfPlaneStress  ,
"07/30/2020 24:00"   
)

◆ validParams< OutOfPlaneStress >()

template<>
InputParameters validParams< OutOfPlaneStress > ( )

Definition at line 19 of file OutOfPlaneStress.C.

20 {
21  InputParameters params = validParams<Kernel>();
22  params.addCoupledVar("disp_x", "The x displacement");
23  params.addCoupledVar("disp_y", "The y displacement");
24  params.addCoupledVar("temp", "The temperature");
25  params.addParam<std::string>(
26  "appended_property_name", "", "Name appended to material properties to make them unique");
27 
28  params.set<bool>("use_displaced_mesh") = true;
29 
30  return params;
31 }