https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ComputeLagrangianLinearElasticStress.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
11
13
16{
18
19 params.addParam<MaterialPropertyName>(
20 "elasticity_tensor", "elasticity_tensor", "The name of the elasticity tensor.");
21
22 return params;
23}
24
26 const InputParameters & parameters)
28 _elasticity_tensor(getMaterialProperty<RankFourTensor>(
29 _base_name + getParam<MaterialPropertyName>("elasticity_tensor")))
30{
31}
32
33void
registerMooseObject("SolidMechanicsApp", ComputeLagrangianLinearElasticStress)
Calculate a small strain elastic stress update.
ComputeLagrangianLinearElasticStress(const InputParameters &parameters)
virtual void computeQpSmallStress()
Implement the elastic small stress update.
const MaterialProperty< RankFourTensor > & _elasticity_tensor
The elasticity tensor.
Provide the Cauchy stress via an objective integration of a small stress.
const MaterialProperty< RankTwoTensor > & _mechanical_strain
Provided for material models that use the integrated strain.
MaterialProperty< RankTwoTensor > & _small_stress
The updated small stress.
MaterialProperty< RankFourTensor > & _small_jacobian
The updated small algorithmic tangent.
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
unsigned int _qp