Skip to content

Commit

Permalink
Update src/semidiscretization/semidiscretization_euler_gravity.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring authored Oct 8, 2024
1 parent 518bef5 commit 166d9e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/semidiscretization/semidiscretization_euler_gravity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ function timestep_gravity_3Sstar!(cache, u_euler, tau, dtau, gravity_parameters,
beta_stage_dt = beta[stage] * dtau
@trixi_timeit timer() "Runge-Kutta step" begin
@threaded for idx in eachindex(u_ode)
# See Algorithm 1 (3S* method) from Schlottke-Lakemper et al. (2020)
# See Algorithm 1 (3S* method) in Schlottke-Lakemper et al. (2020)
u_tmp1_ode[idx] += delta_stage * u_ode[idx]
u_ode[idx] = (gamma1_stage * u_ode[idx] +
gamma2_stage * u_tmp1_ode[idx] +
Expand Down

0 comments on commit 166d9e5

Please sign in to comment.