Simulate dynamic systems expressed in block diagram form using Python
Project description
bdsim: Block Diagram Simulation for Python
A Pythonic block-diagram environment for the simulation and analysis of dynamic systems.
GitHub • Wiki • Changelog • Installation
Status & Ecosystem
Powered by
Synopsis
bdsim bridges the gap between mathematical block diagrams and executable Python code. Unlike traditional graphical-only tools, it treats modelling as code, allowing you to define, simulate, and analyze continuous-time, discrete-time, or hybrid systems within a modern software engineering workflow. Wires in bdsim aren't limited to scalars; they pass NumPy arrays, dictionaries, or even SpatialMath objects seamlessly through your system, integrating directly with the Robotics and Machine Vision toolboxes.
🚀 Key Features
- Python-First Workflow: Define your systems in pure Python code. Use your preferred IDE (like VS Code), manage versions with Git, and integrate with standard unit-testing frameworks.
- Rich Data Types: Wires in
bdsimaren't limited to scalars. Seamlessly pass NumPy arrays, dictionaries, or complex objects likeSE3andSO3from thespatialmath-pythonlibrary. - Modular & Extensible: Adding new functionality is straightforward. Create custom blocks by simply subclassing the
Blockclass. - Hybrid Ecosystem: Native integration with the Robotics Toolbox and Machine Vision Toolbox for Python.
- Powerful Editor: Includes
bdedit, a PySide-based graphical editor for visual system design and discovery. - Publication Ready: Export diagrams or simulation data to to high-quality formats such as PDF or SVG for use in publications.
💻 Quick start
You can install bdsim directly from PyPI:
pip install bdsim
To include the graphical editor (bdedit) and its dependencies:
Bash
pip install bdsim[editor]
Install locally with help from the detailed installation guide.
Or skip setup and run the browser-based JupyterLite examples.
Example
The power of bdsim lies in its conciseness. The step response of a simple first-order system can be defined and simulated in just a few lines of code:
Python
import bdsim
sim = bdsim.BDSim()
bd = sim.blockdiagram()
# Define blocks
step = bd.STEP(T=1, pos=1)
plant = bd.LTI_SISO(1, [1, 1]) # 1/(s+1)
scope = bd.SCOPE()
# Connect blocks
bd.connect(step, plant)
bd.connect(plant, scope)
bd.compile()
out = sim.run(bd, T=5)
🔍 Why bdsim?
In contrast to traditional graphical simulation tools, bdsim treats modelling as code. This ensures:
-
Better Version Control: No more opaque binary blobs. Your models are searchable, diffable text.
-
Seamless Integration: Incorporate SciPy solvers, PyTorch models, or custom computer vision pipelines directly into your simulation loops.
-
Scalability: Programmatically generate massive block diagrams or run large-scale batch simulations on headless servers.
📚 Documentation
Full Documentation: https://petercorke.github.io/bdsim/
Wiki: Access the community wiki for deep dives into specific block behaviours and tutorials.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bdsim-1.2.1.tar.gz.
File metadata
- Download URL: bdsim-1.2.1.tar.gz
- Upload date:
- Size: 15.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
661ea067c3c3ffe49ca915231c2fab90539490b39b68afd02fcf6fedbe3acef7
|
|
| MD5 |
b9ee6bca52fc47b73000f3fbd62cb590
|
|
| BLAKE2b-256 |
4bceac52f763092b5b233baad989c41a74f1df32a0c171ff42c0448f82b02144
|
File details
Details for the file bdsim-1.2.1-py3-none-any.whl.
File metadata
- Download URL: bdsim-1.2.1-py3-none-any.whl
- Upload date:
- Size: 15.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a89ebedce43600dc4f5292577b0b2b4b6771e830b73ec463db720fabe97e64a1
|
|
| MD5 |
2769e4e82af4513a8569e0d4ec864b87
|
|
| BLAKE2b-256 |
66148aa21c503901e0115dd4923ee8f4906e463a442b1f23628b8ca56bef34f4
|