You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/3_numerical.rst
+3-11Lines changed: 3 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,17 +43,9 @@ This method incurs a global error of order :math:`O(\Delta t)` and requires only
43
43
44
44
**Runge-Kutta Method**
45
45
46
-
Proposed by Carl Runge and Martin Kutta around 1900, Runge-Kutta methods constitute a widely used family of single-step algorithms for the numerical integration of ordinary differential equations.
46
+
Proposed by Carl Runge and Martin Kutta around 1900, Runge-Kutta methods constitute a widely used family of algorithms for the numerical integration of ODEs.
47
47
48
-
In an explicit :math:`s`-stage Runge-Kutta scheme for the initial-value problem:
49
-
50
-
.. math::
51
-
52
-
\mathbf{x}' ;=; \mathbf{u}(\mathbf{x}, t),
53
-
\qquad
54
-
\mathbf{x}(t_n) ;=; \mathbf{x}_n,
55
-
56
-
the solution is advanced over a time step :math:h as follows:
48
+
In an explicit :math:`s`-stage Runge-Kutta scheme for this initial-value problem, the solution is advanced over a time step :math:`h` as follows:
57
49
58
50
First, compute the intermediate stage vectors:
59
51
@@ -79,7 +71,7 @@ and then update the solution:
79
71
;+;
80
72
h \sum{i=1}^{s} b_i,\mathbf{k}_i.
81
73
82
-
Here, the boldface stage variables :math:\mathbf{k}_i represent intermediate slope estimates.
74
+
Here, the boldface stage variables :math:`\mathbf{k}_i` represent intermediate slope estimates.
0 commit comments