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
Release files for furuta-plot 0.0.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| furuta_plot-0.0.3.tar.gz | 7.3 kB | Details |
Release files / furuta_plot-0.0.3.tar.gz
| Download URL | furuta_plot-0.0.3.tar.gz |
|---|---|
| Size | 7.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a82da7af242b5a84cc9535cf4165bf9b83701a1891196057ed15334360102bbc
|
|
BLAKE2b-256 checksum How to use checksums |
6966e75d4e8b1e0815d2471269052c360bd86de3f4486e095925c819eaeff3e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.6
|