From 6dd7da5a3bbae54b8f786b19101d3fc6ddfb78ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= Date: Thu, 26 Apr 2018 19:17:16 +0200 Subject: [PATCH] [box] fix scvf corner computation for tetrahedra --- dumux/discretization/box/boxgeometryhelper.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/discretization/box/boxgeometryhelper.hh b/dumux/discretization/box/boxgeometryhelper.hh index f70785c255..e9e35a8cc3 100644 --- a/dumux/discretization/box/boxgeometryhelper.hh +++ b/dumux/discretization/box/boxgeometryhelper.hh @@ -467,7 +467,7 @@ public: static const std::uint8_t map[6][4] = { {eo+0, fo+0, fo+1, 0}, - {fo+1, eo+1, 0, fo+2}, + {fo+0, eo+1, 0, fo+2}, {eo+2, fo+0, fo+3, 0}, {fo+2, eo+3, 0, fo+1}, {fo+3, 0, eo+4, fo+1}, -- GitLab