Skip to content

Commit

Permalink
Merge branch 'development' into remove_num_extra_species_ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale authored Sep 9, 2023
2 parents 619148e + c24487b commit 9b21308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/nse_update_simplified_sdc.H
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void sdc_nse_burn(BurnT& state, const Real dt) {
// reaction terms and advection to dt

eos_re_t eos_state;
eos_state.T = 1.e6_rt; // initial guess
eos_state.T = T_in; // initial guess

// initial aux_sources
Real aux_source[NumAux] = {0.0_rt};
Expand Down Expand Up @@ -238,7 +238,7 @@ void sdc_nse_burn(BurnT& state, const Real dt) {
// updates with advection to dt

BurnT burn_state;
burn_state.T = 1.e6_rt; // initial guess
burn_state.T = T_in; // initial guess
burn_state.mu_p = state.mu_p;
burn_state.mu_n = state.mu_n;

Expand Down

0 comments on commit 9b21308

Please sign in to comment.