mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: incorrectly dimensioned edge directions in extendedEdgeMesh:add()
This commit is contained in:
@ -1277,13 +1277,15 @@ void Foam::extendedEdgeMesh::add(const extendedEdgeMesh& fem)
|
||||
);
|
||||
}
|
||||
|
||||
pointField newEdgeDirections(newEdgeI);
|
||||
pointField newEdgeDirections
|
||||
(
|
||||
edgeDirections().size()
|
||||
+ fem.edgeDirections().size()
|
||||
);
|
||||
newEdgeDirections.rmap(edgeDirections(), reverseEdgeMap);
|
||||
newEdgeDirections.rmap(fem.edgeDirections(), reverseFemEdgeMap);
|
||||
|
||||
|
||||
|
||||
|
||||
// Normals
|
||||
// ~~~~~~~
|
||||
|
||||
|
||||
Reference in New Issue
Block a user