mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: foamyHexMesh: Do not insert points between internal and surface points
This commit is contained in:
@ -1273,7 +1273,7 @@ void Foam::conformalVoronoiMesh::move()
|
|||||||
if
|
if
|
||||||
(
|
(
|
||||||
(
|
(
|
||||||
(vA->internalPoint() || vB->internalPoint())
|
(vA->internalPoint() && vB->internalPoint())
|
||||||
&& (!vA->referred() || !vB->referred())
|
&& (!vA->referred() || !vB->referred())
|
||||||
// ||
|
// ||
|
||||||
// (
|
// (
|
||||||
|
|||||||
@ -389,7 +389,7 @@ void Foam::conformalVoronoiMesh::buildSurfaceConformation()
|
|||||||
// Re-index the point pairs
|
// Re-index the point pairs
|
||||||
ptPairs_.reIndex(oldToNewIndices);
|
ptPairs_.reIndex(oldToNewIndices);
|
||||||
|
|
||||||
writePointPairs("pointPairs_initial.obj");
|
//writePointPairs("pointPairs_initial.obj");
|
||||||
|
|
||||||
// Remove location from surface/edge tree
|
// Remove location from surface/edge tree
|
||||||
|
|
||||||
@ -630,7 +630,7 @@ void Foam::conformalVoronoiMesh::buildSurfaceConformation()
|
|||||||
// Reindex the point pairs
|
// Reindex the point pairs
|
||||||
ptPairs_.reIndex(oldToNewIndices);
|
ptPairs_.reIndex(oldToNewIndices);
|
||||||
|
|
||||||
writePointPairs("pointPairs_" + name(iterationNo) + ".obj");
|
//writePointPairs("pointPairs_" + name(iterationNo) + ".obj");
|
||||||
|
|
||||||
if (Pstream::parRun())
|
if (Pstream::parRun())
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user