BUG: PilchErdman: correct the sign of the exponent (fixes #2214)

This commit is contained in:
Kutalmis Bercin
2021-09-21 20:49:35 +01:00
parent 3a1c61fc98
commit e2d54dfe14

View File

@ -6,6 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2013 OpenFOAM Foundation
Copyright (C) 2021 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
@ -116,7 +117,7 @@ bool Foam::PilchErdman<CloudType>::update
else if (We > 45)
{
// bag-and-stamen breakup - eq (10)
taubBar = 14.1*pow(We - 12.0, 0.25);
taubBar = 14.1*pow(We - 12.0, -0.25);
}
else if (We > 18)
{