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 "thermalcontroller.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 18 | |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 19 | #include "errors/exception.hpp" |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 20 | #include "util.hpp" |
| 21 | #include "zone.hpp" |
| 22 | |
Patrick Venture | e94bdc4 | 2018-11-15 18:41:21 -0800 | [diff] [blame] | 23 | #include <algorithm> |
| 24 | |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame^] | 25 | namespace pid_control |
| 26 | { |
| 27 | |
Patrick Venture | e94bdc4 | 2018-11-15 18:41:21 -0800 | [diff] [blame] | 28 | ThermalType getThermalType(const std::string& typeString) |
| 29 | { |
| 30 | /* Currently it only supports the two types. */ |
| 31 | return (typeString == "temp") ? ThermalType::absolute : ThermalType::margin; |
| 32 | } |
| 33 | |
| 34 | bool isThermalType(const std::string& typeString) |
| 35 | { |
| 36 | static const std::vector<std::string> thermalTypes = {"temp", "margin"}; |
| 37 | return std::count(thermalTypes.begin(), thermalTypes.end(), typeString); |
| 38 | } |
| 39 | |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 40 | std::unique_ptr<PIDController> ThermalController::createThermalPid( |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 41 | ZoneInterface* owner, const std::string& id, |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 42 | const std::vector<std::string>& inputs, double setpoint, |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 43 | const ec::pidinfo& initial, const ThermalType& type) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 44 | { |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 45 | // ThermalController requires at least 1 input |
| 46 | if (inputs.empty()) |
Patrick Venture | 3349ef2 | 2018-06-12 14:09:29 -0700 | [diff] [blame] | 47 | { |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 48 | throw ControllerBuildException("Thermal controller missing inputs"); |
Patrick Venture | 3349ef2 | 2018-06-12 14:09:29 -0700 | [diff] [blame] | 49 | return nullptr; |
| 50 | } |
| 51 | |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 52 | auto thermal = std::make_unique<ThermalController>(id, inputs, type, owner); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 53 | |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 54 | ec::pid_info_t* info = thermal->getPIDInfo(); |
| 55 | thermal->setSetpoint(setpoint); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 56 | |
Patrick Venture | 7af157b | 2018-10-30 11:24:40 -0700 | [diff] [blame] | 57 | initializePIDStruct(info, initial); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 58 | |
| 59 | return thermal; |
| 60 | } |
| 61 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 62 | // bmc_host_sensor_value_double |
| 63 | double ThermalController::inputProc(void) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 64 | { |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 65 | double value; |
| 66 | const double& (*compare)(const double&, const double&); |
| 67 | if (type == ThermalType::margin) |
| 68 | { |
| 69 | value = std::numeric_limits<double>::max(); |
| 70 | compare = std::min<double>; |
| 71 | } |
| 72 | else |
| 73 | { |
| 74 | value = std::numeric_limits<double>::lowest(); |
| 75 | compare = std::max<double>; |
| 76 | } |
| 77 | |
| 78 | for (const auto& in : _inputs) |
| 79 | { |
| 80 | value = compare(value, _owner->getCachedValue(in)); |
| 81 | } |
| 82 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 83 | return value; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | // bmc_get_setpt |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 87 | double ThermalController::setptProc(void) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 88 | { |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 89 | double setpoint = getSetpoint(); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 90 | |
| 91 | /* TODO(venture): Thermal setpoint invalid? */ |
| 92 | #if 0 |
| 93 | if (-1 == setpoint) |
| 94 | { |
| 95 | return 0.0f; |
| 96 | } |
| 97 | else |
| 98 | { |
| 99 | return setpoint; |
| 100 | } |
| 101 | #endif |
| 102 | return setpoint; |
| 103 | } |
| 104 | |
| 105 | // bmc_set_pid_output |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 106 | void ThermalController::outputProc(double value) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 107 | { |
Patrick Venture | 9bbf333 | 2019-07-16 10:50:37 -0700 | [diff] [blame] | 108 | _owner->addSetPoint(value); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 109 | |
| 110 | return; |
| 111 | } |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame^] | 112 | |
| 113 | } // namespace pid_control |