Skip to content
Snippets Groups Projects
Commit e338bd79 authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: Corrected missing sqrt(2) factors in incompressible kOmegaSST model

parent 1df7148d
No related merge requests found
......@@ -246,7 +246,7 @@ kOmegaSST::kOmegaSST
/ max
(
a1_*omega_,
F2()*mag(symm(fvc::grad(U_)))
F2()*sqrt(2.0)*mag(symm(fvc::grad(U_)))
)
);
nut_.correctBoundaryConditions();
......@@ -400,7 +400,7 @@ void kOmegaSST::correct()
// Re-calculate viscosity
nut_ = a1_*k_/max(a1_*omega_, F2()*sqrt(S2));
nut_ = a1_*k_/max(a1_*omega_, F2()*sqrt(2*S2));
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