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
  • Loading branch information
DanielDoehring authored May 14, 2024
1 parent 9c0ed66 commit a7162d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function compute_PairedExplicitRK2_butcher_tableau(num_stages, eig_vals, tspan,
consistency_order = 2

dtmax = tspan[2] - tspan[1]
dteps = 1e-9
dteps = 1e-9 # Hyperparameter of the optimization, might be too large for systems requiring very small timesteps

num_eig_vals, eig_vals = filter_eig_vals(eig_vals; verbose)

Expand Down

0 comments on commit a7162d1

Please sign in to comment.