mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
GIT: missed change (rebase) to ensight manifold cell handling (#2396)
This commit is contained in:
@ -31,6 +31,7 @@ License
|
|||||||
#include "polyMesh.H"
|
#include "polyMesh.H"
|
||||||
#include "globalIndex.H"
|
#include "globalIndex.H"
|
||||||
#include "globalMeshData.H"
|
#include "globalMeshData.H"
|
||||||
|
#include "manifoldCellsMeshObject.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -135,6 +136,8 @@ void Foam::ensightCells::writePolysConnectivity
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///const cellList& meshCells = mesh.cells();
|
||||||
|
const cellList& meshCells = manifoldCellsMeshObject::New(mesh).cells();
|
||||||
|
|
||||||
// List of points id for each face of the above list
|
// List of points id for each face of the above list
|
||||||
if (Pstream::master())
|
if (Pstream::master())
|
||||||
@ -180,7 +183,7 @@ void Foam::ensightCells::writePolysConnectivity
|
|||||||
);
|
);
|
||||||
|
|
||||||
toMaster
|
toMaster
|
||||||
<< mesh.cells()
|
<< meshCells
|
||||||
<< addr
|
<< addr
|
||||||
<< faces
|
<< faces
|
||||||
<< mesh.faceOwner();
|
<< mesh.faceOwner();
|
||||||
|
|||||||
Reference in New Issue
Block a user