Skip to content
Snippets Groups Projects
Commit 2ffe3eaa authored by henry's avatar henry
Browse files

Changed "==" to "=" for correcting nut.

parent 20fc02fb
Branches
Tags
No related merge requests found
......@@ -129,7 +129,7 @@ kEpsilon::kEpsilon
autoCreateNut("nut", mesh_)
)
{
nut_ == Cmu_*sqr(k_)/(epsilon_ + epsilonSmall_);
nut_ = Cmu_*sqr(k_)/(epsilon_ + epsilonSmall_);
nut_.correctBoundaryConditions();
printCoeffs();
......@@ -259,7 +259,7 @@ void kEpsilon::correct()
// Re-calculate viscosity
nut_ == Cmu_*sqr(k_)/epsilon_;
nut_ = Cmu_*sqr(k_)/epsilon_;
nut_.correctBoundaryConditions();
}
......
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