www.mooseframework.org
GeneralizedMaxwellModel.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 
12 #include "GeneralizedMaxwellBase.h"
13 
15 
16 template <>
17 InputParameters validParams<GeneralizedMaxwellModel>();
18 
27 {
28 public:
29  static InputParameters validParams();
30 
31  GeneralizedMaxwellModel(const InputParameters & parameters);
32 
33 protected:
34  virtual void computeQpViscoelasticProperties();
36 
43  std::vector<RankFourTensor> _Ci;
45  std::vector<Real> _eta_i;
46 
50  std::vector<RankFourTensor> _Si;
51 };
GeneralizedMaxwellModel::_Si
std::vector< RankFourTensor > _Si
The inverse of each subsequent spring elasticity tensor.
Definition: GeneralizedMaxwellModel.h:50
GeneralizedMaxwellModel::computeQpViscoelasticPropertiesInv
virtual void computeQpViscoelasticPropertiesInv()
This method computes the inverse elasticity tensor of each spring in the system (if required).
Definition: GeneralizedMaxwellModel.C:100
GeneralizedMaxwellBase.h
GeneralizedMaxwellModel::computeQpViscoelasticProperties
virtual void computeQpViscoelasticProperties()
This method assigns the mechanical properties of each spring and dashpot in the system.
Definition: GeneralizedMaxwellModel.C:88
GeneralizedMaxwellModel::GeneralizedMaxwellModel
GeneralizedMaxwellModel(const InputParameters &parameters)
Definition: GeneralizedMaxwellModel.C:36
validParams< GeneralizedMaxwellModel >
InputParameters validParams< GeneralizedMaxwellModel >()
GeneralizedMaxwellBase
This class represents an assembly of springs and dashpots following a generalized Maxwell model (an a...
Definition: GeneralizedMaxwellBase.h:35
GeneralizedMaxwellModel::_S0
RankFourTensor _S0
The inverse of the elasticity tensor of the first spring.
Definition: GeneralizedMaxwellModel.h:48
GeneralizedMaxwellModel
This class is an implementation of a generalized Maxwell model with constant mechanical properties.
Definition: GeneralizedMaxwellModel.h:26
GeneralizedMaxwellModel::_C0
RankFourTensor _C0
The elasticity tensor associated with the first spring.
Definition: GeneralizedMaxwellModel.h:41
RankFourTensorTempl< Real >
GeneralizedMaxwellModel::_eta_i
std::vector< Real > _eta_i
The viscosity of each dashpot.
Definition: GeneralizedMaxwellModel.h:45
GeneralizedMaxwellModel::_Ci
std::vector< RankFourTensor > _Ci
The elasticity tensor of each subsequent spring.
Definition: GeneralizedMaxwellModel.h:43
GeneralizedMaxwellModel::validParams
static InputParameters validParams()
Definition: GeneralizedMaxwellModel.C:17