Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Jul 31, 2024
1 parent d878650 commit 4ee9302
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration/integrator_rhs_sdc.H
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void jac (const amrex::Real time, BurnT& state, T& int_state, MatrixType& pd)
}
}
}

// apply fudge factor:

if (integrator_rp::react_boost > 0.0_rt) {
Expand Down
6 changes: 3 additions & 3 deletions integration/integrator_rhs_strang.H
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ void jac ([[maybe_unused]] const amrex::Real time, BurnT& state, T& int_state, M

eos_xderivs_t eos_xderivs = composition_derivatives(eos_state);

for (int m = 1; m <= neqs; m++) {
for (int n = 1; n <= NumSpec; n++) {
pd(m, n) -= eos_xderivs.dedX[n-1] * pd(m, net_ienuc);
for (int jcol = 1; jcol <= NumSpec;++jcol) {
for (int irow = 1; irow <= neqs; ++irow) {
pd(irow, jcol) -= eos_xderivs.dedX[jcol-1] * pd(irow, net_ienuc);
}
}

Expand Down

0 comments on commit 4ee9302

Please sign in to comment.