BUG: tetDecomposer: updated tet numbering

This commit is contained in:
mattijs
2012-04-27 12:18:54 +01:00
parent cba9a30d3d
commit 156839b16a

View File

@ -696,16 +696,16 @@ void Foam::tetDecomposer::setRefinement
void Foam::tetDecomposer::updateMesh(const mapPolyMesh& map)
{
inplaceRenumber(map.pointMap(), cellToPoint_);
inplaceRenumber(map.pointMap(), faceToPoint_);
inplaceRenumber(map.reversePointMap(), cellToPoint_);
inplaceRenumber(map.reversePointMap(), faceToPoint_);
forAll(faceOwnerCells_, faceI)
{
inplaceRenumber(map.cellMap(), faceOwnerCells_[faceI]);
inplaceRenumber(map.reverseCellMap(), faceOwnerCells_[faceI]);
}
forAll(faceNeighbourCells_, faceI)
{
inplaceRenumber(map.cellMap(), faceNeighbourCells_[faceI]);
inplaceRenumber(map.reverseCellMap(), faceNeighbourCells_[faceI]);
}
}