Skip to content

Commit

Permalink
removed some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Bumseok Lee committed Sep 25, 2024
1 parent 8d0bf47 commit a64b2d2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/node_kernels/TKESSTBLTM2015NodeKernel.C
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,7 @@ TKESSTBLTM2015NodeKernel::execute(
DblType vortMag = 1.0e-16;

for (int i = 0; i < nDim_; ++i) {
// const int offset = nDim_ * i;
for (int j = 0; j < nDim_; ++j) {
// const auto dudxij = dudx_.get(node, offset + j);
const double duidxj = dudx_.get(node, nDim_ * i + j);
const double dujdxi = dudx_.get(node, nDim_ * j + i);

Expand All @@ -115,10 +113,6 @@ TKESSTBLTM2015NodeKernel::execute(
const DblType Dk =
betaStar_ * density * sdr * tke * stk::math::max(gamint, 0.1);

// Clip production term and prevent Pk from being negative:
// Deactivated w/ Kato-Launder formulation
// Pk = stk::math::min(tkeProdLimitRatio_ * Dk, stk::math::max(Pk, 0.0));

// SUST source term
const DblType Dkamb = betaStar_ * density * sdrAmb_ * tkeAmb_;

Expand Down

0 comments on commit a64b2d2

Please sign in to comment.