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

Go to the source code of this file.

Classes

class  StressDivergenceRZ
 

Functions

template<>
InputParameters validParams< StressDivergenceRZ > ()
 

Function Documentation

◆ validParams< StressDivergenceRZ >()

template<>
InputParameters validParams< StressDivergenceRZ > ( )

Definition at line 25 of file StressDivergenceRZ.C.

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