Open ChrisRackauckas opened 7 years ago
There are also SSP two-step Runge-Kutta methods:
https://link.springer.com/article/10.1007%2Fs10915-014-9961-7
@ChrisRackauckas , https://arxiv.org/pdf/1106.3626.pdf says nothing about the stage defining coefficients c. Can u please check
c are just the sum of the row of a.
Yes but the method is of form this hence I couldn't figure out
it should be the sum of the row of the q's I think? Looks at the first order conditions.
Yes I thought so. But sum of rows of q =1 for all rows
What's the first order condition here?
IIRC, you can get the Butcher coefficients c
by inserting the ODE u'(t) = 1, u(0) = 0
into the update formula. For the stage values given by (4.1a), you get
time(yᵢⁿ) = dᵢ*time(uⁿ⁻¹) + (1 - dᵢ - ∑ⱼ qᵢⱼ) * time(uⁿ) + ∑ⱼqᵢⱼ * (time(yⱼⁿ) + Δt / r * 1)
Then, the values of c
can be computed as
cᵢ = (time(yᵢⁿ) - time(uⁿ)) / Δt
Thanks. That was helpful.
Non-uniform grid: https://link.springer.com/article/10.1023/A:1022352704635