Skip to content
Snippets Groups Projects
Commit 6f505d83 authored by Henry's avatar Henry
Browse files

SpalartAllmaras: corrected the turbulent viscosity used to transport nuTilda

parent 38e0f7ea
Branches
Tags
No related merge requests found
......@@ -170,7 +170,7 @@ public:
new volScalarField
(
"DnuTildaEff",
rho_*nuTilda_/sigmaNut_ + mu()
(rho_*nuTilda_ + mu())/sigmaNut_
)
);
}
......
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -233,7 +233,7 @@ tmp<volScalarField> SpalartAllmaras::DnuTildaEff() const
{
return tmp<volScalarField>
(
new volScalarField("DnuTildaEff", nuTilda_/sigmaNut_ + nu())
new volScalarField("DnuTildaEff", (nuTilda_ + nu())/sigmaNut_)
);
}
......
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