Skip to content
Snippets Groups Projects
Commit 6563df8e authored by Henry's avatar Henry
Browse files

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

parent 5a6bc2f7
Branches
Tags
No related merge requests found
......@@ -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
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment