Metadata-Version: 2.1
Name: ode
Version: 0.2.0
Summary: Ordinary differential equation solver (numeric integration)
Home-page: https://github.com/bierschenk/ode
Author: bierschenk
Author-email: bierschenk.devel@gmail.com
License: MIT license
Description-Content-Type: UNKNOWN
Keywords: ode
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering

Readme
======


.. image:: https://img.shields.io/pypi/v/ode.svg
        :target: https://pypi.python.org/pypi/ode

.. image:: https://img.shields.io/travis/bierschenk/ode.svg
        :target: https://travis-ci.org/bierschenk/ode

.. image:: https://readthedocs.org/projects/ode/badge/?version=latest
        :target: https://ode-solver.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




ode
---

This module provides numeric integrators for ordinary differential equations
with usage similar to matlab integrators such as ode45.

* Free software: MIT license
* Documentation: http://ode-solver.readthedocs.io/.


Integration methods:
 * Euler's method
 * Backward Euler method
 * Verlet method:

For each integrator a generator and a standard version is included.


=======
History
=======

0.2.0 (2018-06-10)
------------------

* Refactor to improve readability and code reuse.
* Clean tempating and testing
* Update documentation


0.1.2 (2018-03-06)
------------------

* Add verlet integration


0.1.1 (2018-03-05)
------------------

* Add generator versions of Euler and backward Euler methods.


0.1.0 (2018-03-03)
------------------

* First release on PyPI.


