blob: 8396338776c24c82396a4517ccb2cf877fc3161c [file] [log] [blame]
Patrick Ventured1491722019-02-08 14:37:45 -08001/**
2 * Copyright 2019 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/buildjson.hpp"
18
19#include "conf.hpp"
Josh Lehan31058fd2023-01-13 11:06:16 -080020#include "util.hpp"
Patrick Ventured1491722019-02-08 14:37:45 -080021
Patrick Ventured1491722019-02-08 14:37:45 -080022#include <nlohmann/json.hpp>
Patrick Venturea83a3ec2020-08-04 09:52:05 -070023
Bonnie Lo0e8fc392022-10-05 10:20:55 +080024#include <iostream>
Josh Lehan31058fd2023-01-13 11:06:16 -080025#include <limits>
Patrick Venturea83a3ec2020-08-04 09:52:05 -070026#include <map>
Patrick Ventured1491722019-02-08 14:37:45 -080027#include <tuple>
28
Patrick Venturea0764872020-08-08 07:48:43 -070029namespace pid_control
30{
31
Patrick Ventured1491722019-02-08 14:37:45 -080032using json = nlohmann::json;
33
James Feistf81f2882019-02-26 11:26:36 -080034namespace conf
35{
Josh Lehan31058fd2023-01-13 11:06:16 -080036
James Feistf81f2882019-02-26 11:26:36 -080037void from_json(const json& j, conf::ControllerInfo& c)
Patrick Ventured1491722019-02-08 14:37:45 -080038{
Josh Lehan31058fd2023-01-13 11:06:16 -080039 std::vector<std::string> inputNames;
40
Patrick Ventured1491722019-02-08 14:37:45 -080041 j.at("type").get_to(c.type);
Josh Lehan31058fd2023-01-13 11:06:16 -080042 j.at("inputs").get_to(inputNames);
Patrick Ventured1491722019-02-08 14:37:45 -080043 j.at("setpoint").get_to(c.setpoint);
44
Josh Lehan31058fd2023-01-13 11:06:16 -080045 std::vector<double> inputTempToMargin;
46
47 auto findTempToMargin = j.find("tempToMargin");
48 if (findTempToMargin != j.end())
49 {
50 findTempToMargin->get_to(inputTempToMargin);
51 }
52
53 c.inputs = spliceInputs(inputNames, inputTempToMargin);
54
Patrick Ventured1491722019-02-08 14:37:45 -080055 /* TODO: We need to handle parsing other PID controller configurations.
56 * We can do that by checking for different keys and making the decision
57 * accordingly.
58 */
59 auto p = j.at("pid");
Patrick Ventured1491722019-02-08 14:37:45 -080060
61 auto positiveHysteresis = p.find("positiveHysteresis");
Hank Liou375f7092019-03-29 20:15:42 +080062 auto negativeHysteresis = p.find("negativeHysteresis");
Josh Lehanc612c052022-12-12 09:56:47 -080063 auto derivativeCoeff = p.find("derivativeCoeff");
Hank Liou375f7092019-03-29 20:15:42 +080064 auto positiveHysteresisValue = 0.0;
65 auto negativeHysteresisValue = 0.0;
Josh Lehanc612c052022-12-12 09:56:47 -080066 auto derivativeCoeffValue = 0.0;
Hank Liou375f7092019-03-29 20:15:42 +080067 if (positiveHysteresis != p.end())
Patrick Ventured1491722019-02-08 14:37:45 -080068 {
Josh Lehanc612c052022-12-12 09:56:47 -080069 positiveHysteresis->get_to(positiveHysteresisValue);
Patrick Ventured1491722019-02-08 14:37:45 -080070 }
Hank Liou375f7092019-03-29 20:15:42 +080071 if (negativeHysteresis != p.end())
Patrick Ventured1491722019-02-08 14:37:45 -080072 {
Josh Lehanc612c052022-12-12 09:56:47 -080073 negativeHysteresis->get_to(negativeHysteresisValue);
74 }
75 if (derivativeCoeff != p.end())
76 {
77 derivativeCoeff->get_to(derivativeCoeffValue);
Patrick Ventured1491722019-02-08 14:37:45 -080078 }
79
ykchiu9fe3a3c2023-05-11 13:43:54 +080080 auto failSafePercent = j.find("FailSafePercent");
81 auto failSafePercentValue = 0;
82 if (failSafePercent != j.end())
83 {
84 failSafePercent->get_to(failSafePercentValue);
85 }
86 c.failSafePercent = failSafePercentValue;
87
Hank Liou375f7092019-03-29 20:15:42 +080088 if (c.type != "stepwise")
Patrick Ventured1491722019-02-08 14:37:45 -080089 {
Hank Liou375f7092019-03-29 20:15:42 +080090 p.at("samplePeriod").get_to(c.pidInfo.ts);
91 p.at("proportionalCoeff").get_to(c.pidInfo.proportionalCoeff);
92 p.at("integralCoeff").get_to(c.pidInfo.integralCoeff);
93 p.at("feedFwdOffsetCoeff").get_to(c.pidInfo.feedFwdOffset);
94 p.at("feedFwdGainCoeff").get_to(c.pidInfo.feedFwdGain);
95 p.at("integralLimit_min").get_to(c.pidInfo.integralLimit.min);
96 p.at("integralLimit_max").get_to(c.pidInfo.integralLimit.max);
97 p.at("outLim_min").get_to(c.pidInfo.outLim.min);
98 p.at("outLim_max").get_to(c.pidInfo.outLim.max);
99 p.at("slewNeg").get_to(c.pidInfo.slewNeg);
100 p.at("slewPos").get_to(c.pidInfo.slewPos);
101
Josh Lehanc612c052022-12-12 09:56:47 -0800102 // Unlike other coefficients, treat derivativeCoeff as an optional
103 // parameter, as support for it is fairly new, to avoid breaking
104 // existing configurations in the field that predate it.
Hank Liou375f7092019-03-29 20:15:42 +0800105 c.pidInfo.positiveHysteresis = positiveHysteresisValue;
106 c.pidInfo.negativeHysteresis = negativeHysteresisValue;
Josh Lehanc612c052022-12-12 09:56:47 -0800107 c.pidInfo.derivativeCoeff = derivativeCoeffValue;
Patrick Ventured1491722019-02-08 14:37:45 -0800108 }
109 else
110 {
Hank Liou375f7092019-03-29 20:15:42 +0800111 p.at("samplePeriod").get_to(c.stepwiseInfo.ts);
112 p.at("isCeiling").get_to(c.stepwiseInfo.isCeiling);
113
114 for (size_t i = 0; i < ec::maxStepwisePoints; i++)
115 {
116 c.stepwiseInfo.reading[i] =
117 std::numeric_limits<double>::quiet_NaN();
118 c.stepwiseInfo.output[i] = std::numeric_limits<double>::quiet_NaN();
119 }
120
121 auto reading = p.find("reading");
122 if (reading != p.end())
123 {
124 auto r = p.at("reading");
125 for (size_t i = 0; i < ec::maxStepwisePoints; i++)
126 {
127 auto n = r.find(std::to_string(i));
128 if (n != r.end())
129 {
130 r.at(std::to_string(i)).get_to(c.stepwiseInfo.reading[i]);
131 }
132 }
133 }
134
135 auto output = p.find("output");
136 if (output != p.end())
137 {
138 auto o = p.at("output");
139 for (size_t i = 0; i < ec::maxStepwisePoints; i++)
140 {
141 auto n = o.find(std::to_string(i));
142 if (n != o.end())
143 {
144 o.at(std::to_string(i)).get_to(c.stepwiseInfo.output[i]);
145 }
146 }
147 }
148
149 c.stepwiseInfo.positiveHysteresis = positiveHysteresisValue;
150 c.stepwiseInfo.negativeHysteresis = negativeHysteresisValue;
Patrick Ventured1491722019-02-08 14:37:45 -0800151 }
152}
Josh Lehan31058fd2023-01-13 11:06:16 -0800153
James Feistf81f2882019-02-26 11:26:36 -0800154} // namespace conf
Patrick Ventured1491722019-02-08 14:37:45 -0800155
Harvey Wu239aa7d2022-11-18 08:43:34 +0800156inline void getCycleTimeSetting(const auto& zone, const int id,
157 const std::string& attributeName,
158 uint64_t& value)
159{
160 auto findAttributeName = zone.find(attributeName);
161 if (findAttributeName != zone.end())
162 {
163 uint64_t tmpAttributeValue = 0;
164 findAttributeName->get_to(tmpAttributeValue);
165 if (tmpAttributeValue >= 1)
166 {
167 value = tmpAttributeValue;
168 }
169 else
170 {
171 std::cerr << "Zone " << id << ": " << attributeName
172 << " is invalid. Use default " << value << " ms\n";
173 }
174 }
175 else
176 {
177 std::cerr << "Zone " << id << ": " << attributeName
178 << " cannot find setting. Use default " << value << " ms\n";
179 }
180}
181
Patrick Venture1df9e872020-10-08 15:35:01 -0700182std::pair<std::map<int64_t, conf::PIDConf>, std::map<int64_t, conf::ZoneConfig>>
Patrick Ventured1491722019-02-08 14:37:45 -0800183 buildPIDsFromJson(const json& data)
184{
185 // zone -> pids
James Feistf81f2882019-02-26 11:26:36 -0800186 std::map<int64_t, conf::PIDConf> pidConfig;
Patrick Ventured1491722019-02-08 14:37:45 -0800187 // zone -> configs
Patrick Venture1df9e872020-10-08 15:35:01 -0700188 std::map<int64_t, conf::ZoneConfig> zoneConfig;
Patrick Ventured1491722019-02-08 14:37:45 -0800189
190 /* TODO: if zones is empty, that's invalid. */
191 auto zones = data["zones"];
192 for (const auto& zone : zones)
193 {
194 int64_t id;
James Feistf81f2882019-02-26 11:26:36 -0800195 conf::PIDConf thisZone;
Patrick Venture1df9e872020-10-08 15:35:01 -0700196 conf::ZoneConfig thisZoneConfig;
Patrick Ventured1491722019-02-08 14:37:45 -0800197
198 /* TODO: using at() throws a specific exception we can catch */
199 id = zone["id"];
James Feist3484bed2019-02-25 13:28:18 -0800200 thisZoneConfig.minThermalOutput = zone["minThermalOutput"];
Patrick Ventured1491722019-02-08 14:37:45 -0800201 thisZoneConfig.failsafePercent = zone["failsafePercent"];
202
Harvey Wu239aa7d2022-11-18 08:43:34 +0800203 getCycleTimeSetting(zone, id, "cycleIntervalTimeMS",
204 thisZoneConfig.cycleTime.cycleIntervalTimeMS);
205 getCycleTimeSetting(zone, id, "updateThermalsTimeMS",
206 thisZoneConfig.cycleTime.updateThermalsTimeMS);
Bonnie Lo0e8fc392022-10-05 10:20:55 +0800207
Patrick Ventured1491722019-02-08 14:37:45 -0800208 auto pids = zone["pids"];
209 for (const auto& pid : pids)
210 {
211 auto name = pid["name"];
James Feistf81f2882019-02-26 11:26:36 -0800212 auto item = pid.get<conf::ControllerInfo>();
Patrick Ventured1491722019-02-08 14:37:45 -0800213
ykchiu7c6d35d2023-05-10 17:01:46 +0800214 if (thisZone.find(name) != thisZone.end())
215 {
216 std::cerr << "Warning: zone " << id
217 << " have the same pid name " << name << std::endl;
218 }
219
Patrick Ventured1491722019-02-08 14:37:45 -0800220 thisZone[name] = item;
221 }
222
223 pidConfig[id] = thisZone;
224 zoneConfig[id] = thisZoneConfig;
225 }
226
227 return std::make_pair(pidConfig, zoneConfig);
228}
Patrick Venturea0764872020-08-08 07:48:43 -0700229
230} // namespace pid_control