Skip to content
Snippets Groups Projects
Commit 0ebd122b authored by Henry Weller's avatar Henry Weller
Browse files

polyMeshFromShapeMesh: Set patch-face to corresponding cell-face

parent 0cf3ae4f
Branches
Tags
No related merge requests found
...@@ -328,9 +328,7 @@ void Foam::polyMesh::setTopology ...@@ -328,9 +328,7 @@ void Foam::polyMesh::setTopology
const label cellInside = curPatchFaceCells[faceI]; const label cellInside = curPatchFaceCells[faceI];
faces_[nFaces] = curFace; // Get faces of the cell inside
// get faces of the cell inside
const faceList& facesOfCellInside = cellsFaceShapes[cellInside]; const faceList& facesOfCellInside = cellsFaceShapes[cellInside];
bool found = false; bool found = false;
...@@ -366,6 +364,9 @@ void Foam::polyMesh::setTopology ...@@ -366,6 +364,9 @@ void Foam::polyMesh::setTopology
found = true; found = true;
// Set the patch face to corresponding cell-face
faces_[nFaces] = facesOfCellInside[cellFaceI];
cells[cellInside][cellFaceI] = nFaces; cells[cellInside][cellFaceI] = nFaces;
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment