simple-pid:Python中简单易用的PID控制器

时间:2024-05-20 07:31:21
【文件属性】:

文件名称:simple-pid:Python中简单易用的PID控制器

文件大小:19KB

文件格式:ZIP

更新时间:2024-05-20 07:31:21

Python

简单pid Python中简单易用的PID控制器。 如果您想要一个没有外部依赖关系的PID控制器就可以正常工作,那么这是给您的! 在帮助下,PID被设计为具有鲁棒性。 用法很简单: from simple_pid import PID pid = PID ( 1 , 0.1 , 0.05 , setpoint = 1 ) # Assume we have a system we want to control in controlled_system v = controlled_system . update ( 0 ) while True : # Compute new output from the PID according to the systems current value control = pid ( v ) # Feed th


【文件预览】:
simple-pid-master
----setup.py(1KB)
----.gitignore(131B)
----LICENSE.md(1KB)
----simple_pid()
--------PID.pyi(2KB)
--------__init__.py(21B)
--------py.typed(0B)
--------PID.py(9KB)
----.travis.yml(216B)
----MANIFEST.in(310B)
----CHANGELOG.md(3KB)
----setup.cfg(92B)
----examples()
--------water_boiler()
----README.md(5KB)
----tests()
--------test_pid.py(6KB)
--------__init__.py(0B)
----docs()
--------requirements.txt(21B)
--------Makefile(611B)
--------source()
----tox.ini(161B)

网友评论