8 #include <muesli/muesli.h>
20template <
typename MAT>
21concept MuesliMaterialImplementation = std::is_base_of_v<muesli::material, MAT>;
33template <Concepts::MPTuple MPT>
34inline muesli::materialProperties propertiesFromIkarusMaterialParameters(
const MPT& mpt) {
37 auto mpm = muesli::materialProperties{};
38 mpm.insert({
"lambda", converter.toLamesFirstParameter()});
39 mpm.insert({
"mu", converter.toShearModulus()});
48inline void addTag(muesli::materialProperties& mpm,
const std::string& tagName,
double tagValue = 0) {
49 mpm.insert({tagName, tagValue});
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));
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));
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))
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);
107template <Concepts::MuesliMaterialImplementation MAT>
108constexpr std::string materialName() {
109 std::string matName = Dune::className<MAT>();
112 std::string prefix =
"muesli::";
113 matName = matName.substr(prefix.size());
116 if (!matName.empty() && std::islower(matName[0])) {
117 matName[0] = std::toupper(matName[0]);
125 #error Muesli materials depends on the Muesli library, which is not included
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