James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel Corporation |
| 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 "stepwisecontroller.hpp" |
| 18 | |
| 19 | #include "ec/stepwise.hpp" |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 20 | #include "errors/exception.hpp" |
Bonnie Lo | c51ba91 | 2022-10-12 14:07:22 +0800 | [diff] [blame] | 21 | #include "tuning.hpp" |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 22 | #include "util.hpp" |
| 23 | #include "zone.hpp" |
| 24 | |
| 25 | #include <algorithm> |
| 26 | #include <chrono> |
James Feist | 3dfaafd | 2018-09-20 15:46:58 -0700 | [diff] [blame] | 27 | #include <cmath> |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 28 | #include <iostream> |
| 29 | #include <map> |
| 30 | #include <memory> |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 31 | #include <vector> |
| 32 | |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 33 | namespace pid_control |
| 34 | { |
| 35 | |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 36 | void StepwiseController::process(void) |
| 37 | { |
| 38 | // Get input value |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 39 | double input = inputProc(); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 40 | |
Patrick Venture | eb42820 | 2020-08-18 09:50:46 -0700 | [diff] [blame] | 41 | ec::StepwiseInfo info = getStepwiseInfo(); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 42 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 43 | double output = lastOutput; |
James Feist | 3dfaafd | 2018-09-20 15:46:58 -0700 | [diff] [blame] | 44 | |
| 45 | // Calculate new output if hysteresis allows |
| 46 | if (std::isnan(output)) |
| 47 | { |
| 48 | output = ec::stepwise(info, input); |
| 49 | lastInput = input; |
| 50 | } |
| 51 | else if ((input - lastInput) > info.positiveHysteresis) |
| 52 | { |
| 53 | output = ec::stepwise(info, input); |
| 54 | lastInput = input; |
| 55 | } |
| 56 | else if ((lastInput - input) > info.negativeHysteresis) |
| 57 | { |
| 58 | output = ec::stepwise(info, input); |
| 59 | lastInput = input; |
| 60 | } |
| 61 | |
| 62 | lastOutput = output; |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 63 | // Output new value |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 64 | outputProc(output); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 65 | |
| 66 | return; |
| 67 | } |
| 68 | |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 69 | std::unique_ptr<Controller> StepwiseController::createStepwiseController( |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 70 | ZoneInterface* owner, const std::string& id, |
| 71 | const std::vector<std::string>& inputs, const ec::StepwiseInfo& initial) |
| 72 | { |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 73 | // StepwiseController requires at least 1 input |
| 74 | if (inputs.empty()) |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 75 | { |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 76 | throw ControllerBuildException("Stepwise controller missing inputs"); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | auto thermal = std::make_unique<StepwiseController>(id, inputs, owner); |
Patrick Venture | a5cf208 | 2020-08-13 09:38:17 -0700 | [diff] [blame] | 80 | thermal->setStepwiseInfo(initial); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 81 | |
| 82 | return thermal; |
| 83 | } |
| 84 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 85 | double StepwiseController::inputProc(void) |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 86 | { |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 87 | double value = std::numeric_limits<double>::lowest(); |
| 88 | for (const auto& in : _inputs) |
| 89 | { |
| 90 | value = std::max(value, _owner->getCachedValue(in)); |
| 91 | } |
Bonnie Lo | c51ba91 | 2022-10-12 14:07:22 +0800 | [diff] [blame] | 92 | |
| 93 | if (debugEnabled) |
| 94 | { |
| 95 | std::cerr << getID() |
| 96 | << " choose the maximum temperature value: " << value << "\n"; |
| 97 | } |
| 98 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 99 | return value; |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 102 | void StepwiseController::outputProc(double value) |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 103 | { |
Patrick Venture | eb42820 | 2020-08-18 09:50:46 -0700 | [diff] [blame] | 104 | if (getStepwiseInfo().isCeiling) |
James Feist | 608304d | 2019-02-25 10:01:42 -0800 | [diff] [blame] | 105 | { |
| 106 | _owner->addRPMCeiling(value); |
| 107 | } |
| 108 | else |
| 109 | { |
Nirav Shah | ccc8bb6 | 2022-02-17 21:06:51 -0800 | [diff] [blame] | 110 | _owner->addSetPoint(value, _id); |
Bonnie Lo | c51ba91 | 2022-10-12 14:07:22 +0800 | [diff] [blame] | 111 | if (debugEnabled) |
| 112 | { |
| 113 | std::cerr << getID() << " stepwise output pwm: " << value << "\n"; |
| 114 | } |
James Feist | 608304d | 2019-02-25 10:01:42 -0800 | [diff] [blame] | 115 | } |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 116 | return; |
| 117 | } |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 118 | |
| 119 | } // namespace pid_control |