Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Oct 3, 2023
2 parents 4803fc8 + 8e44dfd commit e3e866c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integration/BackwardEuler/be_integrator.H
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ int be_integrator (BurnT& state, BeT& be)

be.n_rhs += 1;

Real dt_sub = initial_dt(state, be, ydot);
Real dt_sub = initial_react_dt(state, be, ydot);

// main timestepping loop

Expand Down
4 changes: 2 additions & 2 deletions integration/utils/initial_timestep.H
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

template <typename BurnT, typename IntT>
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE
Real initial_dt (BurnT& burn_state, IntT& int_state,
Array1D<Real, 1, INT_NEQS>& ydot)
Real initial_react_dt (BurnT& burn_state, IntT& int_state,
Array1D<Real, 1, INT_NEQS>& ydot)
{
// this is a version of the initial timestep estimator from VODE
// we come in with int_state..y() storing the initial solution
Expand Down

0 comments on commit e3e866c

Please sign in to comment.