Current load. Returns ------- load : float Current load demand.
(self)
| 105 | |
| 106 | @property |
| 107 | def current_load(self): |
| 108 | """ |
| 109 | Current load. |
| 110 | |
| 111 | Returns |
| 112 | ------- |
| 113 | load : float |
| 114 | Current load demand. |
| 115 | |
| 116 | """ |
| 117 | return -1 * self._time_series[self._current_step].item() |
| 118 | |
| 119 | @property |
| 120 | def is_sink(self): |