(self, state, x)
| 103 | class CoolingSetPoint(EnergyPlusPlugin): |
| 104 | |
| 105 | def actuate(self, state, x): |
| 106 | self.api.exchange.set_actuator_value(state, self.data["actuator_cooling"], x) |
| 107 | |
| 108 | def on_begin_timestep_before_predictor(self, state) -> int: |
| 109 | if "handles_done" not in self.data: |
no test coverage detected