mirror of
https://github.com/boostorg/odeint.git
synced 2026-02-14 00:52:07 +00:00
206 lines
5.3 KiB
HTML
206 lines
5.3 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
|
<title>Stepper classes</title>
|
|
<link rel="stylesheet" href="../../boostbook.css" type="text/css">
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
|
<link rel="home" href="../../index.html" title="Chapter 1. boost.sandbox.numeric.odeint">
|
|
<link rel="up" href="../old_reference.html" title="Old Reference">
|
|
<link rel="prev" href="../old_reference.html" title="Old Reference">
|
|
<link rel="next" href="integration_functions.html" title="Integration functions">
|
|
</head>
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
<table cellpadding="2" width="100%"><tr><td valign="top"></td></tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="../old_reference.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../old_reference.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="integration_functions.html"><img src="../../images/next.png" alt="Next"></a>
|
|
</div>
|
|
<div class="section">
|
|
<div class="titlepage"><div><div><h3 class="title">
|
|
<a name="boost_sandbox_numeric_odeint.old_reference.stepper_classes"></a><a class="link" href="stepper_classes.html" title="Stepper classes">Stepper
|
|
classes</a>
|
|
</h3></div></div></div>
|
|
<div class="table">
|
|
<a name="id601775"></a><p class="title"><b>Table 1.4. Stepper Algorithms</b></p>
|
|
<div class="table-contents"><table class="table" summary="Stepper Algorithms">
|
|
<colgroup>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
</colgroup>
|
|
<thead><tr>
|
|
<th>
|
|
<p>
|
|
Method
|
|
</p>
|
|
</th>
|
|
<th>
|
|
<p>
|
|
Class
|
|
</p>
|
|
</th>
|
|
<th>
|
|
<p>
|
|
Order
|
|
</p>
|
|
</th>
|
|
<th>
|
|
<p>
|
|
Error Estimation
|
|
</p>
|
|
</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
Euler
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
stepper_euler
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
1
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
No
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
Runge-Kutta 4
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
stepper_rk4
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
4
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
No
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
Runge-Kutta Cash-Karp
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
stepper_rk5_ck
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
5
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
Yes (Order 4)
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
Runge-Kutta Fehlberg
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
stepper_rk78_fehlberg
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
7
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
Yes (Order 8)
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
Midpoint
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
stepper_midpoint
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
variable
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
No
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
Bulirsch-Stoer
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
controlled_stepper_bs
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
variable
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
Controlled
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table></div>
|
|
</div>
|
|
<br class="table-break">
|
|
</div>
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
<td align="left"></td>
|
|
<td align="right"><div class="copyright-footer">Copyright © 2009 -2011 Karsten Ahnert and Mario Mulansky<p>
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|
</p>
|
|
</div></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="../old_reference.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../old_reference.html"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="integration_functions.html"><img src="../../images/next.png" alt="Next"></a>
|
|
</div>
|
|
</body>
|
|
</html>
|