Skip to content

Commit

Permalink
Update src/time_integration/paired_explicit_runge_kutta/methods_PERK2.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Doehring <[email protected]>
  • Loading branch information
warisa-r and DanielDoehring authored Mar 8, 2024
1 parent 64926fb commit 6ce99e6
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ function compute_PERK2_Butcher_tableau(num_stages, semi::AbstractSemidiscretizat
for k in 2:num_stages
c[k] = c_end * (k - 1) / (num_stages - 1)
end
println("Timestep-split: ")
display(c)
println("\n")
se_factors = bS * reverse(c[2:(end - 1)])

# - 2 Since First entry of A is always zero (explicit method) and second is given by c_2 (consistency)
Expand Down

0 comments on commit 6ce99e6

Please sign in to comment.