33template <
typename ST_>
38 template <
typename ST = ScalarType>
41 static constexpr int dim = 3;
44 template <
typename ST = ScalarType>
46 template <
typename ST = ScalarType>
51 [[nodiscard]]
constexpr static std::string
name() noexcept {
return "BlatzKo"; }
72 template <
typename ST>
74 return mu_ / 2 * (lambda.cwiseInverse().squaredNorm() + 2 * lambda.prod() - 5);
83 template <
typename ST>
86 const ST J = Impl::determinantFromPrincipalValues(lambda);
88 return mu_ * (-lambda.cwisePow(3).cwiseInverse() + (J * lambda.cwiseInverse()));
98 template <
typename ST>
101 const ST J = Impl::determinantFromPrincipalValues(lambda);
103 auto lam = lambda.array();
104 dS = J / (lambda * lambda.transpose()).array();
105 dS.diagonal() = lam.square().inverse() * (lam.square().inverse() - J) + (3.0 / lam.pow(4));
116 template <
typename STO>
124 inline static constexpr auto dimensionRange() {
return Dune::range(
dim); }
Helper for the Eigen::Tensor types.
helper functions used by material model implementations.
Definition of several material related enums.
Definition: arrudaboyce.hh:27
Implementation of the Blatz-Ko material model.
Definition: blatzko.hh:35
static constexpr auto stretchTag
Definition: blatzko.hh:42
ST storedEnergyImpl(const PrincipalStretches< ST > &lambda) const
Computes the stored energy in the BlatzKo material model.
Definition: blatzko.hh:73
BlatzKoT(MaterialParameters mu)
Constructor for BlatzKoT.
Definition: blatzko.hh:57
static constexpr std::string name() noexcept
Definition: blatzko.hh:51
ST_ ScalarType
Definition: blatzko.hh:36
MaterialParameters materialParametersImpl() const
Returns the material parameters stored in the material.
Definition: blatzko.hh:63
Eigen::Matrix< ST, dim, dim > SecondDerivative
Definition: blatzko.hh:47
Eigen::Vector< ST, dim > FirstDerivative
Definition: blatzko.hh:45
Eigen::Vector< ST, 3 > PrincipalStretches
Definition: blatzko.hh:39
double MaterialParameters
Definition: blatzko.hh:49
SecondDerivative< ST > secondDerivativeImpl(const PrincipalStretches< ST > &lambda) const
Computes the second derivatives of the stored energy function w.r.t. the total principal stretches.
Definition: blatzko.hh:99
static constexpr int dim
Definition: blatzko.hh:41
FirstDerivative< ST > firstDerivativeImpl(const PrincipalStretches< ST > &lambda) const
Computes the first derivative of the stored energy function w.r.t. the total principal stretches.
Definition: blatzko.hh:84
auto rebind() const
Rebinds the material to a different scalar type.
Definition: blatzko.hh:117
Contains the Material interface class and related template functions for material properties.