mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
change duplicate faces into warning
This commit is contained in:
@ -1836,19 +1836,21 @@ bool Foam::primitiveMesh::checkFaceFaces
|
|||||||
|
|
||||||
if (nErrorDuplicate > 0 || nErrorOrder > 0)
|
if (nErrorDuplicate > 0 || nErrorOrder > 0)
|
||||||
{
|
{
|
||||||
|
// These are actually warnings, not errors.
|
||||||
if (nErrorDuplicate > 0)
|
if (nErrorDuplicate > 0)
|
||||||
{
|
{
|
||||||
Info<< " ***Number of duplicate (not baffle) faces found: "
|
Info<< " <<Number of duplicate (not baffle) faces found: "
|
||||||
<< nErrorDuplicate << endl;
|
<< nErrorDuplicate
|
||||||
|
<< ". This might indicate a problem." << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nErrorOrder > 0)
|
if (nErrorOrder > 0)
|
||||||
{
|
{
|
||||||
Info<< " ***Number of faces with non-consecutive shared points: "
|
Info<< " <<Number of faces with non-consecutive shared points: "
|
||||||
<< nErrorOrder << endl;
|
<< nErrorOrder << ". This might indicate a problem." << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return false; //return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user