@@ -14,7 +14,10 @@ abstract type SimpleAlgorithm2N end
14
14
The following structures and methods provide a minimal implementation of
15
15
the low-storage explicit Runge-Kutta method of
16
16
17
- Carpenter, Kennedy (1994) Fourth order 2N storage RK schemes, Solution 3
17
+ - Carpenter, Kennedy (1994)
18
+ Fourth-order 2N-storage Runge-Kutta schemes (Solution 3)
19
+ URL: https://ntrs.nasa.gov/citations/19940028444
20
+ File: https://ntrs.nasa.gov/api/citations/19940028444/downloads/19940028444.pdf
18
21
19
22
using the same interface as OrdinaryDiffEq.jl.
20
23
"""
@@ -24,15 +27,18 @@ struct CarpenterKennedy2N54 <: SimpleAlgorithm2N
24
27
c:: SVector{5, Float64}
25
28
26
29
function CarpenterKennedy2N54 ()
27
- a = SVector (0.0 , 567301805773.0 / 1357537059087.0 ,
30
+ a = SVector (0.0 ,
31
+ 567301805773.0 / 1357537059087.0 ,
28
32
2404267990393.0 / 2016746695238.0 ,
29
- 3550918686646.0 / 2091501179385.0 , 1275806237668.0 / 842570457699.0 )
33
+ 3550918686646.0 / 2091501179385.0 ,
34
+ 1275806237668.0 / 842570457699.0 )
30
35
b = SVector (1432997174477.0 / 9575080441755.0 ,
31
36
5161836677717.0 / 13612068292357.0 ,
32
37
1720146321549.0 / 2090206949498.0 ,
33
38
3134564353537.0 / 4481467310338.0 ,
34
39
2277821191437.0 / 14882151754819.0 )
35
- c = SVector (0.0 , 1432997174477.0 / 9575080441755.0 ,
40
+ c = SVector (0.0 ,
41
+ 1432997174477.0 / 9575080441755.0 ,
36
42
2526269341429.0 / 6820363962896.0 ,
37
43
2006345519317.0 / 3224310063776.0 ,
38
44
2802321613138.0 / 2924317926251.0 )
@@ -42,9 +48,15 @@ struct CarpenterKennedy2N54 <: SimpleAlgorithm2N
42
48
end
43
49
44
50
"""
45
- CarpenterKennedy2N43()
51
+ CarpenterKennedy2N43()
46
52
47
- Carpenter, Kennedy (1994) Third order 2N storage RK schemes with error control
53
+ The following structures and methods provide a minimal implementation of
54
+ the low-storage explicit Runge-Kutta method of
55
+
56
+ - Carpenter, Kennedy (1994)
57
+ Third-order 2N-storage Runge-Kutta schemes with error control
58
+ URL: https://ntrs.nasa.gov/citations/19940028444
59
+ File: https://ntrs.nasa.gov/api/citations/19940028444/downloads/19940028444.pdf
48
60
"""
49
61
struct CarpenterKennedy2N43 <: SimpleAlgorithm2N
50
62
a:: SVector{4, Float64}
0 commit comments