From 1489d13bcd650ad54111f83abb847427d509d3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de> Date: Wed, 19 Dec 2018 11:41:30 +0100 Subject: [PATCH] [mpfa][fvgridgeom] use larger max stencil size --- dumux/discretization/cellcentered/mpfa/fvgridgeometrytraits.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/discretization/cellcentered/mpfa/fvgridgeometrytraits.hh b/dumux/discretization/cellcentered/mpfa/fvgridgeometrytraits.hh index b3bd755401..6e9b2aa53a 100644 --- a/dumux/discretization/cellcentered/mpfa/fvgridgeometrytraits.hh +++ b/dumux/discretization/cellcentered/mpfa/fvgridgeometrytraits.hh @@ -55,7 +55,7 @@ struct CCMpfaFVGridGeometryTraits : public DefaultMapperTraits<GV> //! Per default, we use high values that are hopefully enough for all cases //! We assume simplex grids where stencils can get quite large but the size is unknown static constexpr int maxElementStencilSize = int(GV::dimension) == 3 ? 150 : - (int(GV::dimension)<int(GV::dimensionworld) ? 45 : 15); + (int(GV::dimension)<int(GV::dimensionworld) ? 45 : 20); //! type definitions depending on the FVGridGeometry itself template< class FVGridGeom > using MpfaHelper = CCMpfaHelper< FVGridGeom >; -- GitLab