Skip to content

Commit

Permalink
Modified phit limit to 0.667
Browse files Browse the repository at this point in the history
  • Loading branch information
EGajetti authored Sep 27, 2023
1 parent d50896c commit 82499ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -630,9 +630,9 @@ void kEpsilonLagEB<BasicTurbulenceModel>::correct()

forAll(phit_, celli)
{
if(phit_[celli] > 1.0)
if(phit_[celli] > 0.667)
{
phit_[celli] = 1.0;
phit_[celli] = 0.667;
}
}

Expand Down

0 comments on commit 82499ae

Please sign in to comment.