Bugfix: removed Warning message for moving mesh
This commit is contained in:
parent
492b696626
commit
7a69c0287c
1 changed files with 8 additions and 8 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue