Go to the documentation of this file.
20 params.addClassDescription(
"Compute stress using elasticity for finite strains");
25 const InputParameters & parameters)
28 _elasticity_tensor_name(_base_name +
"elasticity_tensor"),
29 _elasticity_tensor(getMaterialPropertyByName<
RankFourTensor>(_elasticity_tensor_name)),
30 _strain_increment(getMaterialPropertyByName<
RankTwoTensor>(_base_name +
"strain_increment")),
32 getMaterialPropertyByName<
RankTwoTensor>(_base_name +
"rotation_increment")),
33 _stress_old(getMaterialPropertyOldByName<
RankTwoTensor>(_base_name +
"stress")),
34 _elastic_strain_old(getMaterialPropertyOldByName<
RankTwoTensor>(_base_name +
"elastic_strain"))
42 mooseError(
"ComputeFiniteStrainElasticStress can only be used with elasticity tensor materials "
43 "that guarantee isotropic tensors.");
const MaterialProperty< RankFourTensor > & _elasticity_tensor
Elasticity tensor material property.
const MaterialProperty< RankTwoTensor > & _strain_increment
Strain increment material property.
ComputeFiniteStrainElasticStress computes the stress following elasticity theory for finite strains.
MaterialProperty< RankTwoTensor > & _stress
Stress material property.
const std::string _elasticity_tensor_name
Name of the elasticity tensor material property.
MaterialProperty< RankFourTensor > & _Jacobian_mult
derivative of stress w.r.t. strain (_dstress_dstrain)
const MaterialProperty< RankTwoTensor > & _rotation_increment
Rotation increment material property.
registerMooseObject("TensorMechanicsApp", ComputeFiniteStrainElasticStress)
ComputeStressBase is the base class for stress tensors.
static InputParameters validParams()
const MaterialProperty< RankTwoTensor > & _elastic_strain_old
The old elastic strain is used to calculate the old stress in the case of variable elasticity tensors...
Add-on class that provides the functionality to check if guarantees for material properties are provi...
ComputeFiniteStrainElasticStress(const InputParameters ¶meters)
MaterialProperty< RankTwoTensor > & _elastic_strain
Elastic strain material property.
bool hasGuaranteedMaterialProperty(const MaterialPropertyName &prop, Guarantee guarantee)
void initialSetup() override
const MaterialProperty< RankTwoTensor > & _mechanical_strain
Mechanical strain material property.
defineLegacyParams(ComputeFiniteStrainElasticStress)
virtual void computeQpStress() override
Compute the stress and store it in the _stress material property for the current quadrature point.
static InputParameters validParams()