You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compile an initial NumericalCircuit instance nc with compile_numerical_circuit_at().
Modify nc to include contingencies through nc.set_con_or_ra_status().
Pass the nc to each master problem (MP) and subproblem (SP), instead of grid. Get inspiration from ac_opf_new.py.
For each MP and SP, split the circuit into inslands with nc.split_into_islands().
If a given island has no slack bus, i.e. len(island.vd) is not greater than 0, discard it. Check how it is done in power_flow_worker.py L841 and replicate it for the SCOPF.
The text was updated successfully, but these errors were encountered:
The workflow is:
nc
withcompile_numerical_circuit_at()
.nc
to include contingencies throughnc.set_con_or_ra_status()
.nc
to each master problem (MP) and subproblem (SP), instead ofgrid
. Get inspiration fromac_opf_new.py
.nc.split_into_islands()
.len(island.vd)
is not greater than 0, discard it. Check how it is done inpower_flow_worker.py
L841 and replicate it for the SCOPF.The text was updated successfully, but these errors were encountered: