version 0.4.1
mueslihelpers.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
4#pragma once
5
6#if ENABLE_MUESLI
7
8 #include <muesli/muesli.h>
9
12
13namespace Ikarus::Concepts {
20template <typename MAT>
21concept MuesliMaterialImplementation = std::is_base_of_v<muesli::material, MAT>;
22} // namespace Ikarus::Concepts
23
24namespace Ikarus::Materials {
25
33template <Concepts::MPTuple MPT>
34inline muesli::materialProperties propertiesFromIkarusMaterialParameters(const MPT& mpt) {
35 auto converter = convertLameConstants(mpt);
36
37 auto mpm = muesli::materialProperties{};
38 mpm.insert({"lambda", converter.toLamesFirstParameter()});
39 mpm.insert({"mu", converter.toShearModulus()});
40
41 return mpm;
42}
43
48inline void addTag(muesli::materialProperties& mpm, const std::string& tagName, double tagValue = 0) {
49 mpm.insert({tagName, tagValue});
50}
51
57inline istensor toistensor(const Eigen::Matrix<double, 3, 3>& C) {
58 return istensor(C(0, 0), C(1, 1), C(2, 2), C(1, 2), C(2, 0), C(0, 1));
59}
60
66inline itensor toitensor(const Eigen::Matrix<double, 3, 3>& C) {
67 return itensor(C(0, 0), C(0, 1), C(0, 2), C(1, 0), C(1, 1), C(1, 2), C(2, 0), C(2, 1), C(2, 2));
68}
69
76inline auto toEigenMatrix(const istensor& it) {
77 auto S = Eigen::Matrix<double, 3, 3>{};
78 for (auto i : Dune::range(3))
79 for (auto j : Dune::range(3))
80 S(i, j) = it(i, j);
81 return S;
82}
83
90inline auto toEigenTensor(const itensor4& it) {
91 Eigen::TensorFixedSize<double, Eigen::Sizes<3, 3, 3, 3>> moduli{};
92 for (auto i : Dune::range(3))
93 for (auto j : Dune::range(3))
94 for (auto k : Dune::range(3))
95 for (auto l : Dune::range(3))
96 moduli(i, j, k, l) = it(i, j, k, l);
97
98 return moduli;
99}
100
107template <Concepts::MuesliMaterialImplementation MAT>
108constexpr std::string materialName() {
109 std::string matName = Dune::className<MAT>();
110
111 // Find and remove the "muesli::" namespace
112 std::string prefix = "muesli::";
113 matName = matName.substr(prefix.size());
114
115 // Capitalize the first letter
116 if (!matName.empty() && std::islower(matName[0])) {
117 matName[0] = std::toupper(matName[0]);
118 }
119 return matName;
120}
121
122} // namespace Ikarus::Materials
123
124#else
125 #error Muesli materials depends on the Muesli library, which is not included
126#endif
Helper for the Eigen::Tensor types.
Material property functions and conversion utilities.
ConvertLameConstants< YoungsModulusAndPoissonsRatio > convertLameConstants(const YoungsModulusAndPoissonsRatio &valuePair)
Definition: physicshelper.hh:245
Definition: finiteelements/mechanics/materials/hyperelastic/concepts.hh:17
Definition: arrudaboyce.hh:27