Skip to main content

ode integration rk4 rk runge kutta

Project description

Header pic

Runge-Kutta

Actions Status PyPI - License PyPI - Python Version PyPI - Format PyPI

A simple implementation of Runge-Kutta for python.

Usage

Integrates a function x_dot = f(time, x, u). See the examples in the docs folder or a simple one:

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()

Alternative

If you want to use scipy (which is good, but big), you can do:

from scipy.integrate import solve_ivp as rk45

def func(t,x,u):
    # cool differential equations
    # ...
    return x

t = 0
dt = 0.01
y = np.array([0,0,0]) # initial state

for _ in tqdm(range(steps)):
    u = np.array([1,2,3]) # some inputs to func (i.e., control effort)

    y = rk45(func, [t, t+step], y, args=(u,))

    if y.success == False:
        print("Oops")

    y = y.y[:,-1]

    # probably save t, u and y into arrays for plotting
    t += step

MIT License

Copyright (c) 2015 Kevin J. Walchko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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-2023.11.9.tar.gz (3.4 kB view details)

Uploaded Source

Built Distribution

pyrk-2023.11.9-py3-none-any.whl (3.9 kB view details)

Uploaded Python 3

File details

Details for the file pyrk-2023.11.9.tar.gz.

File metadata

  • Download URL: pyrk-2023.11.9.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.6 Darwin/21.6.0

File hashes

Hashes for pyrk-2023.11.9.tar.gz
Algorithm Hash digest
SHA256 e76fc7296eab2d39d6d258cf311f37a6b6d16d6585f7273ea3b8137297ef5c3d
MD5 660502bb6793ae6a81c9eb368a1b2023
BLAKE2b-256 6194ab523aae584bb60b0a6bcaa4b550737d56854f09ba507deaed05067e5f0a

See more details on using hashes here.

File details

Details for the file pyrk-2023.11.9-py3-none-any.whl.

File metadata

  • Download URL: pyrk-2023.11.9-py3-none-any.whl
  • Upload date:
  • Size: 3.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.6 Darwin/21.6.0

File hashes

Hashes for pyrk-2023.11.9-py3-none-any.whl
Algorithm Hash digest
SHA256 b899bfb834ff7de4ad7605631589cdc56cf699b8188397c8674e8d5adcdd90f7
MD5 1134d0ccc37f32a4a8215e13f68e8729
BLAKE2b-256 bf7ec44fd9807f79dfd0a4568af2422d431ed5419544023c57e2d189fb077868

See more details on using hashes here.

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