You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
677 B
34 lines
677 B
#pragma once |
|
|
|
/* |
|
Generic PI for systems like heater control, no filtering |
|
*/ |
|
|
|
#include <AP_Common/AP_Common.h> |
|
#include <AP_Param/AP_Param.h> |
|
|
|
class AC_PI { |
|
public: |
|
// Constructor |
|
AC_PI(float initial_p, float initial_i, float initial_imax); |
|
|
|
// update controller |
|
float update(float measurement, float target, float dt); |
|
|
|
// parameter var table |
|
static const struct AP_Param::GroupInfo var_info[]; |
|
|
|
float get_P() { |
|
return output_P; |
|
} |
|
float get_I() { |
|
return integrator; |
|
} |
|
|
|
protected: |
|
AP_Float kP; |
|
AP_Float kI; |
|
AP_Float imax; |
|
float integrator; |
|
float output_P; |
|
};
|
|
|