20 "element, which are vectors of material translational and flexural " 23 "elasticity_prefactor",
24 "Optional function to use as a scalar prefactor on the elasticity vector for the beam.");
27 "Young's modulus of the material. Can be supplied as either a number or a variable name.");
30 "Poisson's ratio of the material. Can be supplied as either a number or a variable name.");
34 "Scale factor for the shear modulus. Can be supplied as either a number or a variable name.");
40 _material_stiffness(declareProperty<
RealVectorValue>(
"material_stiffness")),
41 _material_flexure(declareProperty<
RealVectorValue>(
"material_flexure")),
42 _prefactor_function(isParamValid(
"elasticity_prefactor") ? &getFunction(
"elasticity_prefactor")
44 _youngs_modulus(coupledValue(
"youngs_modulus")),
45 _poissons_ratio(coupledValue(
"poissons_ratio")),
46 _shear_coefficient(coupledValue(
"shear_coefficient"))
const MooseArray< Point > & _q_point
const VariableValue & _shear_coefficient
Shear coefficient for the beam cross-section.
virtual void computeQpProperties() override
MaterialProperty< RealVectorValue > & _material_flexure
Material flexure vector that relates rotational strain increments to moment increments.
static InputParameters validParams()
MaterialProperty< RealVectorValue > & _material_stiffness
Material stiffness vector that relates displacement strain increments to force increments.
const VariableValue & _youngs_modulus
Young's modulus of the beam material.
static InputParameters validParams()
ComputeElasticityBeam(const InputParameters ¶meters)
const VariableValue & _poissons_ratio
Poisson's ratio of the beam material.
ComputeElasticityBeam computes the equivalent of the elasticity tensor for the beam element...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual Real value(Real t, const Point &p) const
const Function *const _prefactor_function
Prefactor function used to modify (i.e., multiply) the material stiffness and flexure vectors...
registerMooseObject("SolidMechanicsApp", ComputeElasticityBeam)