Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring authored Mar 15, 2024
1 parent 1f4e9d0 commit 61da622
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,21 +91,21 @@ end
PERK2()
The following structures and methods provide a minimal implementation of
the second-order paired explicit Runge-Kutta method
the second-order paired explicit Runge-Kutta (PERK) method
optimized for a certain simulation setup (PDE, IC & BC, Riemann Solver, DG Solver).
- Vermeire (2019).
Paired explicit Runge-Kutta schemes for stiff systems of equations
[DOI: 10.1016/j.jcp.2019.05.014](https://doi.org/10.1016/j.jcp.2019.05.014)
- Brian Vermeire (2019).
Paired explicit Runge-Kutta schemes for stiff systems of equations
[DOI: 10.1016/j.jcp.2019.05.014](https://doi.org/10.1016/j.jcp.2019.05.014)
"""

mutable struct PERK2 <: PERKSingle
const num_stages::Int

a_matrix::Matrix{Float64}
c::Vector{Float64}
bS::Float64
b1::Float64
bS::Float64
c_end::Float64

# Constructor that reads the coefficients from a file
Expand Down

0 comments on commit 61da622

Please sign in to comment.