0.01
No commit activity in last 3 years
No release in over 3 years
A Ruby PID controller implementation
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
>= 0
~> 10.0
~> 3.0
~> 0.51
 Project Readme

PidController

Gem Version Build Status

This is a Ruby implementation of a PID Controller. A PID controller is a feedback system that is configured with a target setpoint, can read measurements of the system to see how close we are to the setpoint, and will omit an output. Every day examples include:

  • Cruise control
  • Thermostats
  • Quadcopters (appearently, because they predominate search results)
  • Database load (yay! This is why the purpose I'm actually writing this for).

Recommended reading

Usage

I mentioned databases, so here's an example of how we can prevent a low priority task (e.g. bulk deletion) from contending with customer traffic:

sensor = MySQLSensor.new # Use your imagination
controller = PIDController.new(
  setpoint: 60.0,
  kp: 5.0,
  ki: 1.0,
  kd: 0.1,
  output_max: 0.0,
  integral_max: 0.0
  )

Event.where(account_id: account_id).in_batches do |relation|
  relation.delete_all
  backoff = -1 * controller << sensor.cpu_utilization
  sleep backoff if backoff > 0
end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/gabetax/pid_controller.