(self, state, x)
| 59 | class HeatingSetPoint(EnergyPlusPlugin): |
| 60 | |
| 61 | def actuate(self, state, x): |
| 62 | self.api.exchange.set_actuator_value(state, self.data["actuator_heating"], x) |
| 63 | |
| 64 | def on_begin_zone_timestep_before_set_current_weather(self, state) -> int: |
| 65 | if self.api.exchange.warmup_flag(state): |
no test coverage detected