Skip to content
Snippets Groups Projects
Commit 9e57cef1 authored by mattijs's avatar mattijs
Browse files

fixed reverseFaceMap

parent 9f054e0a
No related branches found
No related tags found
No related merge requests found
...@@ -146,6 +146,10 @@ void Foam::singleCellFvMesh::agglomerateMesh ...@@ -146,6 +146,10 @@ void Foam::singleCellFvMesh::agglomerateMesh
// From new patch face back to agglomeration // From new patch face back to agglomeration
patchFaceMap_.setSize(oldPatches.size()); patchFaceMap_.setSize(oldPatches.size());
// From fine face to coarse face (or -1)
reverseFaceMap_.setSize(mesh.nFaces());
reverseFaceMap_.labelList::operator=(-1);
// Face counter // Face counter
coarseI = 0; coarseI = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment