From 4ba330aa3571183fb7c4c4e14283c3d18a59be9a Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Sat, 4 Mar 2017 14:45:24 +0100 Subject: [PATCH] [staggeredGrid][test] Use correct function in Donea test --- test/freeflow/staggered/doneatestproblem.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/freeflow/staggered/doneatestproblem.hh b/test/freeflow/staggered/doneatestproblem.hh index a6f8828d7d..4541d8c559 100644 --- a/test/freeflow/staggered/doneatestproblem.hh +++ b/test/freeflow/staggered/doneatestproblem.hh @@ -353,7 +353,7 @@ public: // treat cell-center dofs const auto dofIdxCellCenter = scv.dofIndex(); const auto& posCellCenter = scv.dofPosition(); - const auto analyticalSolutionCellCenter = dirichletAtPos(posCellCenter)[cellCenterIdx]; + const auto analyticalSolutionCellCenter = analyticalSolution(posCellCenter)[cellCenterIdx]; const auto numericalSolutionCellCenter = this->model().curSol()[cellCenterIdx][dofIdxCellCenter]; sumError[cellCenterIdx] += squaredDiff_(analyticalSolutionCellCenter, numericalSolutionCellCenter) * scv.volume(); sumReference[cellCenterIdx] += analyticalSolutionCellCenter * analyticalSolutionCellCenter * scv.volume(); @@ -364,7 +364,7 @@ public: { const int dofIdxFace = scvf.dofIndex(); const int dirIdx = scvf.directionIndex(); - const auto analyticalSolutionFace = dirichletAtPos(scvf.center())[faceIdx][dirIdx]; + const auto analyticalSolutionFace = analyticalSolution(scvf.center())[faceIdx][dirIdx]; const auto numericalSolutionFace = this->model().curSol()[faceIdx][dofIdxFace][momentumBalanceIdx]; directionIndex[dofIdxFace] = dirIdx; errorVelocity[dofIdxFace] = squaredDiff_(analyticalSolutionFace, numericalSolutionFace); -- GitLab