Skip to content
Snippets Groups Projects
Commit 2a9c6c97 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: distanceSurface has gaps in mesh (#1374)

- need to be more generous when prefiltering the cell selection
parent ccec2e09
Branches
Tags
No related merge requests found
......@@ -207,6 +207,9 @@ void Foam::distanceSurface::createGeometry()
cellBb.clear();
cellBb.add(fvm.points(), fvm.cellPoints(i));
// Expand slightly to catch corners
cellBb.inflate(0.1);
if (!cellBb.contains(nearest[i].hitPoint()))
{
ignoreCells.set(i);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment