version 0.4.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
membranestrains.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
9#pragma once
10
11#include <dune/common/fvector.hh>
12
13#include <Eigen/Core>
14namespace Ikarus {
15
17{
29 template <typename GEO>
30 static auto value(const Dune::FieldVector<double, 2>& gpPos, const GEO& geo,
31 const auto& uFunction) -> Eigen::Vector3<typename std::remove_cvref_t<decltype(uFunction)>::ctype> {
32 using ScalarType = typename std::remove_cvref_t<decltype(uFunction)>::ctype;
33 Eigen::Vector3<ScalarType> epsV;
34 const auto J = Dune::toEigen(geo.jacobianTransposed(gpPos));
35 using namespace Dune;
36 using namespace Dune::DerivativeDirections;
37 const Eigen::Matrix<ScalarType, 3, 2> gradu = toEigen(
38 uFunction.evaluateDerivative(gpPos, // Here the gpIndex could be passed
39 Dune::wrt(spatialAll), Dune::on(Dune::DerivativeDirections::referenceElement)));
40 const Eigen::Matrix<ScalarType, 2, 3> j = J + gradu.transpose();
41
42 epsV << J.row(0).dot(gradu.col(0)) + 0.5 * gradu.col(0).squaredNorm(),
43 J.row(1).dot(gradu.col(1)) + 0.5 * gradu.col(1).squaredNorm(), j.row(0).dot(j.row(1)) - J.row(0).dot(J.row(1));
44 return epsV;
45 }
46
63 template <typename GEO, typename ST>
64 static auto derivative(const Dune::FieldVector<double, 2>& gpPos, const Eigen::Matrix<ST, 2, 3>& jcur,
65 const auto& dNAtGp, const GEO& geo, const auto& uFunction, const auto& localBasis,
66 const int node) {
67 Eigen::Matrix<ST, 3, 3> bop;
68 bop.row(0) = jcur.row(0) * dNAtGp(node, 0);
69 bop.row(1) = jcur.row(1) * dNAtGp(node, 1);
70 bop.row(2) = jcur.row(0) * dNAtGp(node, 1) + jcur.row(1) * dNAtGp(node, 0);
71
72 return bop;
73 }
74
94 template <typename GEO, typename ST>
95 static auto secondDerivative(const Dune::FieldVector<double, 2>& gpPos, const auto& dNAtGp, const GEO& geo,
96 const auto& uFunction, const auto& localBasis, const Eigen::Vector3<ST>& S, int I,
97 int J) {
98 const auto& dN1i = dNAtGp(I, 0);
99 const auto& dN1j = dNAtGp(J, 0);
100 const auto& dN2i = dNAtGp(I, 1);
101 const auto& dN2j = dNAtGp(J, 1);
102 const ST NS = dN1i * dN1j * S[0] + dN2i * dN2j * S[1] + (dN1i * dN2j + dN2i * dN1j) * S[2];
103 Eigen::Matrix<ST, 3, 3> kg = Eigen::Matrix<double, 3, 3>::Identity() * NS;
104 return kg;
105 }
106};
107
108} // namespace Ikarus
Definition: assemblermanipulatorbuildingblocks.hh:22
Definition: utils/dirichletvalues.hh:30
Definition: membranestrains.hh:17
static auto derivative(const Dune::FieldVector< double, 2 > &gpPos, const Eigen::Matrix< ST, 2, 3 > &jcur, const auto &dNAtGp, const GEO &geo, const auto &uFunction, const auto &localBasis, const int node)
Compute the strain-displacement matrix for a given node and integration point.
Definition: membranestrains.hh:64
static auto secondDerivative(const Dune::FieldVector< double, 2 > &gpPos, const auto &dNAtGp, const GEO &geo, const auto &uFunction, const auto &localBasis, const Eigen::Vector3< ST > &S, int I, int J)
Compute the second derivative of the membrane strain for a given node pair and integration point.
Definition: membranestrains.hh:95
static auto value(const Dune::FieldVector< double, 2 > &gpPos, const GEO &geo, const auto &uFunction) -> Eigen::Vector3< typename std::remove_cvref_t< decltype(uFunction)>::ctype >
Compute the strain vector at a given integration point.
Definition: membranestrains.hh:30