Skip to content

Instantly share code, notes, and snippets.

@jkbjh
Forked from chaosmail/python-pid_controller
Created October 25, 2017 14:54
Show Gist options
  • Save jkbjh/c6856b9369f3343ca2d496e804f8b25e to your computer and use it in GitHub Desktop.
Save jkbjh/c6856b9369f3343ca2d496e804f8b25e to your computer and use it in GitHub Desktop.
Simple PID Controller
def pid_controller(y, yc, h=1, Ti=1, Td=1, Kp=1, u0=0, e0=0)
"""Calculate System Input using a PID Controller
Arguments:
y .. Measured Output of the System
yc .. Desired Output of the System
h .. Sampling Time
Kp .. Controller Gain Constant
Ti .. Controller Integration Constant
Td .. Controller Derivation Constant
u0 .. Initial state of the integrator
e0 .. Initial error
Make sure this function gets called every h seconds!
"""
# Step variable
k = 0
# Initialization
ui_prev = u0
e_prev = e0
while 1:
# Error between the desired and actual output
e = yc - y
# Integration Input
ui = ui_prev + 1/Ti * h*e
# Derivation Input
ud = 1/Td * (e - e_prev)/h
# Adjust previous values
e_prev = e
ui_prev = ui
# Calculate input for the system
u = Kp * (e + ui + ud)
k += 1
yield u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment