SciKits

Quick search

scikits.odes

version 0.2.0

A python module for ordinary differential equation anddifferential algebraic equation solvers

Download: http://cage.ugent.be/~bm/progs.html
Homepage: http://cage.ugent.be/~bm/progs.html
PyPI: http://pypi.python.org/pypi/scikits.odes
Source Repository: http://svn.scipy.org/svn/scikits/trunk/odes
People: maintainer of odes is B. Malengier

Description

Odes is a scikit toolkit for scipy to add some extra ode solvers.
At present it provides dae solvers you can use, extending the capabilities
offered in scipy.integrade.ode.

LICENSE: the license of odes is the same as scipy, new BSD.

Installation

PyPI

You can download the latest distribution from PyPI here: http://pypi.python.org/pypi/scikits.odes

Easy Install

Install the Easy Install tools. Afterwards you can install scikits.odes from the terminal by executing:

sudo easy_install scikits.odes

If you prefer to do a local installation, specify an installation prefix:

easy_install --prefix=${HOME} scikits.odes
and ensure that your PYTHONPATH is up to date, e.g.:
export PYTHONPATH=$PYTHONPATH:${HOME}/lib/python2.5/site-packages

Source code

You can get the latest sources from the repository using

svn checkout http://svn.scipy.org/svn/scikits/trunk/odes

This package was discovered in svn.scipy.org.