Removing internalPoint not inside check.

This commit is contained in:
graham
2009-07-16 10:20:58 +01:00
parent 75d5984654
commit 5e7c9469fa

View File

@ -1619,9 +1619,9 @@ void Foam::conformalVoronoiMesh::calcDualMesh
WarningIn("Foam::conformalVoronoiMesh::calcDualMesh") WarningIn("Foam::conformalVoronoiMesh::calcDualMesh")
<< "Dual face found between Dv pair " << nl << "Dual face found between Dv pair " << nl
<< ptA << nl << ptB << " ptA" << nl
<<" that is not on a surface " << " ptB" << nl
<< "patch. Adding to " << " that is not on a surface patch. Adding to "
<< patchNames[patchIndex] << patchNames[patchIndex]
<< endl; << endl;
} }
@ -2325,20 +2325,6 @@ void Foam::conformalVoronoiMesh::move()
vit, vit,
displacementAccumulator[vit->index()] displacementAccumulator[vit->index()]
); );
// TEMPORARY: CHECK IF ALL INTERNAL POINTS ARE INSIDE
if
(
geometryToConformTo_.inside
(
pointField(1, topoint(vit->point()))
)[0] == false
)
{
Info<< "INTERNAL POINT " << topoint(vit->point())
<< " NOT INSIDE" << endl;
}
} }
} }