2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-01-26 18:52:20 +00:00
Files
odeint/doc/boost_numeric_odeint/tutorial/all_examples.html
2012-06-26 07:09:51 +02:00

379 lines
14 KiB
HTML

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>All examples</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&#160;1.&#160;Boost.Numeric.Odeint">
<link rel="up" href="../tutorial.html" title="Tutorial">
<link rel="prev" href="using_opencl_and_vexcl.html" title="Using OpenCL and VexCL">
<link rel="next" href="references.html" title="References">
</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="using_opencl_and_vexcl.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial.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="references.html"><img src="../../images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="boost_numeric_odeint.tutorial.all_examples"></a><a class="link" href="all_examples.html" title="All examples">All examples</a>
</h3></div></div></div>
<p>
The following table gives an overview over all examples.
</p>
<div class="table">
<a name="boost_numeric_odeint.tutorial.all_examples.examples_overview"></a><p class="title"><b>Table&#160;1.5.&#160;Examples Overview</b></p>
<div class="table-contents"><table class="table" summary="Examples Overview">
<colgroup>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
File
</p>
</th>
<th>
<p>
Brief Description
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/harmonic_oscillator.cpp" target="_top">harmonic_oscillator.cpp</a>
</p>
</td>
<td>
<p>
The harmonic oscillator examples gives a brief introduction to
odeint and shows the usage of the classical Runge-Kutta-solvers.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/simple1d.cpp" target="_top">simple1d.cpp</a>
</p>
</td>
<td>
<p>
Integrating a simple, one-dimensional ODE showing the usage of
integrate- and generate-functions.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/elliptic_functions.cpp" target="_top">elliptic_functions.cpp</a>
</p>
</td>
<td>
<p>
Example calculating the elliptic functions using Bulirsch-Stoer
and Runge-Kutta-Dopri5 Steppers with dense output.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/solar_system.cpp" target="_top">solar_system.cpp</a>
</p>
</td>
<td>
<p>
The solar system example shows the usage of the symplectic solvers.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/chaotic_system.cpp" target="_top">chaotic_system.cpp</a>
</p>
</td>
<td>
<p>
The chaotic system examples integrates the Lorenz system and calculates
the Lyapunov exponents.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/stiff_system.cpp" target="_top">stiff_system.cpp</a>
</p>
</td>
<td>
<p>
The stiff system example shows the usage of the stiff solvers using
the Jacobian of the system function.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/van_der_pol_stiff.cpp" target="_top">van_der_pol_stiff.cpp</a>
</p>
</td>
<td>
<p>
This stiff system example again shows the usage of the stiff solvers
by integrating the van der Pol osscillator.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/stuart_landau.cpp" target="_top">stuart_landau.cpp</a>
</p>
</td>
<td>
<p>
The Stuart-Landau example shows how odeint can be used with complex
state types.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/fpu.cpp" target="_top">fpu.cpp</a>
</p>
</td>
<td>
<p>
The Fermi-Pasta-Ulam (FPU) example shows how odeint can be used
to integrate lattice systems.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/phase_oscillator_ensemble.cpp" target="_top">phase_oscillator_ensemble.cpp</a>
</p>
</td>
<td>
<p>
The phase oscillator ensemble example shows how globally coupled
oscillators can be analyzed and how statistical measures can be
computed during integration.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/stepper_details.cpp" target="_top">stepper_details.cpp</a>
</p>
</td>
<td>
<p>
Trivial example showing the usability of the several stepper classes.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/harmonic_oscillator_units.cpp" target="_top">harmonic_oscillator_units.cpp</a>
</p>
</td>
<td>
<p>
This examples shows how <a href="http://www.boost.org/doc/libs/release/libs/units/index.html" target="_top">Boost.Units</a>
can be used with odeint.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/two_dimensional_phase_lattice.cpp" target="_top">two_dimensional_phase_lattice.cpp</a>
</p>
</td>
<td>
<p>
The 2D phase oscillator example shows how a two-dimensional lattice
works with odeint and how matrix types can be used as state types
in odeint.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/resizing_lattice.cpp" target="_top">resizing_lattice.cpp</a>
</p>
</td>
<td>
<p>
Shows the strength of odeint's memory management by simulating
a Hamiltonian system on an expanding lattice.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/list_lattice.cpp" target="_top">list_lattice.cpp</a>
</p>
</td>
<td>
<p>
Example of a phase lattice integration using <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">list</span></code>
as state type.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/lorenz_point.cpp" target="_top">lorenz_point.cpp</a>
</p>
</td>
<td>
<p>
Alternative way of integrating lorenz by using a self defined point3d
data type as state type.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/lorenz_gmpxx.cpp" target="_top">lorenz_gmpxx.cpp</a>
</p>
</td>
<td>
<p>
This examples integrates the Lorenz system by means of an arbitrary
precision type.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/my_vector.cpp" target="_top">my_vector.cpp</a>
</p>
</td>
<td>
<p>
Simple example showing how to get odeint to work with a self-defined
vector type.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/thrust/phase_oscillator_ensemble.cu" target="_top">phase_oscillator_ensemble.cu</a>
</p>
</td>
<td>
<p>
The Thrust phase oscillator ensemble example shows how globally
coupled oscillators can be analyzed with Thrust and CUDA, employing
the power of modern graphic devices.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/thrust/phase_oscillator_chain.cu" target="_top">phase_oscillator_chain.cu</a>
</p>
</td>
<td>
<p>
The Thrust phase oscillator chain example shows how chains of nearest
neighbor coupled oscillators can be integrated with Thrust and
odeint.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/thrust/lorenz_parameters.cu" target="_top">lorenz_parameters.cu</a>
</p>
</td>
<td>
<p>
The Lorenz parameters examples show how ensembles of ordinary differential
equations can be solved by means of Thrust to study the dependence
of an ODE on some parameters.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/mtl/gauss_packet.cpp" target="_top">gauss_packet.cpp</a>
</p>
</td>
<td>
<p>
The MTL-Gauss-packet example shows how the MTL can be easily used
with odeint.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/stochastic_euler.cpp" target="_top">stochastic_euler.cpp</a>
</p>
</td>
<td>
<p>
Implementation of a custom stepper - the stochastic euler - for
solving stochastic differential equations.
</p>
</td>
</tr>
<tr>
<td>
<p>
<a href="https://github.com/headmyshoulder/odeint-v2/tree/master/libs/numeric/odeint/examples/generation_functions.cpp" target="_top">generation_functions.cpp</a>
</p>
</td>
<td>
<p>
Shows skeletal code on how to implemente own factory functions.
</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 &#169; 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="using_opencl_and_vexcl.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorial.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="references.html"><img src="../../images/next.png" alt="Next"></a>
</div>
</body>
</html>