| 160 | } |
| 161 | |
| 162 | bool LoadProfilePlant_Impl::addToNode(Node& node) { |
| 163 | if (auto plant = node.plantLoop()) { |
| 164 | if (plant->demandComponent(node.handle())) { |
| 165 | return StraightComponent_Impl::addToNode(node); |
| 166 | } |
| 167 | } |
| 168 | return false; |
| 169 | } |
| 170 | |
| 171 | std::vector<EMSActuatorNames> LoadProfilePlant_Impl::emsActuatorNames() const { |
| 172 | std::vector<EMSActuatorNames> actuators{{"Plant Load Profile", "Mass Flow Rate"}, {"Plant Load Profile", "Power"}}; |
nothing calls this directly
no test coverage detected