mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
qZeta: Use pow3 rather than pow(..., 3)
This commit is contained in:
@ -49,7 +49,7 @@ tmp<volScalarField> qZeta::fMu() const
|
||||
|
||||
if (anisotropic_)
|
||||
{
|
||||
return exp((-scalar(2.5) + Rt/20.0)/pow(scalar(1) + Rt/130.0, 3.0));
|
||||
return exp((-scalar(2.5) + Rt/20.0)/pow3(scalar(1) + Rt/130.0));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user