www.mooseframework.org
GeneralizedKelvinVoigtBase.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
13 
15 
16 template <>
18 
36 {
37 public:
38  static InputParameters validParams();
39 
40  GeneralizedKelvinVoigtBase(const InputParameters & parameters);
41 
42 protected:
43  virtual void computeQpApparentElasticityTensors() final;
44  virtual void computeQpApparentCreepStrain() final;
45  virtual void updateQpViscousStrains() final;
46 
48  const MaterialProperty<RankFourTensor> & _first_elasticity_tensor_old;
49  const MaterialProperty<RankFourTensor> & _first_elasticity_tensor_inv_old;
51 };
GeneralizedKelvinVoigtBase::_first_elasticity_tensor_inv_old
const MaterialProperty< RankFourTensor > & _first_elasticity_tensor_inv_old
Definition: GeneralizedKelvinVoigtBase.h:49
GeneralizedKelvinVoigtBase::_first_elasticity_tensor_old
const MaterialProperty< RankFourTensor > & _first_elasticity_tensor_old
old material properties required for the update of the viscoelastic strain
Definition: GeneralizedKelvinVoigtBase.h:48
GeneralizedKelvinVoigtBase
This class represents an assembly of springs and dashpots following a generalized Kelvin-Voigt model ...
Definition: GeneralizedKelvinVoigtBase.h:35
LinearViscoelasticityBase.h
validParams< GeneralizedKelvinVoigtBase >
InputParameters validParams< GeneralizedKelvinVoigtBase >()
GeneralizedKelvinVoigtBase::GeneralizedKelvinVoigtBase
GeneralizedKelvinVoigtBase(const InputParameters &parameters)
Definition: GeneralizedKelvinVoigtBase.C:23
GeneralizedKelvinVoigtBase::computeQpApparentElasticityTensors
virtual void computeQpApparentElasticityTensors() final
This method computes the apparent elasticity tensor used in the internal time-stepping scheme.
Definition: GeneralizedKelvinVoigtBase.C:63
GeneralizedKelvinVoigtBase::updateQpViscousStrains
virtual void updateQpViscousStrains() final
Update the internal viscous strains at a quadrature point.
Definition: GeneralizedKelvinVoigtBase.C:33
GeneralizedKelvinVoigtBase::computeQpApparentCreepStrain
virtual void computeQpApparentCreepStrain() final
This method computes the apparent creep strain corresponding to the current viscous_strain of each da...
Definition: GeneralizedKelvinVoigtBase.C:88
GeneralizedKelvinVoigtBase::validParams
static InputParameters validParams()
Definition: GeneralizedKelvinVoigtBase.C:15
LinearViscoelasticityBase
This class is a base class for materials consisting of an assembly of linear springs and dashpots.
Definition: LinearViscoelasticityBase.h:81