Skip to content

Commit

Permalink
Add: set_shedding method to support load/generator shedding
Browse files Browse the repository at this point in the history
Signed-off-by: Xavier Weiss <xavierw@kth.se>
  • Loading branch information
DEUCE1957 committed Nov 4, 2024
1 parent 535a65b commit ea13131
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lightsim2grid/lightSimBackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1331,12 +1331,16 @@ def runpf(self, is_dc : bool=False) -> Tuple[bool, Union[Exception, None]]:
disco = (~np.isfinite(self.load_v)) | (self.load_v <= 0.)
load_disco = np.where(disco)[0]
self._timer_postproc += time.perf_counter() - beg_postroc
raise BackendError(f"At least one load is disconnected (check loads {load_disco})")
# Support load shedding (Grid2op 1.11.0)
if not self.allow_shedding if hasattr(self, "allow_shedding") else True:
raise BackendError(f"At least one load is disconnected (check loads {load_disco})")
if self._stop_if_gen_disco and ((~np.isfinite(self.prod_v)).any() or (self.prod_v <= 0.).any()):
disco = (~np.isfinite(self.prod_v)) | (self.prod_v <= 0.)
gen_disco = np.where(disco)[0]
self._timer_postproc += time.perf_counter() - beg_postroc
raise BackendError(f"At least one generator is disconnected (check gen {gen_disco})")
# Support generator shedding (Grid2op 1.11.0)
if not self.allow_shedding if hasattr(self, "allow_shedding") else True:
raise BackendError(f"At least one generator is disconnected (check gen {gen_disco})")
# TODO storage case of divergence !

if type(self).shunts_data_available:
Expand Down Expand Up @@ -1607,6 +1611,10 @@ def _disconnect_line(self, id_):

def get_current_solver_type(self) -> SolverType:
return self.__current_solver_type

def set_shedding(self, allow_shedding:bool=False):
# Support load / generator shedding (selected by user when initializing environment)
self.allow_shedding = allow_shedding

def reset(self,
path : Union[os.PathLike, str],
Expand Down

0 comments on commit ea13131

Please sign in to comment.