www.mooseframework.org
GeneralizedKelvinVoigtModel.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 
21 {
22 public:
24 
26 
27 protected:
28  virtual void computeQpViscoelasticProperties();
30 
37  std::vector<RankFourTensor> _Ci;
39  std::vector<Real> _eta_i;
40 
44  std::vector<RankFourTensor> _Si;
45 };
This class is an implementation of a generalized Kelvin-Voigt model with constant mechanical properti...
virtual void computeQpViscoelasticPropertiesInv()
This method computes the inverse elasticity tensor of each spring in the system (if required)...
std::vector< Real > _eta_i
The viscosity of each dashpot.
RankFourTensor _S0
The inverse of the elasticity tensor of the first spring.
std::vector< RankFourTensor > _Ci
The elasticity tensor of each subsequent spring.
virtual void computeQpViscoelasticProperties()
This method assigns the mechanical properties of each spring and dashpot in the system.
RankFourTensor _C0
The elasticity tensor associated with the first spring.
GeneralizedKelvinVoigtModel(const InputParameters &parameters)
static InputParameters validParams()
This class represents an assembly of springs and dashpots following a generalized Kelvin-Voigt model ...
std::vector< RankFourTensor > _Si
The inverse of each subsequent spring elasticity tensor.
const InputParameters & parameters() const