mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: extrudePatchMesh: disable walking across non-manifold. See #2780
This code can be removed if nInternalEdges excludes non-manifold ones
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
Copyright (C) 2020-2022 OpenCFD Ltd.
|
||||
Copyright (C) 2020-2023 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -165,6 +165,12 @@ void Foam::extrudePatchMesh::extrudeMesh(polyPatchList& regionPatches)
|
||||
{
|
||||
nonManifoldEdge.set(edgeI);
|
||||
}
|
||||
else if (extrudedPatch_.edgeFaces()[edgeI].size() > 2)
|
||||
{
|
||||
// TBD: issue #2780 : non-manifold edges get seen as internal
|
||||
// This bit of code can be removed once #2780 is solved.
|
||||
nonManifoldEdge.set(edgeI);
|
||||
}
|
||||
}
|
||||
|
||||
autoPtr<extrudeModel> model_(extrudeModel::New(dict_));
|
||||
|
||||
Reference in New Issue
Block a user