14 #include <muesli/muesli.h>
16 #include <Eigen/Eigen>
30template <
typename SM = muesli::elasticIsotropicMaterial>
31requires(std::is_base_of_v<muesli::smallStrainMaterial, SM>)
32struct SmallStrain :
public Material<SmallStrain<SM>>
34 using MaterialModel = SM;
35 using ScalarType = double;
36 static constexpr int dim = 3;
37 using StrainMatrix = Eigen::Matrix<ScalarType, dim, dim>;
38 using StressMatrix = StrainMatrix;
39 using MaterialTensor = Eigen::TensorFixedSize<ScalarType, Eigen::Sizes<dim, dim, dim, dim>>;
40 using MaterialParameters = muesli::materialProperties;
45 static constexpr bool energyAcceptsVoigt =
false;
46 static constexpr bool stressToVoigt =
false;
47 static constexpr bool stressAcceptsVoigt =
false;
48 static constexpr bool moduliToVoigt =
false;
49 static constexpr bool moduliAcceptsVoigt =
false;
50 static constexpr double derivativeFactorImpl = 1;
52 [[nodiscard]]
constexpr static std::string nameImpl() noexcept {
return "SmallStrain: " + materialName<SM>(); }
58 template <Concepts::MPTuple MPT>
59 requires(std::same_as<MaterialModel, muesli::elasticIsotropicMaterial>)
60 explicit SmallStrain(
const MPT& mpt)
61 : materialParameter_{propertiesFromIkarusMaterialParameters(mpt)},
62 material_{Dune::className<SM>(), materialParameter_},
63 mp_{material_.createMaterialPoint()} {}
69 explicit SmallStrain(
const MaterialParameters& mpt)
70 : materialParameter_{mpt},
71 material_{
Dune::className<SM>(), mpt},
72 mp_{material_.createMaterialPoint()} {}
77 MaterialParameters materialParametersImpl()
const {
return materialParameter_; }
85 template <
typename Derived>
86 ScalarType storedEnergyImpl(
const Eigen::MatrixBase<Derived>& E)
const {
87 static_assert(Concepts::EigenMatrixOrVoigtNotation3<Derived>);
88 if constexpr (!Concepts::EigenVector<Derived>) {
90 return mp_->storedEnergy();
92 static_assert(!Concepts::EigenVector<Derived>,
93 "MuesliSmallStrain energy can only be called with a matrix and not a vector in Voigt notation");
103 template <
bool voigt,
typename Derived>
104 auto stressesImpl(
const Eigen::MatrixBase<Derived>& E)
const {
105 static_assert(Concepts::EigenMatrixOrVoigtNotation3<Derived>);
106 if constexpr (!voigt) {
107 if constexpr (!Concepts::EigenVector<Derived>) {
111 return toEigenMatrix(stress);
113 static_assert(!Concepts::EigenVector<Derived>,
114 "MuesliSmallStrain can only be called with a matrix and not a vector in Voigt notation");
116 static_assert(voigt ==
false,
"MuesliSmallStrain does not support returning stresses in Voigt notation");
126 template <
bool voigt,
typename Derived>
127 auto tangentModuliImpl(
const Eigen::MatrixBase<Derived>& E)
const {
128 static_assert(Concepts::EigenMatrixOrVoigtNotation3<Derived>);
129 if constexpr (!voigt) {
130 if constexpr (!Concepts::EigenVector<Derived>) {
132 itensor4 tangentModuli;
133 mp_->tangentTensor(tangentModuli);
134 return toEigenTensor(tangentModuli);
136 static_assert(!Concepts::EigenVector<Derived>,
137 "MuesliSmallStrain can only be called with a matrix and not a vector in Voigt notation");
139 static_assert(voigt ==
false,
"MuesliSmallStrain does not support returning tangent moduli in Voigt notation");
146 auto& material()
const {
return material_; }
152 auto& materialPoint()
const {
return mp_; }
154 SmallStrain(
const SmallStrain& other)
155 : materialParameter_{other.materialParameter_},
156 material_{
Dune::className<SM>(), materialParameter_},
157 mp_{material_.createMaterialPoint()} {}
160 MaterialParameters materialParameter_;
161 MaterialModel material_;
162 std::unique_ptr<muesli::smallStrainMP> mp_;
164 template <
typename Derived>
165 void updateState(
const Eigen::MatrixBase<Derived>& E)
const {
166 mp_->updateCurrentState(0.0, toistensor(E.derived()));
173 #error Muesli materials depends on the Muesli library, which is not included
Helper for the Eigen::Tensor types.
Definition: arrudaboyce.hh:27
Definition: utils/dirichletvalues.hh:30
Contains the Material interface class and related template functions for material properties.