Skip to content

Commit ddc2548

Browse files
committed
deploy: 0f29843
1 parent 8257d9c commit ddc2548

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

.doctrees/3_numerical.doctree

896 Bytes
Binary file not shown.

.doctrees/environment.pickle

0 Bytes
Binary file not shown.

3_numerical.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<p>The classical RK4 method achieves fourth-order accuracy via four slope evaluations at intermediate points:</p>
132132
<p>This yields a global error of order <span class="math notranslate nohighlight">\(O(\Delta t^4)\)</span> with four velocity evaluations per step.</p>
133133
<p><strong>Sixth-Order Runge-Kutta (RK6)</strong></p>
134-
<p>The seven-stage scheme uses non-uniform weights to attain global <span class="math notranslate nohighlight">\(O(\Delta t^6)\)</span> accuracy. This method originates from <a class="reference internal" href="9_references.html#butcher" id="id1"><span>[Butcher]</span></a>.
134+
<p>The seven-stage scheme <code class="docutils literal notranslate"><span class="pre">ERK6(7)</span></code> uses non-uniform weights to attain global <span class="math notranslate nohighlight">\(O(\Delta t^6)\)</span> accuracy. This method originates from <a class="reference internal" href="9_references.html#butcher" id="id1"><span>[Butcher]</span></a>.
135135
As for the coefficients for <code class="docutils literal notranslate"><span class="pre">RK6</span></code> are more complex to write into equations, the Butcher table is given as follows.</p>
136136
<table class="docutils align-default">
137137
<thead>
@@ -220,6 +220,7 @@
220220
</tr>
221221
</tbody>
222222
</table>
223+
<p>In our computation, the up symbol side is applied, in other words, <code class="docutils literal notranslate"><span class="pre">±</span></code> represents <code class="docutils literal notranslate"><span class="pre">+</span></code>, taking <span class="math notranslate nohighlight">\(\lambda=+\sqrt{5}\)</span>.</p>
223224
</section>
224225
</section>
225226
<section id="ftle-computation">

_sources/3_numerical.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ This yields a global error of order :math:`O(\Delta t^4)` with four velocity eva
9999

100100
**Sixth-Order Runge-Kutta (RK6)**
101101

102-
The seven-stage scheme uses non-uniform weights to attain global :math:`O(\Delta t^6)` accuracy. This method originates from [Butcher]_.
102+
The seven-stage scheme ``ERK6(7)`` uses non-uniform weights to attain global :math:`O(\Delta t^6)` accuracy. This method originates from [Butcher]_.
103103
As for the coefficients for ``RK6`` are more complex to write into equations, the Butcher table is given as follows.
104104

105105
+-----------------------------+-------------------------------+----------------------------+---------------------------------+------------------------------+-----------------------------+--------------------------+-------------------------+
@@ -122,7 +122,7 @@ As for the coefficients for ``RK6`` are more complex to write into equations, th
122122
| :math:`b_i` | :math:`1/12` | :math:`0` | :math:`0` | :math:`0` | :math:`5/12` | :math:`5/12` | :math:`1/12` |
123123
+-----------------------------+-------------------------------+----------------------------+---------------------------------+------------------------------+-----------------------------+--------------------------+-------------------------+
124124

125-
125+
In our computation, the up symbol side is applied, in other words, ``±`` represents ``+``, taking :math:`\lambda=+\sqrt{5}`.
126126

127127

128128

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)