Skip to content

Commit

Permalink
Fix issue #1593 in evaluating of lambda at boundary point.
Browse files Browse the repository at this point in the history
  • Loading branch information
yeanment authored and ischoegl committed Aug 21, 2023
1 parent cde1e79 commit ec48ebc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/oneD/StFlow.cpp
Expand Up @@ -1027,12 +1027,11 @@ void StFlow::evalRightBoundary(double* x, double* rsd, int* diag, double rdt)
diag[index(c_offset_Y + rightExcessSpecies(), j)] = 0;
if (m_usesLambda) {
rsd[index(c_offset_U, j)] = rho_u(x, j);
rsd[index(c_offset_L, j)] = lambda(x, j);
} else {
rsd[index(c_offset_U, j)] = rho_u(x, j) - rho_u(x, j-1);
rsd[index(c_offset_L, j)] = lambda(x, j) - lambda(x, j-1);
}

rsd[index(c_offset_L, j)] = lambda(x, j) - lambda(x, j-1);
diag[index(c_offset_L, j)] = 0;
rsd[index(c_offset_T, j)] = T(x, j);
}
Expand Down

0 comments on commit ec48ebc

Please sign in to comment.