version 0.4.1
blatzko.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
10#pragma once
11
16
17namespace Ikarus::Materials {
18
33template <typename ST_>
35{
36 using ScalarType = ST_;
37
38 template <typename ST = ScalarType>
39 using PrincipalStretches = Eigen::Vector<ST, 3>;
40
41 static constexpr int dim = 3;
42 static constexpr auto stretchTag = PrincipalStretchTags::total;
43
44 template <typename ST = ScalarType>
45 using FirstDerivative = Eigen::Vector<ST, dim>;
46 template <typename ST = ScalarType>
47 using SecondDerivative = Eigen::Matrix<ST, dim, dim>;
48
49 using MaterialParameters = double;
50
51 [[nodiscard]] constexpr static std::string name() noexcept { return "BlatzKo"; }
52
58 : mu_{mu} {}
59
64
72 template <typename ST>
73 ST storedEnergyImpl(const PrincipalStretches<ST>& lambda) const {
74 return mu_ / 2 * (lambda.cwiseInverse().squaredNorm() + 2 * lambda.prod() - 5);
75 }
76
83 template <typename ST>
85 auto dWdLambda = FirstDerivative<ST>::Zero().eval();
86 const ST J = Impl::determinantFromPrincipalValues(lambda);
87
88 return mu_ * (-lambda.cwisePow(3).cwiseInverse() + (J * lambda.cwiseInverse()));
89 }
90
98 template <typename ST>
100 auto dS = SecondDerivative<ST>::Zero().eval();
101 const ST J = Impl::determinantFromPrincipalValues(lambda);
102
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));
106 dS.array() *= mu_;
107
108 return dS;
109 }
110
116 template <typename STO>
117 auto rebind() const {
118 return BlatzKoT<STO>(mu_);
119 }
120
121private:
123
124 inline static constexpr auto dimensionRange() { return Dune::range(dim); }
125};
126
131
132} // namespace Ikarus::Materials
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.