https://mooseframework.inl.gov
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 
33 void
35 {
38 }
const MaterialProperty< RankTwoTensor > & _mechanical_strain
Provided for material models that use the integrated strain.
const MaterialProperty< RankFourTensor > & _elasticity_tensor
The elasticity tensor.
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
virtual void computeQpSmallStress()
Implement the elastic small stress update.
unsigned int _qp
Provide the Cauchy stress via an objective integration of a small stress.
registerMooseObject("SolidMechanicsApp", ComputeLagrangianLinearElasticStress)
Calculate a small strain elastic stress update.
ComputeLagrangianLinearElasticStress(const InputParameters &parameters)
MaterialProperty< RankFourTensor > & _small_jacobian
The updated small algorithmic tangent.
MaterialProperty< RankTwoTensor > & _small_stress
The updated small stress.