Skip to content

Commit

Permalink
clean up some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Bumseok Lee committed Sep 25, 2024
1 parent a64b2d2 commit 1ea8d30
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ShearStressTransportEquationSystem.C
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,7 @@ ShearStressTransportEquationSystem::compute_f_one_blending()
const double ry = rho * minD * stk::math::sqrt(tke) / mu;
const double arg = ry / 120.0;
const double f3 = stk::math::exp(
-arg * arg * arg * arg * arg * arg * arg * arg); // original
// const double f3 = std::exp(-std::pow(arg,8)); // new
-arg * arg * arg * arg * arg * arg * arg * arg);
fOneBlend.get(mi, 0) = stk::math::max(f1Orig, f3);
}
});
Expand Down

0 comments on commit 1ea8d30

Please sign in to comment.