blob: 98968f73a73cabf961a24906dca03b1d53f62ef1 [file] [log] [blame]
Patrick Ventured8012182018-03-08 08:21:38 -08001/**
2 * Copyright 2017 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "pid.hpp"
18
Patrick Venturea0764872020-08-08 07:48:43 -070019namespace pid_control
20{
Patrick Ventured8012182018-03-08 08:21:38 -080021namespace ec
22{
23
24/********************************
25 * clamp
26 *
27 */
Patrick Venture5f59c0f2018-11-11 12:55:14 -080028static double clamp(double x, double min, double max)
Patrick Ventured8012182018-03-08 08:21:38 -080029{
30 if (x < min)
31 {
32 return min;
33 }
34 else if (x > max)
35 {
36 return max;
37 }
38 return x;
39}
40
41/********************************
42 * pid code
43 * Note: Codes assumes the ts field is non-zero
44 */
Patrick Venture5f59c0f2018-11-11 12:55:14 -080045double pid(pid_info_t* pidinfoptr, double input, double setpoint)
Patrick Ventured8012182018-03-08 08:21:38 -080046{
Patrick Venture5f59c0f2018-11-11 12:55:14 -080047 double error;
Patrick Ventured8012182018-03-08 08:21:38 -080048
Patrick Venturea23468e2019-02-11 09:25:56 -080049 double proportionalTerm;
50 double integralTerm = 0.0f;
51 double feedFwdTerm = 0.0f;
Patrick Ventured8012182018-03-08 08:21:38 -080052
Patrick Venture5f59c0f2018-11-11 12:55:14 -080053 double output;
Patrick Ventured8012182018-03-08 08:21:38 -080054
55 // calculate P, I, D, FF
56
57 // Pid
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070058 error = setpoint - input;
Patrick Venturea23468e2019-02-11 09:25:56 -080059 proportionalTerm = pidinfoptr->proportionalCoeff * error;
Patrick Ventured8012182018-03-08 08:21:38 -080060
61 // pId
Patrick Venture4b0df322019-02-11 09:04:57 -080062 if (0.0f != pidinfoptr->integralCoeff)
Patrick Ventured8012182018-03-08 08:21:38 -080063 {
Patrick Venturea23468e2019-02-11 09:25:56 -080064 integralTerm = pidinfoptr->integral;
65 integralTerm += error * pidinfoptr->integralCoeff * pidinfoptr->ts;
66 integralTerm = clamp(integralTerm, pidinfoptr->integralLimit.min,
67 pidinfoptr->integralLimit.max);
Patrick Ventured8012182018-03-08 08:21:38 -080068 }
69
70 // FF
Patrick Venturea23468e2019-02-11 09:25:56 -080071 feedFwdTerm =
72 (setpoint + pidinfoptr->feedFwdOffset) * pidinfoptr->feedFwdGain;
Patrick Ventured8012182018-03-08 08:21:38 -080073
Patrick Venturea23468e2019-02-11 09:25:56 -080074 output = proportionalTerm + integralTerm + feedFwdTerm;
Patrick Venture4b0df322019-02-11 09:04:57 -080075 output = clamp(output, pidinfoptr->outLim.min, pidinfoptr->outLim.max);
Patrick Ventured8012182018-03-08 08:21:38 -080076
77 // slew rate
78 // TODO(aarena) - Simplify logic as Andy suggested by creating dynamic
Patrick Venture7442c372019-02-11 10:21:05 -080079 // outLim_min/max that are affected by slew rate control and just clamping
Patrick Ventured8012182018-03-08 08:21:38 -080080 // to those instead of effectively clamping twice.
81 if (pidinfoptr->initialized)
82 {
Patrick Venture4b0df322019-02-11 09:04:57 -080083 if (pidinfoptr->slewNeg != 0.0f)
Patrick Ventured8012182018-03-08 08:21:38 -080084 {
85 // Don't decrease too fast
Patrick Venturea23468e2019-02-11 09:25:56 -080086 double minOut =
Patrick Venture4b0df322019-02-11 09:04:57 -080087 pidinfoptr->lastOutput + pidinfoptr->slewNeg * pidinfoptr->ts;
Patrick Venturea23468e2019-02-11 09:25:56 -080088 if (output < minOut)
Patrick Ventured8012182018-03-08 08:21:38 -080089 {
Patrick Venturea23468e2019-02-11 09:25:56 -080090 output = minOut;
Patrick Ventured8012182018-03-08 08:21:38 -080091 }
92 }
Patrick Venture4b0df322019-02-11 09:04:57 -080093 if (pidinfoptr->slewPos != 0.0f)
Patrick Ventured8012182018-03-08 08:21:38 -080094 {
95 // Don't increase too fast
Patrick Venturea23468e2019-02-11 09:25:56 -080096 double maxOut =
Patrick Venture4b0df322019-02-11 09:04:57 -080097 pidinfoptr->lastOutput + pidinfoptr->slewPos * pidinfoptr->ts;
Patrick Venturea23468e2019-02-11 09:25:56 -080098 if (output > maxOut)
Patrick Ventured8012182018-03-08 08:21:38 -080099 {
Patrick Venturea23468e2019-02-11 09:25:56 -0800100 output = maxOut;
Patrick Ventured8012182018-03-08 08:21:38 -0800101 }
102 }
103
Patrick Venture4b0df322019-02-11 09:04:57 -0800104 if (pidinfoptr->slewNeg != 0.0f || pidinfoptr->slewPos != 0.0f)
Patrick Ventured8012182018-03-08 08:21:38 -0800105 {
106 // Back calculate integral term for the cases where we limited the
107 // output
Patrick Venturea23468e2019-02-11 09:25:56 -0800108 integralTerm = output - proportionalTerm;
Patrick Ventured8012182018-03-08 08:21:38 -0800109 }
110 }
111
112 // Clamp again because having limited the output may result in a
113 // larger integral term
Patrick Venturea23468e2019-02-11 09:25:56 -0800114 integralTerm = clamp(integralTerm, pidinfoptr->integralLimit.min,
115 pidinfoptr->integralLimit.max);
116 pidinfoptr->integral = integralTerm;
Patrick Ventureda4a5dd2018-08-31 09:42:48 -0700117 pidinfoptr->initialized = true;
Patrick Venture4b0df322019-02-11 09:04:57 -0800118 pidinfoptr->lastOutput = output;
Patrick Ventured8012182018-03-08 08:21:38 -0800119
120 return output;
121}
122
Patrick Ventureda4a5dd2018-08-31 09:42:48 -0700123} // namespace ec
Patrick Venturea0764872020-08-08 07:48:43 -0700124} // namespace pid_control