version 0.4.1
helperfunctions.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
11#pragma once
12
13#include <dune/localfefunctions/eigenDuneTransformations.hh>
14
16
17namespace Ikarus::EAS::Impl {
18template <typename GEO>
19auto transformationMatrixAtCenterWithDetJ(const GEO& geometry) {
20 const auto& referenceElement = Dune::ReferenceElements<double, GEO::mydimension>::general(geometry.type());
21 const auto quadPos0 = referenceElement.position(0, 0);
22 const auto detJ0 = geometry.integrationElement(quadPos0);
23
24 return (transformationMatrix(geometry, quadPos0) * detJ0).eval();
25}
26
27template <typename GEO>
28void transformDisplacementGradient(const GEO& geometry, Eigen::Matrix<double, GEO::mydimension, GEO::mydimension>& H,
30 const auto& referenceElement = Dune::ReferenceElements<double, GEO::mydimension>::general(geometry.type());
31 const auto quadPos0 = referenceElement.position(0, 0);
32 const auto detJ0 = geometry.integrationElement(quadPos0);
33 const auto detJ = geometry.integrationElement(quadPos);
34 const auto JInv = Dune::toEigen(geometry.jacobianInverseTransposed(quadPos0)).eval(); // pre-transposed
35 H = ((detJ0 / detJ) * JInv * H * JInv.transpose()).eval();
36}
37} // namespace Ikarus::EAS::Impl
Helper for the Eigen::Tensor types.
Eigen::Matrix3d transformationMatrix(const GEO &geometry, const Dune::FieldVector< double, 2 > &pos)
Calculates the 2D transformation matrix.
Definition: tensorutils.hh:394
Definition: utils/dirichletvalues.hh:32