Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Oct 30, 2023
1 parent 450b274 commit b06cba3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions integration/nse_update_simplified_sdc.H
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ void sdc_nse_burn(BurnT& state, const Real dt) {
Real abar_out;
Real dq_out;
Real dyedt;
Real dabardt;
Real enu;
Real X[NumSpec];

Real ye_in = state.y[SFX+iye] / state.rho;
Expand All @@ -56,7 +58,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, X);
abar_out, dq_out, dyedt, dabardt, enu, X);

Real dyedt_old = dyedt;

Expand Down Expand Up @@ -118,7 +120,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, X);
abar_out, dq_out, dyedt, dabardt, enu, X);

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

0 comments on commit b06cba3

Please sign in to comment.