Skip to content
Snippets Groups Projects
Commit df798444 authored by sergio's avatar sergio
Browse files

ENH: Adding kMin to k in dTilda function as dTilda can not be zero in case k = 0

parent b95088a7
Branches
Tags
No related merge requests found
......@@ -62,7 +62,12 @@ tmp<volScalarField> kOmegaSSTDES<BasicTurbulenceModel>::dTilda
const volScalarField& k = this->k_;
const volScalarField& omega = this->omega_;
return min(CDES*this->delta(), sqrt(k)/(this->betaStar_*omega));
return
min
(
CDES*this->delta(),
sqrt(k + this->kMin_)/(this->betaStar_*omega)
);
}
......
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