www.mooseframework.org
Functions
StressDivergenceRSpherical.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObjectDeprecated()

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

◆ validParams< StressDivergenceRSpherical >()

template<>
InputParameters validParams< StressDivergenceRSpherical > ( )

Definition at line 19 of file StressDivergenceRSpherical.C.

20 {
21  InputParameters params = validParams<Kernel>();
22  params.addRequiredParam<unsigned int>("component",
23  "An integer corresponding to the direction "
24  "the variable this kernel acts in. (0 for r, "
25  "1 for z)");
26  params.addCoupledVar("disp_r", "The r displacement");
27  // params.addCoupledVar("disp_z", "The z displacement");
28  params.addCoupledVar("temp", "The temperature");
29 
30  params.addParam<Real>("zeta", 0.0, "Stiffness dependent damping parameter for Rayleigh damping");
31  params.addParam<Real>("alpha", 0.0, "alpha parameter for HHT time integration");
32  params.addParam<std::string>(
33  "appended_property_name", "", "Name appended to material properties to make them unique");
34  params.addParam<bool>("volumetric_locking_correction",
35  true,
36  "Set to false to turn off volumetric locking correction");
37 
38  params.set<bool>("use_displaced_mesh") = true;
39 
40  return params;
41 }