mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: sampledPatch : triangulate=true did not map patchFaceLabels
This commit is contained in:
@ -157,6 +157,10 @@ void Foam::sampledPatch::remapFaces
|
|||||||
if (&faceMap && faceMap.size())
|
if (&faceMap && faceMap.size())
|
||||||
{
|
{
|
||||||
MeshStorage::remapFaces(faceMap);
|
MeshStorage::remapFaces(faceMap);
|
||||||
|
patchFaceLabels_ = labelList
|
||||||
|
(
|
||||||
|
UIndirectList<label>(patchFaceLabels_, faceMap)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user