Skip to main content

A furuta pendulum plotter based on matplotlib.

Project description

A plot utility for a furuta pendulum based on matplotlib.

Usage

Plots are best constructed using the FurutaPlotter wrapper class. Here is an example of how to plot a 3D animation of the pendulum and arm swinging at a constant rate for 10 seconds:

import matplotlib.pyplot as plt
import numpy as np

from furuta_plot import FurutaPlotter

FPS = 30
TOTAL_FRAMES = FPS * 10

fig = plt.figure()
p = FurutaPlotter(fig)
p.add_3D()

# One data point for each frame
phis = [2 * np.pi * i / (2*FPS) for i in range(TOTAL_FRAMES)]
thetas = [2 * np.pi * i / (FPS) for i in range(TOTAL_FRAMES)]

p.animate(fps=FPS, phi=phis, theta=thetas)

See the examples/ directory in the git repository for more usage examples.

Running Locally

If matplotlib and numpy are installed, then you can run one of the examples directly by putting the PYTHONPATH variable in front:

PYTHONPATH=. python3 examples/animated.py

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

furuta_plot-0.0.3.tar.gz (7.3 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