2 * pid.c PID controller for testing cooling devices
6 * Copyright (C) 2012 Intel Corporation. All rights reserved.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 or later as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * Author Name Jacob Pan <jacob.jun.pan@linux.intel.com>
26 #include <sys/types.h>
39 /**************************************************************************
40 * PID (Proportional-Integral-Derivative) controller is commonly used in
41 * linear control system, consider the the process.
43 * kp = proportional gain
45 * kd = derivative gain
47 * We use type C Alan Bradley equation which takes set point off the
48 * output dependency in P and D term.
50 * y[k] = y[k-1] - kp*(x[k] - x[k-1]) + Ki*Ts*e[k] - Kd*(x[k]
51 * - 2*x[k-1]+x[k-2])/Ts
54 ***********************************************************************/
55 struct pid_params p_param
;
56 /* cached data from previous loop */
57 static double xk_1
, xk_2
; /* input temperature x[k-#] */
60 * TODO: make PID parameters tuned automatically,
61 * 1. use CPU burn to produce open loop unit step response
62 * 2. calculate PID based on Ziegler-Nichols rule
64 * add a flag for tuning PID
66 int init_thermal_controller(void)
71 p_param
.ts
= ticktime
;
72 /* TODO: get it from TUI tuning tab */
77 p_param
.t_target
= target_temp_user
;
82 void controller_reset(void)
84 /* TODO: relax control data when not over thermal limit */
85 syslog(LOG_DEBUG
, "TC inactive, relax p-state\n");
92 /* To be called at time interval Ts. Type C PID controller.
93 * y[k] = y[k-1] - kp*(x[k] - x[k-1]) + Ki*Ts*e[k] - Kd*(x[k]
94 * - 2*x[k-1]+x[k-2])/Ts
95 * TODO: add low pass filter for D term
97 #define GUARD_BAND (2)
98 void controller_handler(const double xk
, double *yk
)
101 double p_term
, i_term
, d_term
;
103 ek
= p_param
.t_target
- xk
; /* error */
105 syslog(LOG_DEBUG
, "PID: %3.1f Below set point %3.1f, stop\n",
106 xk
, p_param
.t_target
);
111 /* compute intermediate PID terms */
112 p_term
= -p_param
.kp
* (xk
- xk_1
);
113 i_term
= p_param
.kp
* p_param
.ki
* p_param
.ts
* ek
;
114 d_term
= -p_param
.kp
* p_param
.kd
* (xk
- 2 * xk_1
+ xk_2
) / p_param
.ts
;
116 *yk
+= p_term
+ i_term
+ d_term
;
117 /* update sample data */
121 /* clamp output adjustment range */
122 if (*yk
< -LIMIT_HIGH
)
124 else if (*yk
> -LIMIT_LOW
)
129 set_ctrl_state(lround(fabs(p_param
.y_k
)));