Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Nov 6, 2024
1 parent 3b84504 commit 749a505
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tree_1d_dgsem/elixir_hypdiff_nonperiodic_perk4.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ analysis_callback = AnalysisCallback(semi, interval = analysis_interval)

alive_callback = AliveCallback(analysis_interval = analysis_interval)

# Construct third order paired explicit Runge-Kutta method with 8 stages for given simulation setup.
# Construct fourth order paired explicit Runge-Kutta method with 11 stages for given simulation setup.
# Pass `tspan` to calculate maximum time step allowed for the bisection algorithm used
# in calculating the polynomial coefficients in the ODE algorithm.
ode_algorithm = Trixi.PairedExplicitRK4(11, tspan, semi)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ end
cS3 = 1.0f0)
PairedExplicitRK4(num_stages, tspan, semi::AbstractSemidiscretization;
verbose = false, cS3 = 1.0f0)
PairedExplicitRK4(num_stages, tspan, eig_vals::Vector{ComplexF64};
verbose = false, cS3 = 1.0f0)
Parameters:
- `num_stages` (`Int`): Number of stages in the paired explicit Runge-Kutta (P-ERK) method.
Expand Down

0 comments on commit 749a505

Please sign in to comment.