From 2047194e3ae000234cf32e219904155a799da5ea Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Fri, 20 Mar 2020 15:19:27 +0000 Subject: [PATCH] Removed warning message for cutting of non-processor coupled patches by immersed boundary surface --- .../immersedBoundaryPolyPatch.C | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/immersedBoundary/immersedBoundary/immersedBoundaryPolyPatch/immersedBoundaryPolyPatch.C b/src/immersedBoundary/immersedBoundary/immersedBoundaryPolyPatch/immersedBoundaryPolyPatch.C index f38d6f6f4..b3077bd26 100644 --- a/src/immersedBoundary/immersedBoundary/immersedBoundaryPolyPatch/immersedBoundaryPolyPatch.C +++ b/src/immersedBoundary/immersedBoundary/immersedBoundaryPolyPatch/immersedBoundaryPolyPatch.C @@ -617,14 +617,17 @@ void Foam::immersedBoundaryPolyPatch::calcImmersedBoundary() const } else { - WarningIn - ( - "void immersedBoundaryPolyPatch::" - "calcImmersedBoundary() const" - ) << "Non-processor coupled patch detected for " - << "immersed boundary. " - << "Direct face cut may not be detected" - << endl; + // Possible code missing: reconsider Immersed boundary + // cutting non-matching coupled patches. + // HJ and HN, 20/Mar/2020 + // WarningIn + // ( + // "void immersedBoundaryPolyPatch::" + // "calcImmersedBoundary() const" + // ) << "Non-processor coupled patch detected for " + // << "immersed boundary. " + // << "Direct face cut may not be detected" + // << endl; } } }