Skip to content
Snippets Groups Projects
Commit 147bfc92 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[evalGradients] fix remaining errors

parent fb2ded7d
No related branches found
No related tags found
Loading
...@@ -61,15 +61,15 @@ evalGradients(const Element& element, ...@@ -61,15 +61,15 @@ evalGradients(const Element& element,
// evaluate gradients using the local finite element basis // evaluate gradients using the local finite element basis
const auto& localBasis = fvGridGeometry.feCache().get(geometry.type()).localBasis(); const auto& localBasis = fvGridGeometry.feCache().get(geometry.type()).localBasis();
// the inverse transposed of the jacobian matrix
const auto jacInvT = g.jacobianInverseTransposed(local);
// evaluate the shape function gradients at the scv center // evaluate the shape function gradients at the scv center
using ShapeJacobian = typename decltype(localBasis)::Traits::JacobianType; using ShapeJacobian = typename std::decay_type< decltype(localBasis) >::Traits::JacobianType;
const auto localPos = geometry.local(globalPos); const auto localPos = geometry.local(globalPos);
std::vector< ShapeJacobian > shapeJacobian; std::vector< ShapeJacobian > shapeJacobian;
localBasis.evaluateJacobian(localPos, shapeJacobian); localBasis.evaluateJacobian(localPos, shapeJacobian);
// the inverse transposed of the jacobian matrix
const auto jacInvT = geometry.jacobianInverseTransposed(localPos);
// interpolate the gradients // interpolate the gradients
Dune::FieldVector<GlobalPosition, PrimaryVariables::dimension> result( PrimaryVariables(0.0) ); Dune::FieldVector<GlobalPosition, PrimaryVariables::dimension> result( PrimaryVariables(0.0) );
for (int i = 0; i < element.subEntities(Element::Geometry::mydimension); ++i) for (int i = 0; i < element.subEntities(Element::Geometry::mydimension); ++i)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment