From a4e2ecb0146fa3e3e15c80c3a3d203c80fbaf1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de> Date: Wed, 15 Aug 2018 17:23:06 +0200 Subject: [PATCH] [facet][box][fvgridgeom] use correct codim for facet mapper --- dumux/multidomain/facet/box/fvgridgeometry.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/multidomain/facet/box/fvgridgeometry.hh b/dumux/multidomain/facet/box/fvgridgeometry.hh index 0b6534da18..53ab0a028c 100644 --- a/dumux/multidomain/facet/box/fvgridgeometry.hh +++ b/dumux/multidomain/facet/box/fvgridgeometry.hh @@ -371,7 +371,7 @@ public: //! Constructor BoxFacetCouplingFVGridGeometry(const GridView gridView) : ParentType(gridView) - , facetMapper_(gridView, Dune::mcmgLayout(Dune::template Codim<dim-1>())) + , facetMapper_(gridView, Dune::mcmgLayout(Dune::template Codim<1>())) {} //! the vertex mapper is the dofMapper -- GitLab