Skip to content
Snippets Groups Projects
Commit 1489d13b authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[mpfa][fvgridgeom] use larger max stencil size

parent f46bad92
No related branches found
No related tags found
1 merge request!1431Feature/facetcoupling with mpfa
...@@ -55,7 +55,7 @@ struct CCMpfaFVGridGeometryTraits : public DefaultMapperTraits<GV> ...@@ -55,7 +55,7 @@ struct CCMpfaFVGridGeometryTraits : public DefaultMapperTraits<GV>
//! Per default, we use high values that are hopefully enough for all cases //! 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 //! We assume simplex grids where stencils can get quite large but the size is unknown
static constexpr int maxElementStencilSize = int(GV::dimension) == 3 ? 150 : 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 //! type definitions depending on the FVGridGeometry itself
template< class FVGridGeom > template< class FVGridGeom >
using MpfaHelper = CCMpfaHelper< FVGridGeom >; using MpfaHelper = CCMpfaHelper< FVGridGeom >;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment