Metadata-Version: 2.1
Name: basic-pid
Version: 0.2.4
Summary: Basic PID Controller For Discrete Time Regulators
Home-page: https://github.com/mkner/basic-pid
Author: Mike Knerr
License: BSD
Keywords: PID,controllers,regulators,discrete time systems,mobile robotics,robotics
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
License-File: LICENSE
Requires-Dist: robo-base (>=0.1.3)

**basic-pid** 

A Basic Python PID Controller For Discrete Time Regulators

**Basic PID** is a classic PID controller that is easy to use, works and does the job.

The PID controller implements timestep integration
that is designed to be used in discretized time regulators.

**Basic PID** has proven to be a tested, and reliable PID controller. It has been used, for example, 
with mobile robotic systems for LVC (Linear Velocity Control) for regulating wheel velocities, 
LVDR (Lateral Velocity Differential Regulator) for keeping the wheel velocities in sync for 
differential drive mobile robots when traversing a straight line path and 
ADVR (Angular Differential Velocity Regulator) for tracking a heading angle using typical
motion control input signals (v,w) for linear & angular velocities.

It supports 2 modes of operation: **Integrative** and **Iterative**

In **iterative mode**, the timestep integration for updating an input
signal is done in the algorithm that calls the PID controller
for the ouput of the PID at the current timestep.

In **integrative mode**, the timestep integration is done inside the
controller and the output from the PID controller for the
current timestep is used directly to be sent to the process plant
as the current input signal.

Installation: 

$ **pip** install basic-pid

For documentation see https://basic-pid.readthedocs.io/en/latest/







