From 7a69c0287ca77727c5a6d1c44ecf73c03e645074 Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Wed, 11 May 2016 21:52:46 +0100 Subject: [PATCH] Bugfix: removed Warning message for moving mesh --- .../flowRateInletVelocityFvPatchVectorField.C | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C b/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C index 4842d2d91..c17a0fb93 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/flowRateInletVelocity/flowRateInletVelocityFvPatchVectorField.C @@ -117,14 +117,14 @@ void Foam::flowRateInletVelocityFvPatchVectorField::updateCoeffs() return; } - if (patch().boundaryMesh().mesh().moving()) - { - WarningIn - ( - "void flowRateInletVelocityFvPatchVectorField::updateCoeffs()" - ) << "Patch area not correctly updated on mesh motion" - << endl; - } +// if (patch().boundaryMesh().mesh().moving()) +// { +// WarningIn +// ( +// "void flowRateInletVelocityFvPatchVectorField::updateCoeffs()" +// ) << "Patch area not correctly updated on mesh motion" +// << endl; +// } // A simpler way of doing this would be nice scalar avgU = -flowRate_/(gSumArea_ + SMALL);