Skip to main content

A simple runge-kutta 4 integrator

Project description

https://travis-ci.org/walchko/pyrk.svg?branch=master

A simple implementation of Runge-Kutta for python.

Install from PyPi

pip install pyrk

Develop

pip install -e .

Usage

See the examples in the docs folder or a simple one:

from __future__ import division, print_function
from pyrk import RK4
import numpy as np
import matplotlib.pyplot as plt

def vanderpol(t, xi, u):
        dx, x = xi
        mu = 4.0 # damping

        ddx = mu*(1-x**2)*dx-x
        dx = dx

        return np.array([ddx, dx])

rk = RK4(vanderpol)
t, y = rk.solve(np.array([0, 1]), .01, 200)

y1 = []
y2 = []
for v in y:
        y1.append(v[0])
        y2.append(v[1])

plt.plot(y1, y2)
plt.ylabel('velocity')
plt.xlabel('position')
plt.grid(True)
plt.show()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrk-0.5.2.tar.gz (2.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page