Python Toolbox to draw Control Block Diagrams
Project description
Control Block Diagram
Overview | Quickstart | Examples | Installation
Overview
The control-block-diagram package is a Python Toolbox for drawing block diagrams. It is build upon Pylatex, and therefore, can generate Latex files and also PDF files. It allows you to construct typical control block diagrams with the usual building blocks, i.e., PI-Controllers, Adders, Multiplier. It is also possible to define own blocks.
Getting Started
The easiest way to get started with the ControlBlockDiagram Toolbox is to play around with the Hands On Jupyter Notebook. There the most important functions are explained and demonstrated with simple examples.
A basic routine is as simple as:
from control_block_diagram import ControllerDiagram
from control_block_diagram import Point, Box, Connection
if __name__ == '__main__':
doc = ControllerDiagram()
box_control = Box(Point(0, 0), text='Control')
box_block = Box(box_control.position.add_x(3), text='Block')
box_diagram = Box(box_block.position.add_x(3), text='Diagram')
Connection.connect(box_control.output, box_block.input)
Connection.connect(box_block.output, box_diagram.input)
doc.save('pdf')
doc.show()
The output of this code is:
Examples
There are some examples in the examples folder:
Installation
- Install from GitHub source:
git clone git@github.com:upb-lea/control-block-diagram.git
cd control-block-diagram
# Then either
python setup.py install
# or alternatively
pip install -e .
# or alternatively
pip install git+https://github.com/upb-lea/control-block-diagram
You also need a latex compiler such as pdfLaTex to create a PDF file. For example, you can get this from the latex distribution MiKTeX.
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
File details
Details for the file control-block-diagram-0.0.1.tar.gz
.
File metadata
- Download URL: control-block-diagram-0.0.1.tar.gz
- Upload date:
- Size: 26.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a23fc35b9f09e2197e24fc448563fa3d7cac2e8b33b04bd2b75a4c5fdb4e424 |
|
MD5 | ca69b678a3ed8a1924db6e55ae343bd5 |
|
BLAKE2b-256 | c8de0ecc40ac5681fd3a1e6af879d581d153f37118200848faee74b8b2d4f552 |
File details
Details for the file control_block_diagram-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: control_block_diagram-0.0.1-py3-none-any.whl
- Upload date:
- Size: 54.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49a75de01aa5e3c1211e81afb9e5f9618ba302a43cee1b976ddde036f8fa714b |
|
MD5 | 0aa83e7ca2d6d35fed5e4562dcd478eb |
|
BLAKE2b-256 | 7b6fd3af1a60fe4a0dd81acd6cc6f1f4de09ea8d7229227ee90bccd816b9b796 |