From ba5bc32165e611bcca6aa801f77361d0c54716ad Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Thu, 11 Jul 2013 22:08:51 +0000 Subject: [PATCH] bugfix: quad order for cube elements was too low [[Imported from SVN: r9302]] --- dune/gfe/harmonicenergystiffness.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/harmonicenergystiffness.hh b/dune/gfe/harmonicenergystiffness.hh index bb1e2abd..79d0da07 100644 --- a/dune/gfe/harmonicenergystiffness.hh +++ b/dune/gfe/harmonicenergystiffness.hh @@ -63,7 +63,7 @@ energy(const Entity& element, localSolution); int quadOrder = (element.type().isSimplex()) ? (localFiniteElement.localBasis().order()-1) * 2 - : (localFiniteElement.localBasis().order()-1) * 2 * gridDim; + : localFiniteElement.localBasis().order() * 2 * gridDim; -- GitLab