Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Nov 4, 2023
1 parent bd33b5c commit 7f44270
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions integration/nse_update_simplified_sdc.H
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ void sdc_nse_burn(BurnT& state, const Real dt) {
Real dq_out;
Real dyedt;
Real dabardt;
Real dbeadt;
Real enu;
Real X[NumSpec];

Expand All @@ -58,7 +59,7 @@ void sdc_nse_burn(BurnT& state, const Real dt) {
// get the current NSE state from the table

nse_interp(T_in, state.rho, ye_in,
abar_out, dq_out, dyedt, dabardt, enu, X);
abar_out, dq_out, dyedt, dabardt, dbeadt, enu, X);

Real dyedt_old = dyedt;

Expand Down Expand Up @@ -120,7 +121,7 @@ void sdc_nse_burn(BurnT& state, const Real dt) {
// source estimates

nse_interp(T_new, eos_state.rho, eos_state.aux[iye],
abar_out, dq_out, dyedt, dabardt, enu, X);
abar_out, dq_out, dyedt, dabardt, dbeadt, enu, X);

// note that the abar, dq (B/A), and X here have all already
// seen advection implicitly
Expand Down

0 comments on commit 7f44270

Please sign in to comment.