qZeta: Use pow3 rather than pow(..., 3)

This commit is contained in:
Henry
2015-03-02 22:26:58 +00:00
parent a12281827e
commit 8c11106048

View File

@ -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
{