@@ -158,6 +158,13 @@ Native multi agents support:
158158- [FIXED] an issue in the AAA tests: when backend does not support storages, some tests were skipped not correctly
159159- [FIXED] an issue when computing the cascading failure routine, in case multiple iterations were performed,
160160 the cooldowns were not updated correctly.
161+ - [FIXED] cascading failure could be started at the first observation (t=0, just after a reset).
162+ - [FIXED] a bug when "SOFT_OVERFLOW_THRESHOLD" was not 1.: it also impacted "instantaneous overcurrent protections"
163+ (it was triggered when `flow > SOFT_OVERFLOW_THRESHOLD * HARD_OVERFLOW_THRESHOLD * th_lim `)
164+ - [FIXED] a bug when "SOFT_OVERFLOW_THRESHOLD" was not 1.: the backend routine to compute the protections
165+ disconnected the lines with a counter based on `flow > th_lim ` and not `flow > th_lim * SOFT_OVERFLOW_THRESHOLD `
166+ - [ADDED] Possibility to disconnect loads, generators and storage units (if proper flag set in the environment).
167+ See documentation.
161168- [ADDED] possibility to set the "thermal limits" when calling `env.reset(..., options={"thermal limit": xxx}) `
162169- [ADDED] possibility to retrieve some structural information about elements with
163170 with `gridobj.get_line_info(...) `, `gridobj.get_load_info(...) `, `gridobj.get_gen_info(...) `
@@ -173,6 +180,10 @@ Native multi agents support:
173180- [ADDED] possibility to set the initial time stamp of the observation in the `env.reset `
174181 kwargs by using `env.reset(..., options={"init datetime": XXX}) `
175182- [ADDED] the `ChangeNothing ` time series class now supports forecast
183+ - [ADDED] test coverage on the CI
184+ - [ADDED] the `obs.timestep_protection_triggered ` counter which counts whether or not the
185+ "time overcurrent protection" (soft overflow) will be triggered: lines will be disconnected
186+ if `time overcurrent protection > parameters.NB_TIMESTEP_POWERFLOW_ALLOWED `
176187- [IMPROVED] possibility to set the injections values with names
177188 to be consistent with other way to set the actions (*eg * set_bus)
178189- [IMPROVED] error messages when creating an action which changes the injections
@@ -203,11 +214,9 @@ Native multi agents support:
203214 it... unless you know what you are doing)
204215- [IMPROVED] `ForecastEnv ` is now part of the public API.
205216- [IMPROVED] no need to call `self._compute_pos_big_top() ` at the end of the implementation of `backend.load_grid() `
206-
207- [1.10.5] - 2025-03-07
208- ------------------------
209- - [FIXED] force pandapower < 3 otherwise pandapower backend does not work and
210- lots of tests are failing.
217+ - [IMPROVED] type hints in various files.
218+ - [IMPROVED] documentation of the backend
219+ - [IMRPOVED] `SOFT_OVERFLOW_THRESHOLD ` can now be lower than 1
211220
212221[1.10.5] - 2025-03-07
213222------------------------
0 commit comments