Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 1 | /** |
| 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 | |
| 19 | namespace ec |
| 20 | { |
| 21 | |
| 22 | /******************************** |
| 23 | * clamp |
| 24 | * |
| 25 | */ |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 26 | static double clamp(double x, double min, double max) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 27 | { |
| 28 | if (x < min) |
| 29 | { |
| 30 | return min; |
| 31 | } |
| 32 | else if (x > max) |
| 33 | { |
| 34 | return max; |
| 35 | } |
| 36 | return x; |
| 37 | } |
| 38 | |
| 39 | /******************************** |
| 40 | * pid code |
| 41 | * Note: Codes assumes the ts field is non-zero |
| 42 | */ |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 43 | double pid(pid_info_t* pidinfoptr, double input, double setpoint) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 44 | { |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 45 | double error; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 46 | |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 47 | double proportionalTerm; |
| 48 | double integralTerm = 0.0f; |
| 49 | double feedFwdTerm = 0.0f; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 50 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 51 | double output; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 52 | |
| 53 | // calculate P, I, D, FF |
| 54 | |
| 55 | // Pid |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 56 | error = setpoint - input; |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 57 | proportionalTerm = pidinfoptr->proportionalCoeff * error; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 58 | |
| 59 | // pId |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 60 | if (0.0f != pidinfoptr->integralCoeff) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 61 | { |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 62 | integralTerm = pidinfoptr->integral; |
| 63 | integralTerm += error * pidinfoptr->integralCoeff * pidinfoptr->ts; |
| 64 | integralTerm = clamp(integralTerm, pidinfoptr->integralLimit.min, |
| 65 | pidinfoptr->integralLimit.max); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | // FF |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 69 | feedFwdTerm = |
| 70 | (setpoint + pidinfoptr->feedFwdOffset) * pidinfoptr->feedFwdGain; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 71 | |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 72 | output = proportionalTerm + integralTerm + feedFwdTerm; |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 73 | output = clamp(output, pidinfoptr->outLim.min, pidinfoptr->outLim.max); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 74 | |
| 75 | // slew rate |
| 76 | // TODO(aarena) - Simplify logic as Andy suggested by creating dynamic |
Patrick Venture | 7442c37 | 2019-02-11 10:21:05 -0800 | [diff] [blame] | 77 | // outLim_min/max that are affected by slew rate control and just clamping |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 78 | // to those instead of effectively clamping twice. |
| 79 | if (pidinfoptr->initialized) |
| 80 | { |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 81 | if (pidinfoptr->slewNeg != 0.0f) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 82 | { |
| 83 | // Don't decrease too fast |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 84 | double minOut = |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 85 | pidinfoptr->lastOutput + pidinfoptr->slewNeg * pidinfoptr->ts; |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 86 | if (output < minOut) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 87 | { |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 88 | output = minOut; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 89 | } |
| 90 | } |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 91 | if (pidinfoptr->slewPos != 0.0f) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 92 | { |
| 93 | // Don't increase too fast |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 94 | double maxOut = |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 95 | pidinfoptr->lastOutput + pidinfoptr->slewPos * pidinfoptr->ts; |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 96 | if (output > maxOut) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 97 | { |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 98 | output = maxOut; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 99 | } |
| 100 | } |
| 101 | |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 102 | if (pidinfoptr->slewNeg != 0.0f || pidinfoptr->slewPos != 0.0f) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 103 | { |
| 104 | // Back calculate integral term for the cases where we limited the |
| 105 | // output |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 106 | integralTerm = output - proportionalTerm; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 107 | } |
| 108 | } |
| 109 | |
| 110 | // Clamp again because having limited the output may result in a |
| 111 | // larger integral term |
Patrick Venture | a23468e | 2019-02-11 09:25:56 -0800 | [diff] [blame] | 112 | integralTerm = clamp(integralTerm, pidinfoptr->integralLimit.min, |
| 113 | pidinfoptr->integralLimit.max); |
| 114 | pidinfoptr->integral = integralTerm; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 115 | pidinfoptr->initialized = true; |
Patrick Venture | 4b0df32 | 2019-02-11 09:04:57 -0800 | [diff] [blame] | 116 | pidinfoptr->lastOutput = output; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 117 | |
| 118 | return output; |
| 119 | } |
| 120 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 121 | } // namespace ec |