From 61da622e85ec9f73f5c34bf5b1a13ffeb7bfda39 Mon Sep 17 00:00:00 2001 From: Daniel Doehring Date: Fri, 15 Mar 2024 09:47:10 +0100 Subject: [PATCH] Apply suggestions from code review --- .../paired_explicit_runge_kutta/methods_PERK2.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/time_integration/paired_explicit_runge_kutta/methods_PERK2.jl b/src/time_integration/paired_explicit_runge_kutta/methods_PERK2.jl index d4a66af7fd..141cdbbefc 100644 --- a/src/time_integration/paired_explicit_runge_kutta/methods_PERK2.jl +++ b/src/time_integration/paired_explicit_runge_kutta/methods_PERK2.jl @@ -91,12 +91,12 @@ 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 @@ -104,8 +104,8 @@ mutable struct PERK2 <: PERKSingle a_matrix::Matrix{Float64} c::Vector{Float64} - bS::Float64 b1::Float64 + bS::Float64 c_end::Float64 # Constructor that reads the coefficients from a file