mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: PilchErdman: correct the sign of the exponent (fixes #2214)
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user