version 0.4.1
linearelasticity.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
14
15namespace Ikarus::Materials {
16
33template <typename ST>
34struct LinearElasticityT : Material<LinearElasticityT<ST>>
35{
36 using ScalarType = ST;
38
40 static constexpr int dim = Base::dim;
44
46
47 static constexpr auto strainTag = StrainTags::linear;
48 static constexpr auto stressTag = StressTags::linear;
51 static constexpr bool stressToVoigt = Base::stressToVoigt;
53 static constexpr bool moduliToVoigt = Base::moduliToVoigt;
56
57 [[nodiscard]] constexpr static std::string nameImpl() noexcept { return "LinearElasticity"; }
58
65 : svk_{mpt} {}
66
71
79 template <typename Derived>
80 ScalarType storedEnergyImpl(const Eigen::MatrixBase<Derived>& E) const {
81 return svk_.template storedEnergyImpl(E);
82 }
83
92 template <bool voigt, typename Derived>
93 auto stressesImpl(const Eigen::MatrixBase<Derived>& E) const {
94 return svk_.template stressesImpl<voigt>(E);
95 }
96
105 template <bool voigt, typename Derived>
106 auto tangentModuliImpl(const Eigen::MatrixBase<Derived>& E) const {
107 return svk_.template tangentModuliImpl<voigt>(E);
108 }
109
116 template <typename STO>
117 auto rebind() const {
118 LinearElasticityT<STO> leRebound{svk_.template rebind<STO>().materialParametersImpl()};
119 return leRebound;
120 }
121
122private:
124};
125
130
131} // namespace Ikarus::Materials
Implementation of the Saint Venant-Kirchhoff material model.
Definition: arrudaboyce.hh:27
Interface classf or materials.
Definition: finiteelements/mechanics/materials/interface.hh:80
Implementation of the Linear Elasticity material model.The energy is computed as.
Definition: linearelasticity.hh:35
auto stressesImpl(const Eigen::MatrixBase< Derived > &E) const
Calculates the stresses in the material.
Definition: linearelasticity.hh:93
static constexpr double derivativeFactorImpl
Definition: linearelasticity.hh:55
auto rebind() const
Rebind material to a different scalar type.
Definition: linearelasticity.hh:117
static constexpr auto stressTag
Definition: linearelasticity.hh:48
static constexpr bool moduliAcceptsVoigt
Definition: linearelasticity.hh:54
static constexpr bool stressToVoigt
Definition: linearelasticity.hh:51
MaterialParameters materialParametersImpl() const
Returns the material parameters stored in the material.
Definition: linearelasticity.hh:70
static constexpr auto strainTag
Definition: linearelasticity.hh:47
static constexpr std::string nameImpl() noexcept
Definition: linearelasticity.hh:57
ScalarType field_type
Definition: linearelasticity.hh:39
StrainMatrix StressMatrix
Definition: linearelasticity.hh:42
static constexpr int dim
Definition: linearelasticity.hh:40
static constexpr auto tangentModuliTag
Definition: linearelasticity.hh:49
ScalarType storedEnergyImpl(const Eigen::MatrixBase< Derived > &E) const
Calculates the stored energy in the material.
Definition: linearelasticity.hh:80
ST ScalarType
Definition: linearelasticity.hh:36
typename Base::MaterialTensor MaterialTensor
Definition: linearelasticity.hh:43
typename Base::StrainMatrix StrainMatrix
Definition: linearelasticity.hh:41
auto tangentModuliImpl(const Eigen::MatrixBase< Derived > &E) const
Calculates the tangent moduli in the material.
Definition: linearelasticity.hh:106
typename Base::MaterialParameters MaterialParameters
Definition: linearelasticity.hh:45
static constexpr bool moduliToVoigt
Definition: linearelasticity.hh:53
static constexpr bool stressAcceptsVoigt
Definition: linearelasticity.hh:52
LinearElasticityT(const MaterialParameters &mpt)
Constructor for LinearElasticityT.
Definition: linearelasticity.hh:64
static constexpr bool energyAcceptsVoigt
Definition: linearelasticity.hh:50
static constexpr bool moduliToVoigt
Definition: svk.hh:52
LamesFirstParameterAndShearModulus MaterialParameters
Definition: svk.hh:44
static constexpr int dim
Definition: svk.hh:39
Eigen::Matrix< ScalarType, dim, dim > StrainMatrix
Definition: svk.hh:40
static constexpr double derivativeFactorImpl
Definition: svk.hh:54
static constexpr bool stressAcceptsVoigt
Definition: svk.hh:51
Eigen::TensorFixedSize< ScalarType, Eigen::Sizes< dim, dim, dim, dim > > MaterialTensor
Definition: svk.hh:42
static constexpr bool moduliAcceptsVoigt
Definition: svk.hh:53
static constexpr bool stressToVoigt
Definition: svk.hh:50
static constexpr bool energyAcceptsVoigt
Definition: svk.hh:49
MaterialParameters materialParametersImpl() const
Returns the material parameters stored in the material.
Definition: svk.hh:68
Contains the Material interface class and related template functions for material properties.