https://mooseframework.inl.gov
ComputeFiniteStrainElasticStress.h
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 
10 #pragma once
11 
12 #include "ComputeStressBase.h"
13 #include "GuaranteeConsumer.h"
14 
20 {
21 public:
23 
25 
26  void initialSetup() override;
27  virtual void initQpStatefulProperties() override;
28 
29 protected:
30  virtual void computeQpStress() override;
31 
33  const std::string _elasticity_tensor_name;
46 
52 };
const MaterialProperty< RankTwoTensor > & _rotation_increment
Rotation increment material property.
ComputeStressBase is the base class for stress tensors computed from MOOSE&#39;s strain calculators...
const MaterialProperty< RankTwoTensor > & _strain_increment
Strain increment material property.
const MaterialProperty< RankFourTensor > & _elasticity_tensor
Elasticity tensor material property.
const std::string _elasticity_tensor_name
Name of the elasticity tensor material property.
const MaterialProperty< RankTwoTensor > & _elastic_strain_old
The old elastic strain is used to calculate the old stress in the case of variable elasticity tensors...
MaterialProperty< RankTwoTensor > & _rotation_total
Rotation up to current step "n" to compute anisotropic elasticity tensor.
ComputeFiniteStrainElasticStress(const InputParameters &parameters)
ComputeFiniteStrainElasticStress computes the stress following elasticity theory for finite strains...
virtual void computeQpStress() override
Compute the stress and store it in the _stress material property for the current quadrature point...
const MaterialProperty< RankTwoTensor > & _stress_old
Old state of the stress tensor material property.
const InputParameters & parameters() const
const MaterialProperty< RankTwoTensor > & _rotation_total_old
Rotation up to "n - 1" (previous) step to compute anisotropic elasticity tensor.
Add-on class that provides the functionality to check if guarantees for material properties are provi...