Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeancahu/pidtune
PID tune tool Python3.10 library for tuning and close-loop simulation
https://github.com/jeancahu/pidtune
Last synced: about 2 months ago
JSON representation
PID tune tool Python3.10 library for tuning and close-loop simulation
- Host: GitHub
- URL: https://github.com/jeancahu/pidtune
- Owner: jeancahu
- License: mit
- Created: 2022-06-09T23:34:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-13T05:19:46.000Z (about 1 year ago)
- Last Synced: 2024-10-29T04:07:44.643Z (2 months ago)
- Language: Python
- Size: 130 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PID tuning tool
It includes some useful rules for PID controllers tuning and process identification, also it returns the close-loop simulations when the process incorporates delay/dead-time.
## Developer enviroment
### Install
```bash
virtualenv venv
source venv/bin/activatepip install -r requirements.txt
pip install -r requirements-dev.txt
```### Run tests
```bash
## Alfaro123c an FOM validation tests
pytest test/test.py
```