From 109ebff31f66bb361432c29375a1fc178799b973 Mon Sep 17 00:00:00 2001 From: marota Date: Wed, 22 Jul 2026 19:35:56 +0000 Subject: [PATCH 1/3] Surface persistent pre-existing N overloads in the action card MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a monitored line is already overloaded in the N base case (before any contingency) and a remedial action neither influences nor clears it, the line stays red even for a correct action — which reads as the player's failure. compute_action_metrics already excludes such lines from lines_overloaded_after (via build_care_mask's pre_existing & not_impacted rule); now it also reports them as persistent_n_overloads. The action card shows an ℹ️ bubble ('N pre-existing N overload(s) persist — not caused by this contingency') with a tooltip listing the lines, so the player understands they aren't counted against solving the study. Signed-off-by: marota --- expert_backend/services/simulation_helpers.py | 19 ++++++++++ expert_backend/services/simulation_mixin.py | 1 + .../tests/test_simulation_helpers.py | 37 +++++++++++++++++++ frontend/src/components/ActionCard.test.tsx | 14 +++++++ frontend/src/components/ActionCard.tsx | 9 +++++ frontend/src/types.ts | 14 +++++++ 6 files changed, 94 insertions(+) diff --git a/expert_backend/services/simulation_helpers.py b/expert_backend/services/simulation_helpers.py index 94d11d5b..12edfa42 100644 --- a/expert_backend/services/simulation_helpers.py +++ b/expert_backend/services/simulation_helpers.py @@ -629,6 +629,25 @@ def compute_action_metrics( except Exception as e: logger.warning("compute_action_metrics: max_rho / overload calc failed: %s", e) + # Persistent N-state overloads: monitored lines already overloaded in the N + # base case that this action did NOT influence (excluded from the care mask + # by build_care_mask's ``pre_existing & not_impacted`` rule) and that remain + # overloaded after it. These are pre-existing constraints the contingency + # didn't cause and the remedial action can't be expected to clear — surfaced + # so the UI can explain a line staying red that the player cannot act on. + result["persistent_n_overloads"] = [] + try: + wt = float(worsening_threshold) + in_scope = np.isin(action_names, list(lines_we_care_about)) & np.isin( + action_names, list(branches_with_limits) + ) + pre_existing = base_rho >= 1.0 + not_impacted = (action_rho >= base_rho * (1 - wt)) & (action_rho <= base_rho * (1 + wt)) + persistent = in_scope & pre_existing & not_impacted & (action_rho >= 1.0) + result["persistent_n_overloads"] = action_names[persistent].tolist() + except Exception as e: + logger.debug("compute_action_metrics: persistent N-overload calc failed: %s", e) + return result diff --git a/expert_backend/services/simulation_mixin.py b/expert_backend/services/simulation_mixin.py index 1880c252..3b677696 100644 --- a/expert_backend/services/simulation_mixin.py +++ b/expert_backend/services/simulation_mixin.py @@ -343,6 +343,7 @@ def simulate_manual_action( "n_components": metrics["n_components_after"], "non_convergence": non_convergence, "lines_overloaded_after": sanitize_for_json(metrics["lines_overloaded_after"]), + "persistent_n_overloads": sanitize_for_json(metrics.get("persistent_n_overloads", [])), "half_open_overloads": sanitize_for_json(half_open_overloads), "is_estimated": False, } diff --git a/expert_backend/tests/test_simulation_helpers.py b/expert_backend/tests/test_simulation_helpers.py index 1d104ab1..6c3b8f20 100644 --- a/expert_backend/tests/test_simulation_helpers.py +++ b/expert_backend/tests/test_simulation_helpers.py @@ -509,6 +509,43 @@ def test_islanding_below_mw_threshold_is_filtered(self): # The bare topology counter is still surfaced for diagnostics. assert metrics["n_components_after"] == 2 + def test_persistent_n_overloads_reports_uninfluenced_preexisting(self): + """A line already overloaded in the N base case that the action does not + influence and that stays overloaded is reported in persistent_n_overloads + (and excluded from lines_overloaded_after).""" + metrics = compute_action_metrics( + obs=self._obs([0.5, 1.3, 0.5]), # L2 pre-existing overload in N + obs_simu_defaut=self._obs([1.2, 1.3, 0.5]), # contingency overloads L1 + obs_simu_action=self._obs([0.8, 1.3, 0.5]), # action clears L1, L2 untouched + info_action={"exception": None}, + lines_overloaded_ids=[0], # L1 is the influenced overload + lines_we_care_about={"L1", "L2", "L3"}, + branches_with_limits={"L1", "L2", "L3"}, + monitoring_factor=0.95, + worsening_threshold=0.02, + ) + assert metrics["persistent_n_overloads"] == ["L2"] + assert "L2" not in metrics["lines_overloaded_after"] # not the player's fault + assert metrics["lines_overloaded_after"] == [] # influenced overload cleared + + def test_persistent_n_overloads_empty_when_preexisting_is_influenced(self): + """If the action MOVES the pre-existing line beyond the worsening band it + is 'influenced' — it belongs to lines_overloaded_after, not the persistent + (uninfluenced) bucket.""" + metrics = compute_action_metrics( + obs=self._obs([0.5, 1.3, 0.5]), + obs_simu_defaut=self._obs([1.2, 1.3, 0.5]), + obs_simu_action=self._obs([0.8, 1.6, 0.5]), # action pushed L2 up >2% (influenced) + info_action={"exception": None}, + lines_overloaded_ids=[0], + lines_we_care_about={"L1", "L2", "L3"}, + branches_with_limits={"L1", "L2", "L3"}, + monitoring_factor=0.95, + worsening_threshold=0.02, + ) + assert metrics["persistent_n_overloads"] == [] + assert "L2" in metrics["lines_overloaded_after"] + def test_rho_reduction_detected(self): metrics = compute_action_metrics( obs=self._obs([0.5, 0.5, 0.5]), diff --git a/frontend/src/components/ActionCard.test.tsx b/frontend/src/components/ActionCard.test.tsx index 6aab2d26..9cf8d8d6 100644 --- a/frontend/src/components/ActionCard.test.tsx +++ b/frontend/src/components/ActionCard.test.tsx @@ -111,6 +111,20 @@ describe('ActionCard', () => { expect(screen.getByText(/12\.5 MW disconnected/)).toBeInTheDocument(); }); + it('surfaces persistent pre-existing N overloads with an explanatory bubble', () => { + const details = { ...baseDetails, persistent_n_overloads: ['DARSEL61RASSU', 'FESSEL61VOGEL'] }; + render(); + const bubble = screen.getByTestId('action-card-act_1-persistent-n'); + expect(bubble).toBeInTheDocument(); + expect(bubble).toHaveTextContent(/2 pre-existing N overloads persist/); + expect(bubble.getAttribute('title')).toContain('DARSEL61RASSU'); + }); + + it('omits the persistent-N bubble when there are none', () => { + render(); + expect(screen.queryByTestId('action-card-act_1-persistent-n')).not.toBeInTheDocument(); + }); + it('marks the card with data-viewing="true" when isViewing is true', () => { // The viewing-state signal is now a higher-saturation left-edge // accent stripe + a `data-viewing` attribute on the card root, diff --git a/frontend/src/components/ActionCard.tsx b/frontend/src/components/ActionCard.tsx index a96afd11..7dd42902 100644 --- a/frontend/src/components/ActionCard.tsx +++ b/frontend/src/components/ActionCard.tsx @@ -375,6 +375,15 @@ const ActionCard: React.FC = ({ 🏝️ Islanding detected ({details.disconnected_mw?.toFixed(1)} MW disconnected) )} + {details.persistent_n_overloads && details.persistent_n_overloads.length > 0 && ( +
+ ℹ️ {details.persistent_n_overloads.length} pre-existing N overload{details.persistent_n_overloads.length > 1 ? 's' : ''} persist (not caused by this contingency) +
+ )} {/* Progressive disclosure: description, parameter editors, and per-line "Loading after" only render on the viewing diff --git a/frontend/src/types.ts b/frontend/src/types.ts index d53ab19d..daaed59d 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -108,6 +108,13 @@ export interface ActionDetail { non_convergence?: string | null; action_topology?: ActionTopology; lines_overloaded_after?: string[]; + /** + * Monitored lines already overloaded in the N base case that this action did + * not influence and that stay overloaded after it — pre-existing constraints + * the contingency didn't cause and a remedial action can't be expected to + * clear. Surfaced so the UI can explain a line staying red the player can't act on. + */ + persistent_n_overloads?: string[]; /** * ``{line_name: live_end_reactive_mvar}`` for still-"overloaded" lines the * action leaves open at ONE end with a loading above ~1 %. Such a line is @@ -501,6 +508,13 @@ export interface SavedActionEntry { non_convergence?: string | null; action_topology?: ActionTopology; lines_overloaded_after?: string[]; + /** + * Monitored lines already overloaded in the N base case that this action did + * not influence and that stay overloaded after it — pre-existing constraints + * the contingency didn't cause and a remedial action can't be expected to + * clear. Surfaced so the UI can explain a line staying red the player can't act on. + */ + persistent_n_overloads?: string[]; /** * ``{line_name: live_end_reactive_mvar}`` for still-"overloaded" lines the * action leaves open at ONE end with a loading above ~1 %. Such a line is From 7fa4666376dc7a54d3b412f84274fc88c908bd16 Mon Sep 17 00:00:00 2001 From: marota Date: Wed, 22 Jul 2026 22:32:09 +0000 Subject: [PATCH 2/3] Re-grade THT game difficulty with real, islanding-aware simulation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The difficulty labels came from a grader that (1) never checked islanding — so a combination that islanded the overloaded line to ~0.995 was scored as 'resolved' (medium) when the app shows it still at 115% + 269 MW disconnected — and (2) excluded ALL pre-existing N overloads from the max, even ones the contingency worsened. Re-grade every candidate with the app's own compute_action_metrics (is_islanded + lines_overloaded_after via the care-mask), so the label matches what the player sees: a case is EASY/MEDIUM only if a unitary/first-combination TRULY resolves (all influenced overloads <95% monitoring, no islanding); pre-existing overloads not caused by the contingency are ignored (and surfaced separately in the action card). Also drop unplayable cases: hard scenarios where no non-islanding action or pair brings the worst monitored line below 120% (e.g. ROGNAL61SSCHA, stuck at 153% behind a pre-existing 169% overload) are removed. Net: 647 scenarios (was 656) — easy 457 / medium 80 / hard 110 — with many individual cases corrected in both directions (bad 'resolvers' demoted; cases wrongly kept hard by the old pre-existing handling promoted). Regenerates scenarios.json, per-grid graded_contingencies.json and the frontend rte7000Scenarios.json; the IIDM-1.14 networks are untouched. Signed-off-by: marota --- .../grid_437818d6/graded_contingencies.json | 1674 +- .../grid_5384e039/graded_contingencies.json | 2189 ++- .../grid_5fc376c7/graded_contingencies.json | 4280 +++-- .../grid_e4e81e29/graded_contingencies.json | 4785 ++++-- data/rte7000_tht/scenarios.json | 12947 ++++++++++------ frontend/src/game/rte7000Presets.test.ts | 10 +- frontend/src/game/rte7000Scenarios.json | 2431 ++- scripts/game_mode/test_rte7000_game_mode.py | 2 +- 8 files changed, 17764 insertions(+), 10554 deletions(-) diff --git a/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json b/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json index 4cd05a9c..3524f827 100644 --- a/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json @@ -3,6 +3,7 @@ "period_title": "March — Monday morning", "monitoring_factor": 0.95, "threshold_pct": 95.0, + "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_437818d6_a71150", @@ -21,18 +22,23 @@ "MALGOL61PASSY" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.0, "solution": { "kind": "unitary", "actions": [ "node_merging_GEN.PP6", - "open_coupler_MALGOP6", - "load_shedding_PASSYY631" + "load_shedding_PASSYY631", + "load_shedding_PASSYY632" ], "best": { + "max_rho": 0.7, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_GEN.PP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "family": "node_merging" } } }, @@ -53,25 +59,30 @@ "PLAISL61ROMAI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PLAISP6", - "open_coupler_PLAISP6_1", - "disco_PLAISL62ZAVR5" + "disco_PLAISL61ROMAI", + "open_coupler_ROMAIP6", + "open_coupler_VLEVAP6" ], "best": { - "id": "open_coupler_PLAISP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PLAISL61ROMAI", + "family": "line_disconnection" } } }, { "id": "s_437818d6_6d341c", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — ALOUEL61PLAIS", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -85,18 +96,23 @@ "PLAISL61ROMAI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_PLAISP6+load_shedding_ROMAIY631", - "open_coupler_PLAISP6+load_shedding_ROMAI6T611", - "load_shedding_ROMAIY631+disco_PLAISL61ZAVRO" + "disco_PLAISL61ROMAI", + "open_coupler_ROMAIP6", + "open_coupler_VLEVAP6" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "open_coupler_PLAISP6+load_shedding_ROMAIY631", - "est_max_rho": 0.925 + "resolves": true, + "id": "disco_PLAISL61ROMAI", + "family": "line_disconnection" } } }, @@ -117,18 +133,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 77.6, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "open_coupler_P.JERP6_1", - "disco_P.JERL61ROUGE" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BARQUL61BOSCH" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.776, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -149,18 +170,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.8, "solution": { "kind": "unitary", "actions": [ - "disco_RQROUL61SSEST", - "disco_SSESTL61SSTUL", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_RQROUL61SSEST", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.848, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -181,18 +205,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "disco_BARNAL71VAUPA", - "disco_BARNAL72VAUPA" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BOSCHL61ROUGE" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.712, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -213,18 +242,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.8, "solution": { "kind": "unitary", "actions": [ - "disco_RQROUL61SSEST", - "disco_SSESTL61SSTUL", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_RQROUL61SSEST", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.848, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -245,18 +277,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -277,18 +314,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -309,18 +351,23 @@ "LINGOL61T.VIC" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_LINGOL61T.VIC", "load_shedding_T.VICY633", - "load_shedding_T.VICY632", - "load_shedding_T.VICY631" + "load_shedding_T.VICY632" ], "best": { - "id": "load_shedding_T.VICY633", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_LINGOL61T.VIC", + "family": "line_disconnection" } } }, @@ -341,25 +388,30 @@ "LINGOL61T.VIC" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_LINGOL61T.VIC", "load_shedding_T.VICY633", - "load_shedding_T.VICY632", - "load_shedding_T.VICY631" + "load_shedding_T.VICY632" ], "best": { - "id": "load_shedding_T.VICY633", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_LINGOL61T.VIC", + "family": "line_disconnection" } } }, { "id": "s_437818d6_ce6f13", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — BARNAL71ROUGE", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -373,25 +425,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.7, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "disco_BARNAL72VAUPA+load_shedding_P.JERY641", - "disco_BARNAL72VAUPA+load_shedding_P.JERY649", - "open_coupler_P.JERP6+disco_BARNAL72VAUPA" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "disco_BARNAL72VAUPA+load_shedding_P.JERY641", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_a4b31e", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — BARNAL72ROUGE", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -405,18 +460,21 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.6, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "disco_BARNAL71VAUPA+load_shedding_P.JERY641", - "disco_BARNAL71VAUPA+load_shedding_P.JERY649", - "open_coupler_P.JERP6+disco_BARNAL71VAUPA" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.936, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "disco_BARNAL71VAUPA+load_shedding_P.JERY641", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -437,25 +495,30 @@ "BOCCAL61MOUGI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BIANCP6", - "disco_FREJUL61TRANS", - "load_shedding_MOUGIY633" + "disco_BOCCAL61MOUGI", + "disco_C.MERL61MOUGI", + "disco_C.MERL61LINGO" ], "best": { - "id": "open_coupler_BIANCP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOCCAL61MOUGI", + "family": "line_disconnection" } } }, { "id": "s_437818d6_84e485", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -470,17 +533,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.0, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.01, + "best_unitary": { + "max_rho": 1.069, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.01, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", + "est_max_rho": 0.925 } } }, @@ -501,18 +577,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_EGUZOL61ORANG", - "disco_DISTRL61MONDI", - "disco_MONDIL61ORANG" + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_EGUZOL61ORANG", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "family": "line_disconnection" } } }, @@ -533,18 +614,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RQROUY632", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.891, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -566,17 +650,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.041, "best_unitary": { + "max_rho": 1.047, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.JERY641", - "family": "load_shedding", - "max_rho": 1.102, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.041, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.096, + "resolves": false, + "rank": 1, "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", "est_max_rho": 1.041 } @@ -599,18 +694,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -631,25 +731,30 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, { "id": "s_437818d6_5d8720", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — CHOLEL61RECOU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -663,18 +768,21 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "load_shedding_SIRMIY646+load_shedding_SIRMIY645", - "disco_PREGUL61SAINT+load_shedding_SIRMIY646", - "disco_PREGUL61SAINT+load_shedding_SIRMIY645" + "open_coupler_BXLIEP6" ], "best": { + "max_rho": 0.839, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "load_shedding_SIRMIY646+load_shedding_SIRMIY645", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -695,18 +803,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 75.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MERLAP6", - "open_coupler_CHEV5P6", - "disco_BXLIEL61FARRA" + "open_coupler_BXLIEP6", + "disco_BXLIEL61FARRA", + "load_shedding_SIRMIY646" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.757, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -727,18 +840,23 @@ "CIROLL62LOGES" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LOGESP6", - "disco_LIERSL61LOGES", - "disco_LIERSL61ZLIN7" + "disco_CIROLL62LOGES", + "load_shedding_LOGESY641", + "load_shedding_LOGESY642" ], "best": { - "id": "open_coupler_LOGESP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL62LOGES", + "family": "line_disconnection" } } }, @@ -759,18 +877,23 @@ "CIROLL61LOGES" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_CIROLL61LOGES", "open_coupler_LOGESP6", - "disco_LIERSL61LOGES", - "disco_LIERSL61ZLIN7" + "load_shedding_LOGESY641" ], "best": { - "id": "open_coupler_LOGESP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL61LOGES", + "family": "line_disconnection" } } }, @@ -791,6 +914,7 @@ "CIROLL73VLEJU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -799,10 +923,14 @@ "disco_CIROLL72GATI5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CIROLL73VLEJU", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "family": "line_disconnection" } } }, @@ -823,18 +951,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.4, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "disco_BARNAL71VAUPA", - "disco_BARNAL72VAUPA" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BOSCHL61ROUGE" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.764, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -855,18 +988,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MERLAP6", + "open_coupler_BXLIEP6", "open_coupler_CHEV5P6", - "disco_PREGUL61SAINT" + "load_shedding_SIRMIY646" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.748, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -887,18 +1025,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_TRANSP6", "open_coupler_BOUTRP6", - "load_shedding_TRANSY633" + "disco_BIANCL61FREJU", + "open_coupler_TRANSP6" ], "best": { - "id": "open_coupler_TRANSP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.909, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BOUTRP6", + "family": "open_coupling" } } }, @@ -919,16 +1062,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.4, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.975, - "reducing": true + "max_rho": 0.894, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -949,24 +1097,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RQROUY632" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.891, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_6b287c", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — DARSEL61RASSU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -982,20 +1134,26 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 1.246, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "disco_BOUTRL61SSTUL+disco_E.BOTL61FAVAR", + "disco_BOUTRL61SSTUL+disco_BOUTRL61FAVAR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.127, - "id": "disco_BOUTRL61SSTUL+disco_CSLLEL61E.BOT", - "est_max_rho": 0.747 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "est_max_rho": 0.132 + }, + "solving_pair_rank": 1 } }, { @@ -1017,16 +1175,21 @@ "NIORTL61V.SEV" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.8, "solution": { "kind": "unitary", "actions": [ "open_coupler_CHEV5P6" ], "best": { + "max_rho": 0.938, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "family": "open_coupling" } } }, @@ -1047,18 +1210,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_BAYETL61MTVIC", - "load_shedding_ORANGY642", - "load_shedding_ORANGY641" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "disco_BAYETL61MTVIC", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -1079,18 +1247,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RQROUY632", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.892, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -1111,18 +1282,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RQROUY632", - "open_coupler_DARSEP6", - "disco_CTAURL61ZVILA" + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_RQROUY632", - "family": "load_shedding", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -1146,19 +1321,30 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 116.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.168, "best_unitary": { + "max_rho": 1.171, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.232, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.168, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.099, - "id": "open_coupler_FEUILP6+load_shedding_RASSUY631", - "est_max_rho": 1.171 + "resolves": false, + "rank": 1, + "id": "load_shedding_RASSUY631+redispatch_SSEST6GROUPE3", + "est_max_rho": 1.168 } } }, @@ -1181,17 +1367,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.986, "best_unitary": { + "max_rho": 0.986, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 1.038, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.98, + "islanded": true, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.031, + "resolves": false, + "rank": 1, "id": "open_coupler_CHEV5P6+load_shedding_P.JERY641", "est_max_rho": 0.98 } @@ -1214,18 +1411,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645", - "open_coupler_CHEV5P6" + "open_coupler_BXLIEP6", + "open_coupler_CHEV5P6", + "disco_PREGUL61SAINT" ], "best": { - "id": "load_shedding_SIRMIY646", - "family": "load_shedding", - "max_rho": 0.977, - "reducing": true + "max_rho": 0.746, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -1247,18 +1449,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 76.0, "solution": { "kind": "unitary", "actions": [ + "disco_VLEMAL61ZGLAC", "disco_NEMOUL61VLEMA", - "disco_TABARL61ZGLAC", - "disco_TABARL61ZGIEN" + "disco_TABARL61ZGLAC" ], "best": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.76, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -1279,18 +1486,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "reco_FLEACL61NIORT", - "disco_BXLIEL61FARRA", - "load_shedding_SIRMIY646" + "disco_BXLIEL61FARRA" ], "best": { - "id": "reco_FLEACL61NIORT", - "family": "line_reconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.796, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -1311,18 +1523,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 75.2, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "open_coupler_CHEV5P6", - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645" + "load_shedding_SIRMIY646" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.752, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -1343,18 +1560,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 75.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645", - "open_coupler_CHEV5P6" + "open_coupler_BXLIEP6", + "open_coupler_CHEV5P6", + "load_shedding_SIRMIY646" ], "best": { - "id": "load_shedding_SIRMIY646", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.752, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -1375,18 +1597,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ROBI5P6", "disco_HARC7L61ROBI5", + "open_coupler_ROBI5P6", "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -1407,18 +1634,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "disco_CTAURL61ZVILA", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.855, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -1439,18 +1669,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RASSUY631", - "disco_RQROUL61SSEST" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.851, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -1471,25 +1704,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RASSUY631", - "load_shedding_RQROUY632" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.856, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_d25bab", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — LAVERL61P.BOU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -1505,50 +1741,30 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 107.2, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_DARSEP6+disco_DURANL61REALT", - "open_coupler_DARSEP6+disco_DURANL61ROGNA" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.072, + "best_unitary": { + "max_rho": 1.072, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.979, - "id": "open_coupler_DARSEP6+disco_DURANL61REALT", - "est_max_rho": 0.93 - } - } - }, - { - "id": "s_437818d6_769a3f", - "gridId": "grid_437818d6", - "difficulty": "medium", - "title": "March — Monday morning", - "label": "March — Monday morning — LAVERL61PONTE", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "LAVERL61PONTE", - "contingencyLabel": "LAVERL61PONTE", - "baselineMaxLoadingPct": 125.1, - "nOverloadedLines": 2, - "overloadedLines": [ - "PONTEL61REALT", - "PONTEL62REALT" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SEPTEP6+disco_DURANL61REALT", - "disco_DURANL61REALT+open_coupler_MOTT5P6", - "open_coupler_SEPTEP6+open_coupler_MOTT5P6" - ], - "best": { + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.074, + "islanded": false, + "reduces": true, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.974, - "id": "open_coupler_SEPTEP6+disco_DURANL61REALT", - "est_max_rho": 1.201 + "resolves": false, + "rank": 3, + "id": "open_coupler_DARSEP6+disco_REALTL63SEPTE", + "est_max_rho": 0.978 } } }, @@ -1571,24 +1787,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "pair", "actions": [ "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "disco_ESCAIL61NEOUL+open_coupler_MOTT5P6" + "disco_ESCAIL61NEOUL+open_coupler_MOTT5P6", + "disco_CSLLEL61E.BOT+open_coupler_E.BOTP6" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, + "resolves": true, + "rank": 1, "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", "est_max_rho": 0.434 - } + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_c4860a", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — LINGOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -1605,20 +1829,26 @@ "T.VICL61ZMENT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 1.092, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "open_coupler_BOUTRP6+open_coupler_SSTULP6", + "open_coupler_SEPTEP6+open_coupler_PALUNP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.091, - "id": "open_coupler_BOUTRP6+open_coupler_SSTULP6", - "est_max_rho": 0.877 - } + "resolves": true, + "rank": 1, + "id": "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "est_max_rho": 0.58 + }, + "solving_pair_rank": 1 } }, { @@ -1638,18 +1868,23 @@ "SAUS5L61VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.1, "solution": { "kind": "unitary", "actions": [ - "node_merging_P.GASP6", "load_shedding_SAUS56T611", - "load_shedding_SAUS56T612" + "node_merging_P.GASP6", + "open_coupler_VLEVAP6" ], "best": { - "id": "node_merging_P.GASP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.701, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_SAUS56T611", + "family": "load_shedding" } } }, @@ -1670,18 +1905,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 57.2, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_ARDOIP6" + "open_coupler_MOTT5P6" ], "best": { + "max_rho": 0.572, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "family": "load_shedding" } } }, @@ -1702,17 +1942,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.9, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.599, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "family": "load_shedding" } } }, @@ -1733,18 +1979,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.0, "solution": { "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2", - "open_coupler_BOUTRP6", - "open_coupler_TRANSP6" + "disco_BIANCL61FREJU", + "open_coupler_TRANSP6", + "open_coupler_BOUTRP6" ], "best": { - "id": "pst_tap_BOUTRL61BOUTD_inc2", - "family": "pst", - "max_rho": 0.975, - "reducing": true + "max_rho": 0.9, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BIANCL61FREJU", + "family": "line_disconnection" } } }, @@ -1765,18 +2016,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.0, "solution": { "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2", - "open_coupler_BOUTRP6", - "open_coupler_TRANSP6" + "disco_BIANCL61FREJU", + "open_coupler_TRANSP6", + "open_coupler_BOUTRP6" ], "best": { - "id": "pst_tap_BOUTRL61BOUTD_inc2", - "family": "pst", - "max_rho": 0.975, - "reducing": true + "max_rho": 0.9, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BIANCL61FREJU", + "family": "line_disconnection" } } }, @@ -1797,18 +2053,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.0, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "disco_BXLIEL61FARRA", - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645" + "load_shedding_SIRMIY646" ], "best": { - "id": "disco_BXLIEL61FARRA", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.79, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -1829,25 +2090,30 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "reco_FLEACL61NIORT", - "disco_BXLIEL61FARRA", - "load_shedding_SIRMIY646" + "disco_BXLIEL61FARRA" ], "best": { - "id": "reco_FLEACL61NIORT", - "family": "line_reconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.796, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_29a9b4", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -1865,26 +2131,32 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "reco_TRI.PY76A", - "family": "line_reconnection", - "max_rho": 1.217, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_L.NEUP6", + "reco_TRI.PY76A+open_coupler_PRATCP6", + "reco_TRI.PY76A+node_merging_TRI.PP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.212, - "id": "reco_TRI.PY76A+open_coupler_PRATCP6", - "est_max_rho": 1.548 - } + "resolves": true, + "rank": 1, + "id": "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_L.NEUP6", + "est_max_rho": 0.786 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_682401", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -1899,17 +2171,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.1, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.041, + "best_unitary": { + "max_rho": 1.055, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.975, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.041, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "reco_TRI.PY76A+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 0.925 } } }, @@ -1930,18 +2215,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "disco_P.JERL61ROUGE", - "disco_BARNAL71VAUPA" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BOSCHL61ROUGE" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.732, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -1962,17 +2252,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RQROUP6", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.933, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "family": "open_coupling" } } }, @@ -1993,25 +2287,30 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_BAYETL61MTVIC", - "load_shedding_ORANGY642", - "load_shedding_ORANGY641" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "disco_BAYETL61MTVIC", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, { "id": "s_437818d6_6d8ce0", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — PONTEL61REALT", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2027,26 +2326,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.507, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_SSTULP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.289, - "id": "open_coupler_MOTT5P6+open_coupler_E.BOTP6", - "est_max_rho": 2.845 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "est_max_rho": 0.558 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_7d0521", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — PONTEL62REALT", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2062,26 +2367,32 @@ "PONTEL61REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.507, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_SSTULP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.289, - "id": "open_coupler_MOTT5P6+open_coupler_E.BOTP6", - "est_max_rho": 2.846 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "est_max_rho": 0.557 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_13bc5a", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — RASSUL61S.AIR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2097,20 +2408,26 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 1.203, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "disco_BOUTRL61SSTUL+disco_BOUTRL61FAVAR", + "disco_BOUTRL61SSTUL+disco_E.BOTL61FAVAR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.088, - "id": "disco_BOUTRL61SSTUL+disco_CSLLEL61E.BOT", - "est_max_rho": 0.577 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "est_max_rho": 0.302 + }, + "solving_pair_rank": 1 } }, { @@ -2131,23 +2448,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_REALTP7_1" + "open_coupler_PONTEP6" ], "best": { - "id": "open_coupler_REALTP7_1", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.928, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_b938e3", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — REALTL72TAVEL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2162,25 +2484,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.8, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "disco_E.BOTL61FAVAR+load_shedding_SEPTEY631", - "disco_E.BOTL61FAVAR+load_shedding_SEPTEY632", - "disco_BOUTRL61FAVAR+load_shedding_SEPTEY631" + "open_coupler_PONTEP6" ], "best": { + "max_rho": 0.928, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.975, - "id": "disco_E.BOTL61FAVAR+load_shedding_SEPTEY631", - "est_max_rho": 0.927 + "resolves": true, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_090e7b", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — ROGNAL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2194,19 +2519,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.135, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.027, - "id": "open_coupler_RQROUP6+load_shedding_RQROUY632", - "est_max_rho": 1.078 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -2230,26 +2558,37 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 116.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.16, "best_unitary": { + "max_rho": 1.161, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.222, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.16, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.093, - "id": "load_shedding_RASSUY631+redispatch_SSTUL6GROUPE5", - "est_max_rho": 1.161 + "resolves": false, + "rank": 1, + "id": "load_shedding_RASSUY631+redispatch_SSEST6GROUPE3", + "est_max_rho": 1.16 } } }, { "id": "s_437818d6_a91fd1", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — ROUMOL61ZSSCR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2266,26 +2605,32 @@ "T.VICL61ZMENT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 1.09, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "open_coupler_BOUTRP6+open_coupler_SSTULP6", + "open_coupler_SEPTEP6+open_coupler_PALUNP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.089, - "id": "open_coupler_BOUTRP6+open_coupler_SSTULP6", - "est_max_rho": 0.855 - } + "resolves": true, + "rank": 1, + "id": "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "est_max_rho": 0.579 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_594cad", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — ROUMOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2302,26 +2647,32 @@ "T.VICL61ZMENT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 1.095, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "open_coupler_BOUTRP6+open_coupler_SSTULP6", + "open_coupler_SEPTEP6+open_coupler_PALUNP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.094, - "id": "open_coupler_BOUTRP6+open_coupler_SSTULP6", - "est_max_rho": 0.848 - } + "resolves": true, + "rank": 1, + "id": "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "est_max_rho": 0.578 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_c1d62c", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — RQROUL61S.AIR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2337,26 +2688,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 1.195, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "disco_BOUTRL61SSTUL+disco_BOUTRL61FAVAR", + "disco_BOUTRL61SSTUL+disco_E.BOTL61FAVAR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.078, - "id": "open_coupler_ROGNAP6+disco_E.BOTL61FAVAR", - "est_max_rho": 0.613 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "est_max_rho": 0.333 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_c5ce55", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — RQROUL61SSEST", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2372,23 +2729,37 @@ "PONTEL62REALT" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 100.2, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MOTT5P6" - ], - "best": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.002, + "best_unitary": { + "max_rho": 1.002, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.016, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+open_coupler_SSCESP6", + "est_max_rho": 0.926 } } }, { "id": "s_437818d6_554e81", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — SAINNL61YAINV", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2402,18 +2773,21 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "load_shedding_P.JERY641+load_shedding_P.JERY649", - "node_merging_ROUGEP6+load_shedding_P.JERY641", - "node_merging_ROUGEP6+load_shedding_P.JERY649" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.889, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -2434,18 +2808,23 @@ "M.MORL61VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 39.1, "solution": { "kind": "unitary", "actions": [ - "node_merging_P.GASP6", - "load_shedding_M.MORY631", - "load_shedding_M.MORY632" + "open_coupler_M.MORP6", + "open_coupler_VLEVAP6", + "node_merging_P.GASP6" ], "best": { - "id": "node_merging_P.GASP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.391, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_M.MORP6", + "family": "open_coupling" } } }, @@ -2467,16 +2846,22 @@ "SAUS5L61VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SAUS56T612" + "load_shedding_SAUS56T612", + "open_coupler_VLEVAP6" ], "best": { + "max_rho": 0.84, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_SAUS56T612", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "family": "load_shedding" } } }, @@ -2497,25 +2882,30 @@ "P.ROSL61SSAVO" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BERGHP6", "disco_P.ROSL61SSAVO", - "disco_P.ROSL61SARR6" + "disco_P.ROSL61SARR6", + "disco_BERGHL61ZSAR6" ], "best": { - "id": "open_coupler_BERGHP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ROSL61SSAVO", + "family": "line_disconnection" } } }, { "id": "s_437818d6_544784", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — SSESTL61SSTUL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2531,23 +2921,37 @@ "PONTEL62REALT" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 99.1, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MOTT5P6" - ], - "best": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 0.991, + "best_unitary": { + "max_rho": 0.991, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.013, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_MOTT5P6+open_coupler_SSCESP6", + "est_max_rho": 0.926 } } }, { "id": "s_437818d6_c77cdf", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — VAUPAL61YAINV", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -2561,18 +2965,21 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "load_shedding_P.JERY641+load_shedding_P.JERY649", - "node_merging_ROUGEP6+load_shedding_P.JERY641", - "node_merging_ROUGEP6+load_shedding_P.JERY649" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.889, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -2594,17 +3001,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.046, "best_unitary": { + "max_rho": 1.052, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.JERY641", - "family": "load_shedding", - "max_rho": 1.107, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.046, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.101, + "resolves": false, + "rank": 1, "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", "est_max_rho": 1.046 } @@ -2627,18 +3045,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 64.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_BAYETL61MTVIC" + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI", + "load_shedding_ORANGY642" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.641, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MONDIL61ORANG", + "family": "line_disconnection" } } }, @@ -2659,18 +3082,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BOUTRP6", - "load_shedding_TRANSY633", - "load_shedding_TRANSY631" + "disco_BOUTRL61TRANS", + "open_coupler_TRANSP6", + "open_coupler_BOUTRP6" ], "best": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } } diff --git a/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json b/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json index c72cb2e7..234eb4a9 100644 --- a/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json @@ -3,6 +3,7 @@ "period_title": "January — Monday evening", "monitoring_factor": 0.95, "threshold_pct": 95.0, + "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_5384e039_0d0b4d", @@ -21,25 +22,30 @@ "ETUPEL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ETUPEL61ZHIRS", - "disco_SIEREL61ZHIRS" + "disco_SIEREL61ZHIRS", + "open_coupler_ETUPEP6" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ETUPEL61ZHIRS", + "family": "line_disconnection" } } }, { "id": "s_5384e039_1a1e0c", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — AVALLL61J.VIL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -55,26 +61,32 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 1.145, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_SSELOP6+disco_GIEN L61ZGIEN", + "open_coupler_TABARP6+disco_GIEN L61ZGIEN" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.174, - "id": "open_coupler_SSELOP6+disco_NEMOUL61VLEMA", - "est_max_rho": 1.961 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.877 + }, + "solving_pair_rank": 1 } }, { "id": "s_5384e039_4a4a4e", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — AVALLL61VNOL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -88,19 +100,23 @@ "SSELOY766" ], "nActionsDiscovered": 7, + "bestAchievableLoadingPct": 40.6, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.074, - "reducing": false - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.406, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.039, - "id": "open_coupler_SSELOP7+disco_GAUGLL72SSELO", - "est_max_rho": 1.064 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -121,18 +137,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DISTRP6", - "open_coupler_AVOI5P7_1", + "disco_AVOI5L61AVOIN", + "open_coupler_AVOI5P7", "disco_AVOINL61DISTR" ], "best": { - "id": "open_coupler_DISTRP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -153,18 +174,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DISTRP6", - "open_coupler_AVOI5P7_1", - "disco_AVOINL61DISTR" + "disco_AVOI5L61AVOIN", + "disco_AVOINL61DISTR", + "disco_AVOINL61QUINT" ], "best": { - "id": "open_coupler_DISTRP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -185,18 +211,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSVINY631", "disco_O.CHAL61RUEYR", + "load_shedding_SSVINY631", "load_shedding_SSVINY633" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.651, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_O.CHAL61RUEYR", + "family": "line_disconnection" } } }, @@ -217,18 +248,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -249,18 +285,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -281,18 +322,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -313,18 +359,23 @@ "SSELOY766" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "disco_GAUGLL72SSELO", + "open_coupler_SSELOP7", + "open_coupler_SSELOP6" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GAUGLL72SSELO", + "family": "line_disconnection" } } }, @@ -345,18 +396,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 39.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_CRENEP6", - "disco_BOCTOL71M.SEI", - "disco_CRENEL61ZP.V5" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.392, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, @@ -377,25 +433,30 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 39.1, "solution": { "kind": "unitary", "actions": [ "open_coupler_CRENEP6", - "disco_FOSSEL61ORSON", - "disco_CRENEL61ZP.V5" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.391, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5384e039_84e485", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -410,20 +471,26 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.397, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_RQROUP6+disco_FEUILL61LAVER", + "open_coupler_RQROUP6+open_coupler_ROGNAP6", + "open_coupler_RQROUP6+disco_DARSEL62FEUIL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.369, - "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", - "est_max_rho": 0.552 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_RQROUP6+disco_FEUILL61LAVER", + "est_max_rho": 0.538 + }, + "solving_pair_rank": 1 } }, { @@ -443,18 +510,23 @@ "CUBNEL72MQIS" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_BLAYAL61BRAUD", - "open_coupler_SAUCAP7", - "load_shedding_MQIS Y631" + "disco_CUBNEL72MQIS", + "open_coupler_MQIS P7", + "disco_MQIS L71SAUCA" ], "best": { - "id": "reco_BLAYAL61BRAUD", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CUBNEL72MQIS", + "family": "line_disconnection" } } }, @@ -475,16 +547,23 @@ "MERLAL61RECOU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_MERLAL61RECOU", + "disco_CHOLEL61RECOU", "open_coupler_MERLAP6" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MERLAL61RECOU", + "family": "line_disconnection" } } }, @@ -505,50 +584,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.SAMP6", - "disco_ESTR6L61FAMAR", - "disco_ESTR6L61VALEN" - ], - "best": { - "id": "open_coupler_P.SAMP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true - } - } - }, - { - "id": "s_5384e039_73ce12", - "gridId": "grid_5384e039", - "difficulty": "easy", - "title": "January — Monday evening", - "label": "January — Monday evening — CANTEL73SAUCA", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CANTEL73SAUCA", - "contingencyLabel": "CANTEL73SAUCA", - "baselineMaxLoadingPct": 101.5, - "nOverloadedLines": 1, - "overloadedLines": [ - "CANTEL72SAUCA" - ], - "nActionsDiscovered": 12, - "solution": { - "kind": "unitary", - "actions": [ - "node_merging_CAZARP6", - "node_merging_PRAGNP6", - "open_coupler_MQIS P7" + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "open_coupler_P.SAMP6" ], "best": { - "id": "node_merging_CAZARP6", - "family": "node_merging", - "max_rho": 0.991, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -569,18 +621,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "disco_P.GASL61ZLIE5", - "load_shedding_COMPIY632" + "load_shedding_COMPIY632", + "node_merging_CERGYP6", + "disco_CERGYL61PUISE" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.835, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_COMPIY632", + "family": "load_shedding" } } }, @@ -601,18 +658,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -633,18 +695,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -665,18 +732,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -697,25 +769,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, { "id": "s_5384e039_149ed1", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — CHESNL61NEMOU", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -733,20 +810,26 @@ "TABARY762" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_TABARP6", - "family": "open_coupling", - "max_rho": 1.503, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_TABARP6+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_TABARL61ZGIEN" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.518, - "id": "open_coupler_TABARP6+open_coupler_SSELOP7", - "est_max_rho": 2.798 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.652 + }, + "solving_pair_rank": 1 } }, { @@ -766,18 +849,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 42.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", + "disco_CRENEL71REVIG", "disco_BARBUL61CRENE" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.425, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -798,18 +886,23 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DISTRP6", "disco_CHOLEL61DISTR", - "disco_CHOLEL61RECOU" + "disco_CHOLEL61RECOU", + "disco_MERLAL61RECOU" ], "best": { - "id": "open_coupler_DISTRP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHOLEL61DISTR", + "family": "line_disconnection" } } }, @@ -830,18 +923,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 47.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.471, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -862,18 +960,23 @@ "CIROLL62LOGES" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_VLEJUP6", - "open_coupler_LOGESP6", - "load_shedding_LOGESY641" + "disco_CIROLL62LOGES", + "load_shedding_LOGESY641", + "load_shedding_LOGESY642" ], "best": { - "id": "node_merging_VLEJUP6", - "family": "node_merging", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL62LOGES", + "family": "line_disconnection" } } }, @@ -894,18 +997,23 @@ "CIROLL61LOGES" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_VLEJUP6", - "open_coupler_LOGESP6", - "load_shedding_LOGESY641" + "disco_CIROLL61LOGES", + "load_shedding_LOGESY641", + "load_shedding_LOGESY642" ], "best": { - "id": "node_merging_VLEJUP6", - "family": "node_merging", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL61LOGES", + "family": "line_disconnection" } } }, @@ -927,18 +1035,23 @@ "CPNIEL61SELF2" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_PARISY633", - "load_shedding_PARISY632", - "load_shedding_PARISY631" + "disco_CPNIEL61PARIS", + "disco_CPNIEL61SELF2", + "disco_CPNIEL63SELF2" ], "best": { - "id": "load_shedding_PARISY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CPNIEL61PARIS", + "family": "line_disconnection" } } }, @@ -959,16 +1072,21 @@ "COR.PL61PTCHA" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 67.4, "solution": { "kind": "unitary", "actions": [ "disco_BEZONL61PTCHA" ], "best": { + "max_rho": 0.674, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BEZONL61PTCHA", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -989,18 +1107,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 77.0, "solution": { "kind": "unitary", "actions": [ + "disco_VLEMAL61ZGLAC", "load_shedding_TABAR6AUXIL1.2", - "load_shedding_TABAR6AUXIL3.4", - "load_shedding_NEMOUY631" + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "load_shedding_TABAR6AUXIL1.2", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.77, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -1021,6 +1144,7 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.0, "solution": { "kind": "unitary", "actions": [ @@ -1029,10 +1153,14 @@ "load_shedding_TRANSY631" ], "best": { + "max_rho": 0.88, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, @@ -1053,25 +1181,30 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6", - "disco_CONF5L61ZP.IL", - "disco_MOIRAL61ZP.IL" + "disco_CONF5L61CPNIE", + "disco_MOIRAL61ZP.IL", + "disco_CONF5L61ZP.IL" ], "best": { - "id": "open_coupler_CPNIEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_5384e039_c31d02", "gridId": "grid_5384e039", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61PARIS", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1085,25 +1218,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "open_coupler_CPNIEP6+load_shedding_CONF5Y611", - "load_shedding_CONF5Y611+load_shedding_CONF5Y612" + "disco_CONF5L61CPNIE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "est_max_rho": 0.941 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_5384e039_3f4713", "gridId": "grid_5384e039", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61SELF2", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1117,25 +1253,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "open_coupler_CPNIEP6+load_shedding_CONF5Y611", - "load_shedding_CONF5Y611+load_shedding_CONF5Y612" + "disco_CONF5L61CPNIE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "est_max_rho": 0.941 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_5384e039_c2556e", "gridId": "grid_5384e039", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL63SELF2", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1149,18 +1288,21 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "open_coupler_CPNIEP6+load_shedding_CONF5Y611", - "load_shedding_CONF5Y611+load_shedding_CONF5Y612" + "disco_CONF5L61CPNIE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "est_max_rho": 0.941 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, @@ -1181,18 +1323,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 34.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.347, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -1213,18 +1360,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 57.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP6", "open_coupler_CRENEP7", + "open_coupler_CRENEP6", "disco_BARBUL61CRENE" ], "best": { - "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.579, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP7", + "family": "open_coupling" } } }, @@ -1245,19 +1397,26 @@ "MAROLL61REVIG" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 85.6, "solution": { "kind": "pair", "actions": [ - "open_coupler_CRENEP6+load_shedding_MAROLY631", + "open_coupler_CRENEP6+load_shedding_MAROLY632", "load_shedding_MAROLY632+load_shedding_MAROLY631", - "open_coupler_CRENEP6+load_shedding_MAROLY632" + "open_coupler_CRENEP6+load_shedding_MAROLY631" ], "best": { + "max_rho": 0.856, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CRENEP6+load_shedding_MAROLY631", + "resolves": true, + "rank": 4, + "id": "open_coupler_CRENEP6+load_shedding_MAROLY632", "est_max_rho": 0.94 - } + }, + "solving_pair_rank": 2 } }, { @@ -1277,18 +1436,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 22.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP6", "open_coupler_CRENEP7", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP6", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.225, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP7", + "family": "open_coupling" } } }, @@ -1309,18 +1473,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 61.4, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_MOTT5P6" + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.614, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, @@ -1341,6 +1510,7 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 63.1, "solution": { "kind": "unitary", "actions": [ @@ -1349,17 +1519,21 @@ "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.631, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, { "id": "s_5384e039_ac739f", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — CUBNEL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1373,20 +1547,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CUBNEL72DONZA", - "family": "line_disconnection", - "max_rho": 1.09, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_PREGUP7+open_coupler_PREGUP7_1", + "open_coupler_PREGUP7+disco_BRAUDL72PREGU", + "disco_BRAUDL72PREGU+open_coupler_PREGUP7_1" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.092, - "id": "open_coupler_CUBNEP7+disco_CUBNEL72DONZA", - "est_max_rho": 2.167 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_PREGUP7+open_coupler_PREGUP7_1", + "est_max_rho": 0.192 + }, + "solving_pair_rank": 1 } }, { @@ -1406,18 +1586,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1438,18 +1623,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1470,18 +1660,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1502,18 +1697,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1535,17 +1735,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.969, "best_unitary": { + "max_rho": 0.994, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "disco_DURANL61REALT", - "family": "line_disconnection", - "max_rho": 1.047, - "reducing": true + "family": "line_disconnection" }, "best_pair": { + "max_rho": 0.969, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.02, + "resolves": false, + "rank": 1, "id": "disco_DURANL61REALT+disco_E.BOTL61REALT", "est_max_rho": 0.969 } @@ -1568,23 +1779,28 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.0, "solution": { "kind": "unitary", "actions": [ "disco_CHOLEL61RECOU" ], "best": { + "max_rho": 0.9, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CHOLEL61RECOU", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5384e039_313e74", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — DONZAL71GOLF5", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1599,26 +1815,32 @@ "TRI.PY761" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_COUFFL61SSVIC", - "family": "line_disconnection", - "max_rho": 1.006, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "disco_MOLE L62RUEYR+disco_COUFFL61SSVIC", + "disco_MOLE L61RUEYR+disco_COUFFL61SSVIC" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.0, - "id": "open_coupler_SSVINP6+disco_LIVIEL61SSVIN", - "est_max_rho": 0.397 - } + "resolves": true, + "rank": 2, + "id": "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "est_max_rho": 0.6 + }, + "solving_pair_rank": 2 } }, { "id": "s_5384e039_5a16f9", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — DONZAL72GOLF5", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1633,20 +1855,26 @@ "TRI.PY761" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_COUFFL61SSVIC", - "family": "line_disconnection", - "max_rho": 1.006, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "disco_MOLE L62RUEYR+disco_COUFFL61SSVIC", + "disco_MOLE L61RUEYR+disco_COUFFL61SSVIC" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.0, - "id": "open_coupler_SSVINP6+disco_LIVIEL61SSVIN", - "est_max_rho": 0.396 - } + "resolves": true, + "rank": 2, + "id": "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "est_max_rho": 0.601 + }, + "solving_pair_rank": 2 } }, { @@ -1666,16 +1894,23 @@ "ECHALL62SOLEI" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_ECHALL62SOLEI", + "open_coupler_ECHALP6", "load_shedding_SOLEIY632" ], "best": { - "id": "load_shedding_SOLEIY632", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ECHALL62SOLEI", + "family": "line_disconnection" } } }, @@ -1696,18 +1931,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.GASP6_1", "disco_NOVIOL61SSOU5", + "disco_SEINEL62SSOU5", "disco_P.GASL63SEINE" ], "best": { - "id": "open_coupler_P.GASP6_1", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, @@ -1728,18 +1968,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_NOVIOL61SSOU5", - "disco_P.GASL63SEINE", - "disco_SEINEL62SSOU5" + "disco_SEINEL62SSOU5", + "disco_P.GASL63SEINE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_NOVIOL61SSOU5", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -1760,25 +2005,30 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.GASP6_1", "disco_NOVIOL61SSOU5", + "disco_SEINEL62SSOU5", "disco_P.GASL63SEINE" ], "best": { - "id": "open_coupler_P.GASP6_1", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, { "id": "s_5384e039_9598b8", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — FEUILL61SSCHA", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1792,19 +2042,23 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 1.004, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6", + "load_shedding_RASSUY631" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.001, - "id": "disco_DARSEL62FEUIL+open_coupler_PONTEP6", - "est_max_rho": 0.951 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -1825,18 +2079,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.444, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1857,18 +2116,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 32.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.322, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -1889,6 +2153,7 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.5, "solution": { "kind": "unitary", "actions": [ @@ -1897,17 +2162,21 @@ "disco_MERLAL61RECOU" ], "best": { + "max_rho": 0.845, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CHOLEL61RECOU", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5384e039_c5f106", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — GARCHL61SSELO", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1922,19 +2191,21 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 92.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 1.094, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_VLEMAL61ZGLAC" + ], + "best": { + "max_rho": 0.92, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.094, - "id": "disco_GIEN L61ZGIEN+disco_NEMOUL61VLEMA", - "est_max_rho": 1.93 + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -1955,25 +2226,29 @@ "SSELOY766" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 87.7, "solution": { "kind": "unitary", "actions": [ "open_coupler_SSELOP7", - "disco_GAUGLL72SSELO", - "open_coupler_SSELOP6" + "disco_GAUGLL72SSELO" ], "best": { + "max_rho": 0.877, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5384e039_ea6086", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — GATI5L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1987,19 +2262,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.6, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_GAUGLL72SSELO", - "family": "line_disconnection", - "max_rho": 1.039, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "open_coupler_SSELOP6", + "disco_GAUGLL72SSELO", + "open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.596, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.003, - "id": "load_shedding_SSELOY631+disco_SSELOL61VNOL", - "est_max_rho": 0.954 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2020,18 +2299,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 78.8, "solution": { "kind": "unitary", "actions": [ - "disco_TABARL61ZGIEN", - "disco_TABARL61ZGLAC", - "load_shedding_TABAR6AUXIL1.2" + "disco_VLEMAL61ZGLAC", + "load_shedding_TABAR6AUXIL1.2", + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "disco_TABARL61ZGIEN", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.788, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -2052,18 +2336,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 78.8, "solution": { "kind": "unitary", "actions": [ - "disco_TABARL61ZGIEN", - "disco_TABARL61ZGLAC", - "load_shedding_TABAR6AUXIL1.2" + "disco_VLEMAL61ZGLAC", + "load_shedding_TABAR6AUXIL1.2", + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "disco_TABARL61ZGIEN", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.788, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -2086,17 +2375,28 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 107.5, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.075, "best_unitary": { + "max_rho": 1.116, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_SSVINP6", - "family": "open_coupling", - "max_rho": 1.175, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.075, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.131, + "resolves": false, + "rank": 3, "id": "open_coupler_SSVINP6+load_shedding_SSVINY631", "est_max_rho": 1.087 } @@ -2120,18 +2420,23 @@ "TABARY762" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.0, "solution": { "kind": "unitary", "actions": [ - "disco_GARCHL61ZGIEN", - "disco_TABARL61ZGLAC", - "load_shedding_TABAR6AUXIL1.2" + "disco_VLEMAL61ZGLAC", + "load_shedding_TABAR6AUXIL1.2", + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "disco_GARCHL61ZGIEN", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.82, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -2152,18 +2457,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2184,18 +2494,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2216,18 +2531,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.459, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2248,18 +2568,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2280,18 +2605,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2313,6 +2643,7 @@ "CRENEY766" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 60.5, "solution": { "kind": "pair", "actions": [ @@ -2321,17 +2652,23 @@ "reco_MARL6L71VIGY+load_shedding_VINCEY634" ], "best": { + "max_rho": 0.605, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, + "resolves": true, + "rank": 2, "id": "open_coupler_CRENEP7+disco_LANEUL61ZMAD6", "est_max_rho": 0.94 - } + }, + "solving_pair_rank": 2 } }, { "id": "s_5384e039_3065fe", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — J.VILL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2347,20 +2684,26 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 1.143, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_SSELOP6+disco_GIEN L61ZGIEN", + "open_coupler_TABARP6+disco_GIEN L61ZGIEN" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.174, - "id": "open_coupler_SSELOP6+disco_NEMOUL61VLEMA", - "est_max_rho": 1.967 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.874 + }, + "solving_pair_rank": 1 } }, { @@ -2381,17 +2724,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.017, "best_unitary": { + "max_rho": 1.055, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_SEPTEP6", - "family": "open_coupling", - "max_rho": 1.111, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.017, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.071, + "resolves": false, + "rank": 1, "id": "open_coupler_SEPTEP6+disco_E.BOTL61REALT", "est_max_rho": 1.025 } @@ -2400,7 +2754,7 @@ { "id": "s_5384e039_14bf53", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — LAVERL61SEPTE", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2417,20 +2771,26 @@ "PONTEL62REALT" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 1.136, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_DARSEL62FEUIL+disco_RASSUL61RQROU", + "disco_DARSEL61FEUIL+disco_RASSUL61RQROU", + "open_coupler_DARSEP6+disco_DARSEL62FEUIL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.19, - "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "est_max_rho": 1.9 - } + "resolves": true, + "rank": 1, + "id": "disco_DARSEL62FEUIL+disco_RASSUL61RQROU", + "est_max_rho": 0.704 + }, + "solving_pair_rank": 1 } }, { @@ -2450,24 +2810,29 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 84.9, "solution": { "kind": "unitary", "actions": [ - "disco_GRIM5L61TRANS", - "disco_GRIM5L62TRANS" + "disco_GRIM5L62TRANS", + "disco_GRIM5L61TRANS" ], "best": { - "id": "disco_GRIM5L61TRANS", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.849, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GRIM5L62TRANS", + "family": "line_disconnection" } } }, { "id": "s_5384e039_56746e", "gridId": "grid_5384e039", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — M.PONL65PONTE", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2481,17 +2846,30 @@ "BOLL5L61TERRA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.5, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_TERRAY631", - "load_shedding_TERRAY633" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.975, + "best_unitary": { + "max_rho": 0.891, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, "id": "load_shedding_TERRAY631", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.764, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_TERRAY631+load_shedding_TERRAY633", + "est_max_rho": 0.942 } } }, @@ -2512,18 +2890,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP6", "open_coupler_CRENEP7", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP6", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.59, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP7", + "family": "open_coupling" } } }, @@ -2546,17 +2929,28 @@ "SIEREL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.019, "best_unitary": { + "max_rho": 1.082, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 1.139, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.019, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.073, + "resolves": false, + "rank": 2, "id": "open_coupler_ETUPEP6+load_shedding_ETUPEY632", "est_max_rho": 1.033 } @@ -2579,18 +2973,23 @@ "ATTAQL72WARAN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 21.1, "solution": { "kind": "unitary", "actions": [ - "disco_ARGOEL71MANDA", - "disco_FRUGEL71MANDA", - "disco_ARGOEL71FRUGE" + "open_coupler_ATTAQP7", + "disco_ATTAQL72MANDA", + "disco_FRUGEL71MANDA" ], "best": { - "id": "disco_ARGOEL71MANDA", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.211, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_ATTAQP7", + "family": "open_coupling" } } }, @@ -2611,6 +3010,7 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.4, "solution": { "kind": "unitary", "actions": [ @@ -2619,17 +3019,21 @@ "disco_BARBUL61FOSSE" ], "best": { + "max_rho": 0.734, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5384e039_e013a3", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — MASTAL61P.SAM", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2643,19 +3047,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_ESTR6L61VALEN", - "family": "line_disconnection", - "max_rho": 1.104, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "open_coupler_P.SAMP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.071, - "id": "disco_ESTR6L61FAMAR+load_shedding_MAUBEY641", - "est_max_rho": 1.017 + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -2676,16 +3084,23 @@ "MASTAL61P.SAM" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_CAPELY761" + "disco_MASTAL61P.SAM", + "node_merging_BXTO5P6", + "open_coupler_P.SAMP6" ], "best": { - "id": "reco_CAPELY761", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MASTAL61P.SAM", + "family": "line_disconnection" } } }, @@ -2706,17 +3121,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 61.4, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.614, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.989, - "reducing": true + "family": "load_shedding" } } }, @@ -2737,17 +3158,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 64.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.647, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.989, - "reducing": true + "family": "load_shedding" } } }, @@ -2768,18 +3195,23 @@ "MQIS Y761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.1, "solution": { "kind": "unitary", "actions": [ - "reco_BLAYAL61BRAUD", "open_coupler_MQIS P7", + "reco_BLAYAL61BRAUD", "disco_CUBNEL72MQIS" ], "best": { - "id": "reco_BLAYAL61BRAUD", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.861, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MQIS P7", + "family": "open_coupling" } } }, @@ -2801,6 +3233,7 @@ "O.CHAL61ZS.CU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.5, "solution": { "kind": "unitary", "actions": [ @@ -2808,10 +3241,14 @@ "load_shedding_BALARY633" ], "best": { + "max_rho": 0.945, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_BALARY632", - "family": "load_shedding", - "max_rho": 0.995, - "reducing": false + "family": "load_shedding" } } }, @@ -2832,18 +3269,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 32.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.328, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -2864,18 +3306,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 33.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.335, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -2896,18 +3343,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "open_coupler_SSVINP6", + "disco_LIVIEL61SSVIN", + "disco_GAUDIL61SSVIN" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.905, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -2928,18 +3380,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "open_coupler_SSVINP6", + "disco_LIVIEL61SSVIN", + "disco_GAUDIL61SSVIN" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.905, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -2960,18 +3417,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_NOVIOL61SSOU5", - "disco_P.GASL63SEINE", - "disco_SEINEL62SSOU5" + "disco_SEINEL62SSOU5", + "disco_P.GASL63SEINE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_NOVIOL61SSOU5", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -2992,18 +3454,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_NOVIOL61SSOU5", - "disco_P.GASL63SEINE", - "disco_SEINEL62SSOU5" + "disco_SEINEL62SSOU5", + "disco_P.GASL63SEINE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_NOVIOL61SSOU5", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -3024,25 +3491,30 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.GASP6_1", "disco_NOVIOL61SSOU5", + "disco_SEINEL62SSOU5", "disco_P.GASL63SEINE" ], "best": { - "id": "open_coupler_P.GASP6_1", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, { "id": "s_5384e039_29a9b4", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3057,26 +3529,32 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_TAVELL71TRI.P", - "family": "line_disconnection", - "max_rho": 1.374, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_TRI.PY76A+pst_tap_L.NEUL61L.NTD_inc2", + "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_MTGROP6", + "reco_TRI.PY76A+reco_B.MONY762" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.405, - "id": "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_MTGROP6", - "est_max_rho": 1.618 - } + "resolves": true, + "rank": 1, + "id": "reco_TRI.PY76A+pst_tap_L.NEUL61L.NTD_inc2", + "est_max_rho": 1.307 + }, + "solving_pair_rank": 1 } }, { "id": "s_5384e039_682401", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3091,20 +3569,26 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.123, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "pst_tap_L.NEUL61L.NTD_inc2+disco_JONQUL61MTAG5", + "open_coupler_RQROUP6+disco_FEUILL61LAVER", + "open_coupler_ROGNAP6+disco_FEUILL61LAVER" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.139, - "id": "open_coupler_RQROUP6+disco_FEUILL61LAVER", - "est_max_rho": 0.582 - } + "resolves": true, + "rank": 1, + "id": "pst_tap_L.NEUL61L.NTD_inc2+disco_JONQUL61MTAG5", + "est_max_rho": 0.478 + }, + "solving_pair_rank": 1 } }, { @@ -3124,18 +3608,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.462, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -3156,25 +3645,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.462, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, { "id": "s_5384e039_6d8ce0", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — PONTEL61REALT", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3190,26 +3684,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.271, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.271, - "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "est_max_rho": 1.905 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "est_max_rho": 0.864 + }, + "solving_pair_rank": 1 } }, { "id": "s_5384e039_7d0521", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — PONTEL62REALT", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3225,20 +3725,26 @@ "PONTEL61REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.271, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.271, - "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "est_max_rho": 1.905 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "est_max_rho": 0.865 + }, + "solving_pair_rank": 1 } }, { @@ -3259,18 +3765,23 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.4, "solution": { "kind": "unitary", "actions": [ "disco_E.BOTL61REALT", - "disco_DURANL61REALT", - "open_coupler_PONTEP6" + "open_coupler_PONTEP6", + "disco_DURANL61REALT" ], "best": { + "max_rho": 0.944, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "family": "line_disconnection" } } }, @@ -3291,17 +3802,23 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 56.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RASSUY631", - "disco_RQROUL61ZVILA" + "open_coupler_RQROUP6", + "disco_P.ORGL61RQROU", + "load_shedding_RASSUY631" ], "best": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.56, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -3324,17 +3841,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.012, "best_unitary": { + "max_rho": 1.017, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 1.07, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.012, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.065, + "resolves": false, + "rank": 1, "id": "open_coupler_DARSEP6+open_coupler_SSTULP6", "est_max_rho": 1.012 } @@ -3357,17 +3885,22 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 84.9, "solution": { "kind": "unitary", "actions": [ - "disco_GRIM5L61TRANS", - "disco_GRIM5L62TRANS" + "disco_GRIM5L62TRANS", + "disco_GRIM5L61TRANS" ], "best": { - "id": "disco_GRIM5L61TRANS", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.849, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GRIM5L62TRANS", + "family": "line_disconnection" } } }, @@ -3388,6 +3921,7 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.5, "solution": { "kind": "unitary", "actions": [ @@ -3396,17 +3930,21 @@ "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.705, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, { "id": "s_5384e039_52c6d8", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — SEREIL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3422,20 +3960,26 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 1.236, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_SSELOP6+disco_GIEN L61ZGIEN", + "open_coupler_SSELOP6+open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.174, - "id": "open_coupler_SSELOP6+disco_NEMOUL61VLEMA", - "est_max_rho": 1.961 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.922 + }, + "solving_pair_rank": 1 } }, { @@ -3455,18 +3999,23 @@ "SSELOY766" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 53.5, "solution": { "kind": "unitary", "actions": [ - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "disco_SSELOL61VNOL", - "family": "line_disconnection", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.535, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -3487,18 +4036,23 @@ "P.ROSL61SSAVO" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 47.2, "solution": { "kind": "unitary", "actions": [ - "reco_MARL6L71VIGY", + "disco_BERGHL61ZSAR6", "open_coupler_BERGHP6", "disco_BERGHL61MARL6" ], "best": { - "id": "reco_MARL6L71VIGY", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.472, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BERGHL61ZSAR6", + "family": "line_disconnection" } } }, @@ -3519,18 +4073,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_MOTT5P6" + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.657, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.989, - "reducing": true + "family": "load_shedding" } } }, @@ -3551,18 +4110,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_MOTT5P6" + "open_coupler_RQROUP6", + "disco_DARSEL61RASSU", + "disco_RASSUL61RQROU" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.768, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -3583,18 +4147,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.7, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSVINP6", "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "load_shedding_SSVINY633" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.927, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -3615,18 +4184,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSVINP6", "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "load_shedding_SSVINY633" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.926, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -3647,18 +4221,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 33.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.332, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } } diff --git a/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json b/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json index 38db9ac7..174532fd 100644 --- a/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json @@ -3,11 +3,12 @@ "period_title": "November — Monday evening", "monitoring_factor": 0.95, "threshold_pct": 95.0, + "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_5fc376c7_721c95", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — ALBERL71COCHE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -23,24 +24,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.0, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": false + "kind": "none", + "best_nonisl_max_rho": 1.04, + "best_unitary": { + "max_rho": 1.04, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", + "est_max_rho": 0.93 } } }, { "id": "s_5fc376c7_782e00", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — ARDOIL61MOTT5", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -56,15 +70,28 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 117.4, "solution": { - "kind": "pair", - "actions": [ - "reco_TRI.PY76B+open_coupler_DARSEP6", - "open_coupler_MTGROP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.174, + "best_unitary": { + "max_rho": 1.188, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_DARSEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.174, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.984, + "resolves": false, + "rank": 1, "id": "reco_TRI.PY76B+open_coupler_DARSEP6", "est_max_rho": 0.935 } @@ -88,17 +115,22 @@ "SIEREL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 3.5, "solution": { "kind": "unitary", "actions": [ - "disco_SIEREL61ZHIRS", - "disco_ETUPEL61ZHIRS" + "disco_ETUPEL61ZHIRS", + "disco_SIEREL61ZHIRS" ], "best": { - "id": "disco_SIEREL61ZHIRS", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.035, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ETUPEL61ZHIRS", + "family": "line_disconnection" } } }, @@ -119,18 +151,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -151,18 +188,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_COMPIL61LATEN", - "disco_COMPIL61MORU" + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -183,18 +225,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -215,18 +262,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_COMPIL61LATEN", - "disco_COMPIL61MORU" + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -247,18 +299,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -279,17 +336,23 @@ "P.GASL61SAUS5" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_P.GASL61SAUS5", "load_shedding_SAUS56T611", "load_shedding_SAUS56T612" ], "best": { - "id": "load_shedding_SAUS56T611", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.GASL61SAUS5", + "family": "line_disconnection" } } }, @@ -310,24 +373,30 @@ "P.GASL61SAUS5" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_P.GASL61SAUS5", "load_shedding_SAUS56T611", "load_shedding_SAUS56T612" ], "best": { - "id": "load_shedding_SAUS56T611", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.GASL61SAUS5", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_1a1e0c", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — AVALLL61J.VIL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -341,18 +410,22 @@ "SSELOY766" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 61.8, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "disco_BAYETL72GREPI+open_coupler_CHARPP7_1", - "disco_CHARPL72GREPI+open_coupler_CHARPP7_1" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO" ], "best": { + "max_rho": 0.618, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "est_max_rho": 0.401 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -373,18 +446,22 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "disco_GAUGLL72SSELO", - "load_shedding_GARCHY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.456, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -405,18 +482,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 80.0, "solution": { "kind": "unitary", "actions": [ + "disco_CAPELL71LONNY", "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_CAPELL71LONNY" + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.8, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -437,17 +519,22 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.2, "solution": { "kind": "unitary", "actions": [ - "disco_CAPELL71LONNY", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY" ], "best": { - "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.452, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -469,16 +556,21 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.8, "solution": { "kind": "unitary", "actions": [ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.928, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -499,25 +591,30 @@ "P.GASL61SAUS5" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_AVENIL61ROMAI", + "disco_P.GASL61SAUS5", "load_shedding_SAUS56T611", "load_shedding_SAUS56T612" ], "best": { - "id": "reco_AVENIL61ROMAI", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.GASL61SAUS5", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_f0456c", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — AVIGNL61MOTT5", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -533,14 +630,28 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 118.4, "solution": { - "kind": "pair", - "actions": [ - "reco_TRI.PY76B+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.184, + "best_unitary": { + "max_rho": 1.198, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_DARSEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.184, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.99, + "resolves": false, + "rank": 1, "id": "reco_TRI.PY76B+open_coupler_DARSEP6", "est_max_rho": 1.184 } @@ -567,17 +678,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.065, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.022, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.97 } @@ -604,17 +726,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.066, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.102, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.023, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.971 } @@ -641,17 +774,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.065, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.022, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.97 } @@ -681,17 +825,28 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.158, "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 7, "converged": true, - "true_max_rho": 1.006, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.134 } @@ -721,17 +876,28 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.158, "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 7, "converged": true, - "true_max_rho": 1.006, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.134 } @@ -761,17 +927,28 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.158, "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 7, "converged": true, - "true_max_rho": 1.006, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.134 } @@ -794,18 +971,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.3, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.633, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_reconnection" } } }, @@ -826,18 +1008,23 @@ "SSELOY766" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 47.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "disco_GARCHL61ZGIEN", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.473, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -858,18 +1045,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_reconnection" } } }, @@ -890,18 +1082,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 47.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_MARMAP7", - "disco_GARCHL61ZGIEN" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.472, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -926,19 +1123,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.052, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.104, - "reducing": false + "max_rho": 1.052, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.048, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.101, - "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.045 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 1.049 } } }, @@ -963,19 +1171,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.058, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.11, - "reducing": false + "max_rho": 1.058, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.054, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.106, - "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.05 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 1.054 } } }, @@ -1000,26 +1219,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.057, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.109, - "reducing": false + "max_rho": 1.057, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.053, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.106, - "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.049 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 1.053 } } }, { "id": "s_5fc376c7_3adaf4", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BOCTOL71N.SE1", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -1036,25 +1266,37 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6+disco_FEUILL61PONTE" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.099, + "best_unitary": { + "max_rho": 1.099, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.987, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 1.039 + "resolves": false, + "rank": 5, + "id": "open_coupler_DARSEP6+disco_DARSEL61FEUIL", + "est_max_rho": 1.102 } } }, { "id": "s_5fc376c7_353f4a", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BOCTOL72N.SE2", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -1071,18 +1313,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6+disco_FEUILL61PONTE" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.099, + "best_unitary": { + "max_rho": 1.099, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.987, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 1.039 + "resolves": false, + "rank": 5, + "id": "open_coupler_DARSEP6+disco_DARSEL61FEUIL", + "est_max_rho": 1.102 } } }, @@ -1103,6 +1357,7 @@ "BOISSL61ZJOUX" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 60.0, "solution": { "kind": "unitary", "actions": [ @@ -1111,10 +1366,14 @@ "load_shedding_MACONY631" ], "best": { + "max_rho": 0.6, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_BOISSP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -1135,24 +1394,30 @@ "JOUX L61MEUNI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 3.3, "solution": { "kind": "unitary", "actions": [ + "disco_BOISSL61MEUNI", "load_shedding_JOUX Y631", "load_shedding_JOUX Y632" ], "best": { - "id": "load_shedding_JOUX Y631", - "family": "load_shedding", - "max_rho": 0.999, - "reducing": true + "max_rho": 0.033, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOISSL61MEUNI", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_84e485", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -1168,20 +1433,26 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.41, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_RQROUP6+disco_DARSEL62FEUIL", + "open_coupler_RQROUP6+disco_DARSEL61FEUIL", + "disco_FEUILL61LAVER+disco_DARSEL61RASSU" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.352, - "id": "disco_FEUILL61LAVER+disco_RQROUL61S.AIR", - "est_max_rho": 1.167 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_RQROUP6+disco_DARSEL62FEUIL", + "est_max_rho": 0.797 + }, + "solving_pair_rank": 1 } }, { @@ -1201,18 +1472,23 @@ "BOLL5L62TRI.P" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 68.1, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BOLL5P6", "open_coupler_MTGROP6", - "disco_LAVEYL61MTGRO", - "disco_LAVEYL61P.BOR" + "disco_LAVEYL61MTGRO" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.681, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BOLL5P6", + "family": "open_coupling" } } }, @@ -1233,18 +1509,23 @@ "BOLL5L61TRI.P" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 54.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BOLL5P6", "disco_LAVEYL61MTGRO", - "disco_LAVEYL61P.BOR", - "disco_BARJAL61ZLAFI" + "disco_LAVEYL61P.BOR" ], "best": { - "id": "disco_LAVEYL61MTGRO", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.548, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BOLL5P6", + "family": "open_coupling" } } }, @@ -1265,18 +1546,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_BIANCL61FREJU" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.854, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -1297,18 +1583,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_BIANCL61FREJU" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.854, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -1329,18 +1620,23 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_TRI.PY76B", + "disco_P.ORGL71TAVEL", "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2" ], "best": { - "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ORGL71TAVEL", + "family": "line_disconnection" } } }, @@ -1361,18 +1657,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "open_coupler_PRATCP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -1393,18 +1694,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -1426,18 +1732,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -1459,18 +1768,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -1492,24 +1804,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.851, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_be2272", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BVIL7L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -1526,16 +1842,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_RASSUY631+open_coupler_JONQUP6", - "disco_FEUILL61PONTE+load_shedding_RQROUY632", - "open_coupler_PONTEP6+load_shedding_RQROUY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.158, + "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.991, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.135 } @@ -1544,7 +1872,7 @@ { "id": "s_5fc376c7_43dc87", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BVILXL72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -1561,16 +1889,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_RASSUY631+open_coupler_JONQUP6", - "disco_FEUILL61PONTE+load_shedding_RQROUY632", - "open_coupler_PONTEP6+load_shedding_RQROUY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.158, + "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.99, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.135 } @@ -1593,18 +1933,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_ESTR6L61FAMAR", - "disco_CAPELL61P.SAM", - "disco_CAPELL71LONNY" + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "disco_CAPELL61P.SAM" ], "best": { - "id": "disco_ESTR6L61FAMAR", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -1625,18 +1970,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", + "disco_CAPELL71LONNY", "open_coupler_LATENP7_1", - "disco_CAPELL71LONNY" + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.79, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -1657,18 +2007,23 @@ "THEIXL61ZPRIN" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 77.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_COR.PP6", "disco_P.ROUL61THEIX", - "disco_COR.PL61ZPRIN" + "disco_COR.PL61ZPRIN", + "disco_CONCAL61P.ROU" ], "best": { - "id": "open_coupler_COR.PP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.778, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ROUL61THEIX", + "family": "line_disconnection" } } }, @@ -1689,18 +2044,23 @@ "THEIXL61ZPRIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_THEIXL61ZPRIN", "disco_P.ROUL61THEIX", - "disco_COR.PL61ZPRIN" + "load_shedding_THEIXY633" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_THEIXL61ZPRIN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -1721,18 +2081,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_ESTR6L61VALEN", - "disco_ESTR6L61FAMAR", - "disco_CAPELL61P.SAM" + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "open_coupler_P.SAMP6" ], "best": { - "id": "disco_ESTR6L61VALEN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -1754,18 +2119,23 @@ "CAPELL61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 17.0, "solution": { "kind": "unitary", "actions": [ - "disco_CAPELL61H.VIE", "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", "disco_BXTO5L61LATEN" ], "best": { - "id": "disco_CAPELL61H.VIE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.17, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -1786,6 +2156,7 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.4, "solution": { "kind": "pair", "actions": [ @@ -1793,11 +2164,17 @@ "open_coupler_LATENP7_1+disco_HERS5L71VLEVA" ], "best": { + "max_rho": 0.894, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, + "resolves": true, + "rank": 1, "id": "open_coupler_LATENP7_1+disco_HERS5L71LATEN", "est_max_rho": 0.936 - } + }, + "solving_pair_rank": 1 } }, { @@ -1817,16 +2194,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MORU Y632" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "load_shedding_MORU Y632", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -1847,24 +2231,30 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "load_shedding_MORU Y632" + "disco_COMPIL61LATEN", + "disco_MOIMOL61MORU", + "disco_MOIMOL61P.GAS" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_7f1036", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — CARRIL62TERRI", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -1878,18 +2268,21 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 41.7, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1+open_coupler_LATENP7", - "open_coupler_LATENP7+open_coupler_CHEVAP7", - "open_coupler_LATENP7+open_coupler_CHEVAP7_1" + "disco_COMPIL61MORU" ], "best": { + "max_rho": 0.417, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_LATENP7_1+open_coupler_LATENP7", - "est_max_rho": 0.272 + "resolves": true, + "id": "disco_COMPIL61MORU", + "family": "line_disconnection" } } }, @@ -1912,18 +2305,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.2, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.902, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.053 + }, + "solving_pair_rank": 3 } }, { @@ -1945,18 +2344,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.2, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.902, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.053 + }, + "solving_pair_rank": 3 } }, { @@ -1976,18 +2381,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -2008,18 +2418,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "node_merging_GODINP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -2040,18 +2455,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.5, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.635, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_reconnection" } } }, @@ -2072,18 +2492,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.5, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.635, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_reconnection" } } }, @@ -2105,6 +2530,7 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 82.6, "solution": { "kind": "pair", "actions": [ @@ -2113,11 +2539,17 @@ "open_coupler_CHEV5P6+open_coupler_COR.PP6" ], "best": { + "max_rho": 0.826, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, + "resolves": true, + "rank": 1, "id": "open_coupler_CHEV5P6+load_shedding_CHEV5Y634", "est_max_rho": 0.936 - } + }, + "solving_pair_rank": 1 } }, { @@ -2138,16 +2570,21 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 86.4, "solution": { "kind": "unitary", "actions": [ "open_coupler_CHEV5P6" ], "best": { + "max_rho": 0.864, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -2168,18 +2605,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY", + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.451, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -2200,18 +2642,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", "disco_BXTO5L61LATEN", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.451, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -2236,17 +2683,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.065, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.022, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.97 } @@ -2255,7 +2713,7 @@ { "id": "s_5fc376c7_b3a56c", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — CHOO1L71LONNY", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -2273,24 +2731,37 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.039, + "best_unitary": { + "max_rho": 1.093, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.945 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.039, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.053 } } }, { "id": "s_5fc376c7_6f8087", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — CHOO2L72LONNY", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -2308,17 +2779,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.039, + "best_unitary": { + "max_rho": 1.093, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.039, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.945 + "resolves": false, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.052 } } }, @@ -2339,18 +2823,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_GODINP6", - "open_coupler_RUEYRP7", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -2371,18 +2860,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "node_merging_GODINP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -2404,25 +2898,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_8fb65d", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — COR.PL61ZBAST", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -2437,20 +2934,26 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 1.265, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_GRANZY763+node_merging_GRANZP7", + "open_coupler_CHEV5P6+open_coupler_COR.PP6", + "reco_GRANZY763+node_merging_GRANZP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.167, - "id": "open_coupler_CHEV5P6+open_coupler_COR.PP6", - "est_max_rho": 0.457 - } + "resolves": true, + "rank": 1, + "id": "reco_GRANZY763+node_merging_GRANZP7", + "est_max_rho": 0.372 + }, + "solving_pair_rank": 1 } }, { @@ -2470,16 +2973,23 @@ "COR.PL61ZBAST" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_COR.PL61ZBAST", + "disco_CHEV5L61ZBAST", "open_coupler_CHEV5P6" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COR.PL61ZBAST", + "family": "line_disconnection" } } }, @@ -2501,6 +3011,7 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 80.6, "solution": { "kind": "unitary", "actions": [ @@ -2508,17 +3019,21 @@ "disco_CHEV5L61RECOU" ], "best": { + "max_rho": 0.806, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5fc376c7_dee748", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — COR.PL64CORD5", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -2533,16 +3048,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 95.9, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MTGROP6" - ], - "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 0.959, + "best_unitary": { + "max_rho": 0.956, + "islanded": true, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.908, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_MTGROP6", + "est_max_rho": 0.934 } } }, @@ -2566,17 +3095,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.011, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.017, - "reducing": false + "max_rho": 1.011, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.097, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.013, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.962 } @@ -2599,18 +3139,23 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 60.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_CORMEP6", "disco_CERGYL63ZFRO6", - "load_shedding_PUTEAY633", - "disco_NANTEL62PUTEA" + "load_shedding_PUTEAY633" ], "best": { - "id": "disco_CERGYL63ZFRO6", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.608, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CORMEP6", + "family": "open_coupling" } } }, @@ -2631,18 +3176,23 @@ "CORMEL61NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_CERGYP6", + "disco_CERGYL63ZFRO6", "open_coupler_CORMEP6", "disco_NANTEL62PUTEA" ], "best": { - "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.662, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CERGYL63ZFRO6", + "family": "line_disconnection" } } }, @@ -2663,6 +3213,7 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.6, "solution": { "kind": "unitary", "actions": [ @@ -2670,10 +3221,14 @@ "load_shedding_TRANSY633" ], "best": { + "max_rho": 0.886, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_FREJUL62TRANS", - "family": "line_disconnection", - "max_rho": 0.987, - "reducing": true + "family": "line_disconnection" } } }, @@ -2694,18 +3249,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -2726,18 +3284,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -2758,18 +3319,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -2790,18 +3354,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -2822,18 +3389,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 56.5, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.565, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -2854,6 +3426,7 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 57.1, "solution": { "kind": "unitary", "actions": [ @@ -2862,10 +3435,14 @@ "disco_FOSSEL61ORSON" ], "best": { + "max_rho": 0.571, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -2886,25 +3463,30 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.4, "solution": { "kind": "unitary", "actions": [ + "disco_CRENEL71REVIG", "disco_BARBUL61CRENE", - "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_BARBUL61FOSSE" ], "best": { - "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.444, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CRENEL71REVIG", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_ac739f", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — CUBNEL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -2919,20 +3501,26 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BXLIEP6", - "family": "open_coupling", - "max_rho": 1.28, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "node_merging_GRANZP7+open_coupler_BXLIEP6", + "reco_GRANZY763+node_merging_GRANZP7", + "open_coupler_PRATCP6+open_coupler_ECHALP6_1" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.282, + "resolves": true, + "rank": 1, "id": "node_merging_GRANZP7+open_coupler_BXLIEP6", "est_max_rho": 0.349 - } + }, + "solving_pair_rank": 1 } }, { @@ -2952,25 +3540,30 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 50.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "load_shedding_P.ORGY632" + "disco_P.ORGL71TAVEL", + "reco_TRI.PY76B", + "open_coupler_ROGNAP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.504, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ORGL71TAVEL", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_312f77", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — D.BURL72TABAR", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -2987,17 +3580,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.7, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.037, + "best_unitary": { + "max_rho": 1.08, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.983, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 0.934 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.037, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 } } }, @@ -3020,18 +3626,25 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.0, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1" + "open_coupler_RQROUP6+open_coupler_SSELOP6", + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.86, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.983, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 0.934 - } + "resolves": true, + "rank": 4, + "id": "open_coupler_RQROUP6+open_coupler_SSELOP6", + "est_max_rho": 1.063 + }, + "solving_pair_rank": 3 } }, { @@ -3054,18 +3667,29 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 95.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.957, "best_unitary": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 1.07, - "reducing": false + "max_rho": 1.017, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.957, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.007, - "id": "open_coupler_SSELOP7+open_coupler_LATENP7", + "resolves": false, + "rank": 2, + "id": "open_coupler_SSELOP7+open_coupler_LATENP7_1", "est_max_rho": 0.957 } } @@ -3087,57 +3711,22 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 51.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "load_shedding_P.ORGY632" + "disco_P.ORGL71TAVEL", + "reco_TRI.PY76B" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true - } - } - }, - { - "id": "s_5fc376c7_6b287c", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — DARSEL61RASSU", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "DARSEL61RASSU", - "contingencyLabel": "DARSEL61RASSU", - "baselineMaxLoadingPct": 127.5, - "nOverloadedLines": 7, - "overloadedLines": [ - "FEUILL61SSCHA", - "LAVERL61SELF3", - "LAVERL61SEPTE", - "LAVERL62SELF3", - "ROGNAL61SSCHA", - "P.ORGY761", - "TRI.PY76A" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_ROGNAY632", - "family": "load_shedding", - "max_rho": 1.33, - "reducing": false - }, - "best_pair": { + "max_rho": 0.514, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.319, - "id": "load_shedding_ROGNAY632+redispatch_SSCHA6GROUPE2", - "est_max_rho": 1.253 + "resolves": true, + "id": "disco_P.ORGL71TAVEL", + "family": "line_disconnection" } } }, @@ -3158,18 +3747,23 @@ "THEIXL61ZPRIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_COR.PL61ZPRIN", + "disco_THEIXL61ZPRIN", "load_shedding_THEIXY633", "load_shedding_THEIXY635" ], "best": { - "id": "disco_COR.PL61ZPRIN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_THEIXL61ZPRIN", + "family": "line_disconnection" } } }, @@ -3196,17 +3790,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 119.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.19, "best_unitary": { + "max_rho": 1.188, + "islanded": true, + "reduces": false, + "n_over_after": 7, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.251, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.188, + "islanded": true, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.25, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_RASSUY631", "est_max_rho": 1.188 } @@ -3229,17 +3834,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.5, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.825, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true + "family": "load_shedding" } } }, @@ -3260,17 +3871,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.3, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.833, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "family": "load_shedding" } } }, @@ -3293,17 +3910,25 @@ "TRI.PY76A" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 93.8, "solution": { "kind": "pair", "actions": [ + "open_coupler_SOLEIP6+open_coupler_PRATCP6", "open_coupler_PRATCP6+load_shedding_SOLEIY633" ], "best": { + "max_rho": 0.938, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.991, - "id": "open_coupler_PRATCP6+load_shedding_SOLEIY633", - "est_max_rho": 0.937 - } + "resolves": true, + "rank": 4, + "id": "open_coupler_SOLEIP6+open_coupler_PRATCP6", + "est_max_rho": 1.016 + }, + "solving_pair_rank": 1 } }, { @@ -3323,17 +3948,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.9, "solution": { "kind": "unitary", "actions": [ + "open_coupler_PRATCP6", "node_merging_GODINP6", - "open_coupler_PRATCP6" + "disco_MARGEL61PRATC" ], "best": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.839, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PRATCP6", + "family": "open_coupling" } } }, @@ -3354,6 +3985,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -3362,10 +3994,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -3386,18 +4022,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3418,6 +4059,7 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 54.8, "solution": { "kind": "unitary", "actions": [ @@ -3425,10 +4067,14 @@ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.548, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BXTO5L61LATEN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -3449,6 +4095,7 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -3456,17 +4103,21 @@ "disco_ARGIEL61ETUPE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_ARGIEL61SIERE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_dd71e8", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — F.FREL71M.SEI", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -3481,23 +4132,32 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.7, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_LATENP7_1" + "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "open_coupler_LATENP7_1+load_shedding_COMPIY632", + "curtail_H.VIEIN2+load_shedding_MORU Y632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true - } + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 3, + "id": "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "est_max_rho": 0.937 + }, + "solving_pair_rank": 3 } }, { "id": "s_5fc376c7_883903", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — F.FREL71VESLE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -3512,55 +4172,26 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.3, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_LATENP7_1" + "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "open_coupler_LATENP7_1+load_shedding_COMPIY632", + "curtail_H.VIEIN2+load_shedding_MORU Y632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.998, - "reducing": true - } - } - }, - { - "id": "s_5fc376c7_9598b8", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — FEUILL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "FEUILL61SSCHA", - "contingencyLabel": "FEUILL61SSCHA", - "baselineMaxLoadingPct": 159.2, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "LAVERL61SELF3", - "LAVERL61SEPTE", - "LAVERL62SELF3", - "RASSUL61S.AIR", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.533, - "reducing": false - }, - "best_pair": { + "max_rho": 0.943, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.235, - "id": "open_coupler_ROGNAP6+load_shedding_RASSUY631", - "est_max_rho": 1.452 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "est_max_rho": 0.943 + }, + "solving_pair_rank": 3 } }, { @@ -3586,17 +4217,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 116.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.16, "best_unitary": { + "max_rho": 1.16, + "islanded": false, + "reduces": false, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.221, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.157, + "islanded": true, + "reduces": false, + "n_over_after": 6, "converged": true, - "true_max_rho": 1.032, + "resolves": false, + "rank": 1, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.157 } @@ -3625,17 +4267,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.159, "best_unitary": { + "max_rho": 1.159, + "islanded": false, + "reduces": false, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.22, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.157, + "islanded": true, + "reduces": false, + "n_over_after": 6, "converged": true, - "true_max_rho": 1.032, + "resolves": false, + "rank": 1, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.157 } @@ -3658,18 +4311,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.8, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.738, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -3690,18 +4348,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3722,18 +4385,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_GODINP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -3756,16 +4424,21 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 94.0, "solution": { "kind": "unitary", "actions": [ "disco_CHEV5L61RECOU" ], "best": { + "max_rho": 0.94, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CHEV5L61RECOU", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -3786,18 +4459,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 62.8, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "reco_TRI.PY76B" + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.628, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -3819,16 +4497,22 @@ "TABARY762" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 83.1, "solution": { "kind": "unitary", "actions": [ + "disco_VLEMAL61ZGLAC", "disco_NEMOUL61VLEMA" ], "best": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.831, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -3849,17 +4533,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6", + "open_coupler_MOTT5P6", + "disco_DARSEL61RASSU" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.982, - "reducing": true + "max_rho": 0.861, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -3880,17 +4570,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 55.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSELOP6", "open_coupler_SSELOP7", "disco_GAUGLL72SSELO" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.558, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -3911,17 +4607,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 55.7, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSELOP6", "open_coupler_SSELOP7", "disco_GAUGLL72SSELO" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.557, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -3943,16 +4645,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 92.3, "solution": { "kind": "unitary", "actions": [ "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.923, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -3973,18 +4680,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", - "open_coupler_MTGROP6", - "disco_GODINL61ZNEG5" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -4006,17 +4718,22 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 83.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6" + "open_coupler_PRATCP6", + "open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.832, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PRATCP6", + "family": "open_coupling" } } }, @@ -4038,16 +4755,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 92.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.922, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -4069,17 +4791,22 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 83.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6" + "open_coupler_PRATCP6", + "open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.832, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PRATCP6", + "family": "open_coupling" } } }, @@ -4100,18 +4827,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -4132,18 +4864,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], - "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -4166,18 +4903,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.9, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.899, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -4199,18 +4942,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.9, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.899, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -4232,18 +4981,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.1, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.901, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -4265,18 +5020,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.9, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.899, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -4296,18 +5057,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 47.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_CHARPP7_1", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.478, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4328,18 +5094,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 48.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "disco_GAUGLL72SSELO", - "open_coupler_CHARPP7" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.483, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4360,18 +5131,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_HARC7L61ROBI5", "open_coupler_ROBI5P6", - "open_coupler_VLEJUP6", - "disco_HARC7L61ROBI5" + "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -4392,18 +5168,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -4424,18 +5205,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -4456,17 +5242,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.9, "solution": { "kind": "unitary", "actions": [ - "disco_VIGY L61ZPELT", + "open_coupler_REVIGP6", + "open_coupler_M.SEIP7_1", "disco_BEZAUL61ZPELT" ], "best": { - "id": "disco_VIGY L61ZPELT", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.599, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_REVIGP6", + "family": "open_coupling" } } }, @@ -4487,18 +5279,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_BEZAUL61VANDI", - "disco_BEZAUL62VANDI", - "disco_T.DOML61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_REVIGP6" ], "best": { - "id": "disco_BEZAUL61VANDI", - "family": "line_disconnection", - "max_rho": 0.988, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, @@ -4519,24 +5316,29 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6", - "open_coupler_SIEREP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_08e87d", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — I.NAPL61OTTMA", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4552,17 +5354,21 @@ "KEMBSL61OTTMA" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 119.3, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_FESSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.193, + "best_unitary": { + "max_rho": 0.213, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true - } + "family": "open_coupling" + }, + "best_pair": null } }, { @@ -4582,6 +5388,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -4590,10 +5397,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_disconnection" } } }, @@ -4614,6 +5425,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -4622,10 +5434,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_disconnection" } } }, @@ -4646,6 +5462,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -4654,17 +5471,21 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.989, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_3065fe", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — J.VILL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4678,18 +5499,22 @@ "SSELOY766" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 59.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "disco_BAYETL72GREPI+open_coupler_CHARPP7_1", - "open_coupler_CHARPP7_1+disco_CHARPL72GREPI" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO" ], "best": { + "max_rho": 0.599, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "est_max_rho": 0.401 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4711,16 +5536,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 17.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.179, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -4742,16 +5573,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 17.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.179, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -4772,18 +5609,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", "disco_BXTO5L61LATEN", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -4804,18 +5646,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_COMPIL61LATEN", "disco_COMPIL61MORU", - "load_shedding_MORU Y632" + "load_shedding_COMPIY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_COMPIL61LATEN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -4837,17 +5684,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.7, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.857, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -4871,136 +5722,33 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 119.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.19, "best_unitary": { + "max_rho": 1.192, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.255, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.19, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.051, + "resolves": false, + "rank": 1, "id": "open_coupler_SEPTEP6+load_shedding_RASSUY631", "est_max_rho": 1.191 } } }, - { - "id": "s_5fc376c7_0563a4", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — LAVERL61SELF3", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL61SELF3", - "contingencyLabel": "LAVERL61SELF3", - "baselineMaxLoadingPct": 164.3, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "FEUILL61SSCHA", - "P.ORGL61RQROU", - "RASSUL61S.AIR", - "ROGNAL61SSCHA", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.636, - "reducing": false - }, - "best_pair": { - "converged": true, - "true_max_rho": 1.31, - "id": "open_coupler_DARSEP6+load_shedding_RASSUY631", - "est_max_rho": 1.535 - } - } - }, - { - "id": "s_5fc376c7_14bf53", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — LAVERL61SEPTE", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL61SEPTE", - "contingencyLabel": "LAVERL61SEPTE", - "baselineMaxLoadingPct": 164.3, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "FEUILL61SSCHA", - "P.ORGL61RQROU", - "RASSUL61S.AIR", - "ROGNAL61SSCHA", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.636, - "reducing": false - }, - "best_pair": { - "converged": true, - "true_max_rho": 1.311, - "id": "open_coupler_DARSEP6+load_shedding_RASSUY631", - "est_max_rho": 1.536 - } - } - }, - { - "id": "s_5fc376c7_4e6e75", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — LAVERL62SELF3", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL62SELF3", - "contingencyLabel": "LAVERL62SELF3", - "baselineMaxLoadingPct": 164.3, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "FEUILL61SSCHA", - "P.ORGL61RQROU", - "RASSUL61S.AIR", - "ROGNAL61SSCHA", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.636, - "reducing": false - }, - "best_pair": { - "converged": true, - "true_max_rho": 1.31, - "id": "open_coupler_DARSEP6+load_shedding_RASSUY631", - "est_max_rho": 1.535 - } - } - }, { "id": "s_5fc376c7_41fc9d", "gridId": "grid_5fc376c7", @@ -5018,18 +5766,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_DANTOL61TUILI", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "disco_DANTOL61TUILI", - "family": "line_disconnection", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -5050,16 +5803,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_FREJUL62TRANS" + "disco_BOUTRL61TRANS", + "disco_FREJUL62TRANS", + "load_shedding_TRANSY633" ], "best": { - "id": "disco_FREJUL62TRANS", - "family": "line_disconnection", - "max_rho": 0.989, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, @@ -5080,18 +5840,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 78.3, "solution": { "kind": "unitary", "actions": [ + "disco_CAPELL71LONNY", "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "curtail_H.VIEIN2" + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.783, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -5112,18 +5877,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 78.3, "solution": { "kind": "unitary", "actions": [ + "disco_CAPELL71LONNY", "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "curtail_H.VIEIN2" + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.783, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -5144,18 +5914,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RASSUY631", - "load_shedding_RQROUY632", - "open_coupler_SSTULP6" + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -5176,18 +5950,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.6, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.656, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5210,17 +5989,28 @@ "SIEREL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.156, "best_unitary": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 1.305, - "reducing": false + "max_rho": 1.218, + "islanded": false, + "reduces": true, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "disco_BZGUIL61ETUPE", + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.156, + "islanded": false, + "reduces": true, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.217, + "resolves": false, + "rank": 1, "id": "disco_BZGUIL61ETUPE+load_shedding_ETUPEY632", "est_max_rho": 1.155 } @@ -5243,18 +6033,23 @@ "BAYETL61MTVIC" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", "load_shedding_MTVICY631", - "load_shedding_MTVICY633" + "load_shedding_MTVICY633", + "open_coupler_ISSOIP6" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.81, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_MTVICY631", + "family": "load_shedding" } } }, @@ -5275,6 +6070,7 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.5, "solution": { "kind": "unitary", "actions": [ @@ -5283,10 +6079,14 @@ "disco_FOSSEL61ORSON" ], "best": { + "max_rho": 0.735, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5308,16 +6108,21 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 89.8, "solution": { "kind": "unitary", "actions": [ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.898, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5339,19 +6144,26 @@ "CAPELL61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.6, "solution": { "kind": "pair", "actions": [ - "disco_CAPELL71LONNY+curtail_H.VIEIN2", "open_coupler_LATENP7_1+disco_CAPELL71LONNY", + "disco_CAPELL71LONNY+curtail_H.VIEIN2", "open_coupler_LATENP6+disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.926, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "disco_CAPELL71LONNY+curtail_H.VIEIN2", + "resolves": true, + "rank": 2, + "id": "open_coupler_LATENP7_1+disco_CAPELL71LONNY", "est_max_rho": 0.936 - } + }, + "solving_pair_rank": 1 } }, { @@ -5371,16 +6183,21 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 91.8, "solution": { "kind": "unitary", "actions": [ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.918, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5401,18 +6218,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "disco_DARSEL61FEUIL" + "open_coupler_RQROUP6", + "open_coupler_MOTT5P6", + "disco_DARSEL61RASSU" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.982, - "reducing": true + "max_rho": 0.855, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5433,18 +6255,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 64.5, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", "reco_TRI.PY76B", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.645, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -5465,17 +6292,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.667, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "family": "load_shedding" } } }, @@ -5496,18 +6329,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ROBI5P6", "disco_HARC7L61ROBI5", + "open_coupler_ROBI5P6", "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -5528,18 +6366,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_HARC7L61ROBI5", "open_coupler_ROBI5P6", - "open_coupler_VLEJUP6", - "disco_HARC7L61ROBI5" + "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -5560,18 +6403,23 @@ "BAYETL61MTVIC" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", "load_shedding_MTVICY631", - "load_shedding_MTVICY633" + "load_shedding_MTVICY633", + "open_coupler_ISSOIP6" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.811, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_MTVICY631", + "family": "load_shedding" } } }, @@ -5592,17 +6440,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.0, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.79, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true + "family": "load_shedding" } } }, @@ -5624,17 +6478,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.859, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5655,18 +6513,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.5, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.705, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5687,18 +6550,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 67.2, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.672, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5719,18 +6587,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 85.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_GRIM5L62TRANS" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.858, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -5751,18 +6624,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 86.3, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_GRIM5L62TRANS" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.863, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -5783,18 +6661,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_GODINL61RUEYR", "disco_GODINL61ZNEG5", - "disco_VERLHL61ZNEG5", - "open_coupler_PRATCP6" + "disco_VERLHL61ZNEG5" ], "best": { - "id": "disco_GODINL61ZNEG5", - "family": "line_disconnection", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -5815,18 +6698,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -5847,25 +6735,30 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", "disco_BXTO5L61LATEN", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.461, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_3474b2", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — P.CORL71SSAL7", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5881,16 +6774,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.4, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE1", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.044, + "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.105, + "islanded": true, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.979, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.929 } @@ -5899,7 +6804,7 @@ { "id": "s_5fc376c7_431798", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — P.CORL72SSAL7", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5915,16 +6820,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.4, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE1", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.044, + "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.105, + "islanded": true, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.979, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.929 } @@ -5949,24 +6866,30 @@ "AVENIL61CZNEU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 14.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SAUS56T611", - "load_shedding_SAUS56T612" + "disco_AUBE6L61CZNEU", + "disco_AUBE6L61SEINE", + "disco_AVENIL61CZNEU" ], "best": { - "id": "load_shedding_SAUS56T611", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.148, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AUBE6L61CZNEU", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_29a9b4", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5982,20 +6905,26 @@ "TRI.PY76A" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 1.607, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_BOLL5P6+open_coupler_TRI.PP6", + "open_coupler_MTGROP6+open_coupler_PRATCP6", + "pst_tap_L.NEUL61L.NTD_inc2+disco_COULAL71TAVEL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.663, - "id": "open_coupler_MTGROP6+open_coupler_PRATCP6", - "est_max_rho": 1.861 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_BOLL5P6+open_coupler_TRI.PP6", + "est_max_rho": 1.154 + }, + "solving_pair_rank": 1 } }, { @@ -6017,19 +6946,30 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 98.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.986, "best_unitary": { + "max_rho": 1.095, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.153, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.986, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.045, - "id": "open_coupler_RQROUP6+load_shedding_C.RHOY633", - "est_max_rho": 1.034 + "resolves": false, + "rank": 5, + "id": "reco_TRI.PY76B+open_coupler_RQROUP6", + "est_max_rho": 1.065 } } }, @@ -6050,18 +6990,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -6082,18 +7027,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -6121,19 +7071,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.157, "best_unitary": { + "max_rho": 1.157, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.006, - "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", - "est_max_rho": 1.134 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_RASSUY631", + "est_max_rho": 1.126 } } }, @@ -6154,18 +7115,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_CAPELL71LONNY", + "open_coupler_LATENP7_1", "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.816, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -6186,18 +7152,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.448, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -6218,18 +7189,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 62.9, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.629, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_reconnection" } } }, @@ -6250,18 +7226,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VLEJUP6_1", + "disco_HARC7L61ROBI5", "open_coupler_ROBI5P6", - "open_coupler_VLEJUP6" + "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_VLEJUP6_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -6287,17 +7268,28 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 112.5, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.125, "best_unitary": { + "max_rho": 1.138, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 1.198, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.125, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.184, + "resolves": false, + "rank": 2, "id": "open_coupler_SEPTEP6+disco_DURANL61REALT", "est_max_rho": 1.126 } @@ -6321,16 +7313,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 94.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_MTGROP6" ], "best": { + "max_rho": 0.942, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "family": "open_coupling" } } }, @@ -6352,16 +7349,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 94.3, "solution": { "kind": "unitary", "actions": [ "open_coupler_MTGROP6" ], "best": { + "max_rho": 0.943, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "family": "open_coupling" } } }, @@ -6382,18 +7384,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VANDIP6", - "disco_BEZAUL62VANDI", - "disco_BEZAUL61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_M.SEIP7_1" ], "best": { - "id": "open_coupler_VANDIP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, @@ -6414,17 +7421,28 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.987, "best_unitary": { + "max_rho": 1.069, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_REVIGP6", - "family": "open_coupling", - "max_rho": 1.125, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.987, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.039, + "resolves": false, + "rank": 1, "id": "open_coupler_REVIGP6+disco_BEZAUL61ZPELT", "est_max_rho": 0.983 } @@ -6447,18 +7465,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.3, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "disco_BOLL5L61C.RHO" + "open_coupler_MTGROP6", + "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.633, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_reconnection" } } }, @@ -6479,18 +7502,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.8, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.638, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_reconnection" } } }, @@ -6511,61 +7539,29 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RASSUY631" + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true - } - } - }, - { - "id": "s_5fc376c7_f87211", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — ROGNAL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ROGNAL61SSCHA", - "contingencyLabel": "ROGNAL61SSCHA", - "baselineMaxLoadingPct": 169.5, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "LAVERL61SELF3", - "LAVERL61SEPTE", - "LAVERL62SELF3", - "RASSUL61S.AIR", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.634, - "reducing": false - }, - "best_pair": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.612, - "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", - "est_max_rho": 1.548 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_a91fd1", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — ROUMOL61ZSSCR", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6579,23 +7575,29 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU" + "disco_BOUTRL61TRANS", + "load_shedding_TRANSY633" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.991, - "id": "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU", - "est_max_rho": 0.942 + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_594cad", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — ROUMOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6609,16 +7611,22 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU" + "disco_BOUTRL61TRANS", + "load_shedding_TRANSY633" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.991, - "id": "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU", - "est_max_rho": 0.942 + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, @@ -6644,17 +7652,28 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.117, "best_unitary": { + "max_rho": 1.128, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 1.187, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.117, + "islanded": false, + "reduces": false, + "n_over_after": 6, "converged": true, - "true_max_rho": 1.176, + "resolves": false, + "rank": 2, "id": "disco_FEUILL61PONTE+redispatch_SSCHA6GROUPE1", "est_max_rho": 1.117 } @@ -6677,17 +7696,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_RQROUP6", "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.848, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -6708,18 +7733,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 50.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_CHARPP7", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.5, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -6740,18 +7770,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 50.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_CHARPP7", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.502, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -6772,25 +7807,30 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_52c6d8", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — SEREIL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6804,18 +7844,21 @@ "SSELOY766" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 83.3, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "disco_BAYETL72GREPI+open_coupler_CHARPP7_1", - "disco_CHARPL72GREPI+open_coupler_CHARPP7_1" + "open_coupler_SSELOP6" ], "best": { + "max_rho": 0.833, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "est_max_rho": 0.405 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -6836,16 +7879,21 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7" + "open_coupler_SSELOP6" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.999, - "reducing": true + "max_rho": 0.599, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -6866,18 +7914,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_CAPELL71LONNY", + "open_coupler_LATENP7_1", "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.817, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -6898,18 +7951,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.463, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -6930,6 +7988,7 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -6937,10 +7996,14 @@ "disco_ARGIEL61ETUPE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_ARGIEL61SIERE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -6961,6 +8024,7 @@ "SSAVOL71VIGY" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.7, "solution": { "kind": "unitary", "actions": [ @@ -6969,17 +8033,21 @@ "disco_BEZAUL71VIGY" ], "best": { + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_MARL6L71VIGY", - "family": "line_disconnection", - "max_rho": 0.987, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_301e35", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — SSEA2L72VERGE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6996,14 +8064,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.7, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.037, + "best_unitary": { + "max_rho": 1.037, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.999, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.949 } @@ -7026,18 +8108,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.8, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_JONQUP6" + "disco_DARSEL61RASSU" ], "best": { + "max_rho": 0.798, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "family": "load_shedding" } } }, @@ -7058,18 +8145,23 @@ "COR.PL61ZBAST" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CHEV5P6", - "disco_COR.PL72DISTR", - "disco_COR.PL71GALOR" + "disco_COR.PL61ZBAST", + "disco_CHEV5L61ZBAST", + "open_coupler_CHEV5P6" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COR.PL61ZBAST", + "family": "line_disconnection" } } }, @@ -7090,6 +8182,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -7098,10 +8191,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_disconnection" } } }, @@ -7122,18 +8219,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -7154,6 +8256,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -7162,17 +8265,21 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_00de85", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — TAMARL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -7188,23 +8295,30 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 93.8, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_MTGROP6" + "reco_TRI.PY76B+open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.988, - "reducing": true - } + "max_rho": 0.938, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 1, + "id": "reco_TRI.PY76B+open_coupler_MTGROP6", + "est_max_rho": 0.937 + }, + "solving_pair_rank": 1 } }, { "id": "s_5fc376c7_edd29e", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — TAMARL72TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -7220,18 +8334,24 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 93.7, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6" + "reco_TRI.PY76B+open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.988, - "reducing": true - } + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 1, + "id": "reco_TRI.PY76B+open_coupler_MTGROP6", + "est_max_rho": 0.937 + }, + "solving_pair_rank": 1 } }, { @@ -7251,18 +8371,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632" + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -7283,18 +8408,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632" + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -7315,18 +8445,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.7, "solution": { "kind": "unitary", "actions": [ + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632", - "load_shedding_BOLL5Y633" + "node_merging_B.MONP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.637, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -7347,18 +8482,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.7, "solution": { "kind": "unitary", "actions": [ + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632", - "load_shedding_BOLL5Y633" + "node_merging_B.MONP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.637, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -7379,18 +8519,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.719, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -7411,18 +8554,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.719, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -7443,25 +8589,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.719, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_f7ae0b", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — TUILIL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -7475,20 +8624,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 1.055, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_LESQUL62VERLH+open_coupler_LESQUP6", + "open_coupler_VERFEP7+disco_LESQUL71VERFE", + "disco_LESQUL61VERLH+open_coupler_LESQUP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.132, - "id": "open_coupler_VERFEP7+disco_LESQUL71VERFE", - "est_max_rho": 0.617 - } + "resolves": true, + "rank": 1, + "id": "disco_LESQUL62VERLH+open_coupler_LESQUP6", + "est_max_rho": 0.607 + }, + "solving_pair_rank": 1 } }, { @@ -7508,18 +8663,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "node_merging_GODINP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -7540,18 +8700,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VANDIP6", - "disco_BEZAUL62VANDI", - "disco_BEZAUL61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_M.SEIP7_1" ], "best": { - "id": "open_coupler_VANDIP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, @@ -7572,18 +8737,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 69.1, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.691, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } } diff --git a/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json b/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json index d7d71a3d..b6558326 100644 --- a/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json @@ -3,6 +3,7 @@ "period_title": "January — Monday evening", "monitoring_factor": 0.95, "threshold_pct": 95.0, + "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_e4e81e29_6d341c", @@ -21,18 +22,23 @@ "PLAISL61ROMAI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 38.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_ROMAIP6_1", "open_coupler_PLAISP6", - "open_coupler_PLAISP6_1", - "open_coupler_VLEVAP6_1" + "disco_VLEVAL62ZGAL5" ], "best": { - "id": "open_coupler_PLAISP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.388, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_ROMAIP6_1", + "family": "open_coupling" } } }, @@ -53,17 +59,21 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CERGYP6", "disco_CORMEL62NANTE" ], "best": { - "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -84,18 +94,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "node_merging_CERGYP6", - "disco_CORMEL62NANTE" + "disco_CORMEL62NANTE", + "node_merging_CERGYP6" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -116,18 +130,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.7, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.747, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -148,18 +165,23 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", + "disco_CORMEL62NANTE", "disco_CERGYL61ZHERB", "disco_CORMEL61ZHERB" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -180,18 +202,23 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", + "disco_CORMEL62NANTE", "disco_CERGYL61ZHERB", "disco_CORMEL61ZHERB" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -212,18 +239,23 @@ "ETUPEL61ZHIRS" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ETUPEL61ZHIRS", - "disco_SIEREL61ZHIRS" + "disco_SIEREL61ZHIRS", + "open_coupler_ETUPEP6" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ETUPEL61ZHIRS", + "family": "line_disconnection" } } }, @@ -244,25 +276,30 @@ "MANDAL71WARAN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.7, "solution": { "kind": "unitary", "actions": [ + "disco_FRUGEL71MANDA", "open_coupler_WARANP7", - "disco_ARGOEL71MANDA", - "disco_FRUGEL71MANDA" + "disco_ARGOEL71MANDA" ], "best": { - "id": "open_coupler_WARANP7", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.867, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FRUGEL71MANDA", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_56172b", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — AUBUSL62MOLE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -277,17 +314,29 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.6, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61MAURE+load_shedding_BAYETY632", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "open_coupler_MARMAP7+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.976, + "best_unitary": { + "max_rho": 0.976, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 1.002, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.993, - "id": "disco_EGUZOL61MAURE+load_shedding_BAYETY632", + "resolves": false, + "rank": 3, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", "est_max_rho": 0.943 } } @@ -309,18 +358,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_ROUSSL61SEREI" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -341,18 +395,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_ROUSSL61SEREI" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -373,18 +432,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.742, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -405,16 +467,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_AVOINL61QUINT" + "disco_AVOI5L61AVOIN", + "open_coupler_AVOI5P7", + "disco_AVOINL61DISTR" ], "best": { - "id": "disco_AVOINL61QUINT", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -437,19 +506,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.5, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "open_coupler_CZTRYP6+disco_DANTOL61TUILI", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_SEREIP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.945, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.996, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "est_max_rho": 0.946 - } + "resolves": true, + "rank": 5, + "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "est_max_rho": 0.948 + }, + "solving_pair_rank": 1 } }, { @@ -469,16 +545,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_AVOI5L61AVOIN", + "disco_AVOINL61DISTR", "disco_AVOINL61QUINT" ], "best": { - "id": "disco_AVOINL61QUINT", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -501,18 +584,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -534,18 +623,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -567,18 +662,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -598,17 +699,23 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.66, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -629,17 +736,23 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.66, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -660,24 +773,30 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.7, "solution": { "kind": "unitary", "actions": [ + "open_coupler_MARMAP6", "load_shedding_MOUS5Y641", "load_shedding_MOUS5Y642" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.497, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_a1525a", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL71PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -695,16 +814,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.149, + "best_unitary": { + "max_rho": 1.149, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -727,25 +858,29 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_9d94a2", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL72PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -763,16 +898,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.0, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.15, + "best_unitary": { + "max_rho": 1.15, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -795,25 +942,29 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_aee889", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL73PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -831,16 +982,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.0, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.15, + "best_unitary": { + "max_rho": 1.15, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -849,7 +1012,7 @@ { "id": "s_e4e81e29_6c6200", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL74PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -867,16 +1030,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.0, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.15, + "best_unitary": { + "max_rho": 1.15, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -901,17 +1076,28 @@ "MOUS5L61PAUDY" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.059, "best_unitary": { + "max_rho": 1.217, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 1.281, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.059, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.115, + "resolves": false, + "rank": 1, "id": "load_shedding_MOUS5Y641+load_shedding_MOUS5Y642", "est_max_rho": 1.056 } @@ -920,7 +1106,7 @@ { "id": "s_e4e81e29_51df4e", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BAYETL61VOLVI", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -938,20 +1124,26 @@ "BAYETY762" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71ECHAL", - "family": "line_disconnection", - "max_rho": 1.157, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSELOP7+open_coupler_B.MONP7", + "open_coupler_RULHAP6+open_coupler_SSELOP7", + "open_coupler_MOLE P6+open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.186, + "resolves": true, + "rank": 1, "id": "open_coupler_SSELOP7+open_coupler_B.MONP7", "est_max_rho": 0.136 - } + }, + "solving_pair_rank": 1 } }, { @@ -973,26 +1165,37 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.029, "best_unitary": { + "max_rho": 1.041, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.095, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.029, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.016, - "id": "open_coupler_CHARPP7+disco_CHARPL71ECHAL", - "est_max_rho": 1.04 + "resolves": false, + "rank": 1, + "id": "load_shedding_GREPIY732+disco_CHARPL71ECHAL", + "est_max_rho": 1.029 } } }, { "id": "s_e4e81e29_281812", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BAYETL71MARMA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1007,20 +1210,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL72SSV.O", - "family": "line_disconnection", - "max_rho": 1.005, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_CHARPP7+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "reco_EGUZOY761+reco_EGUZOY772" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.008, - "id": "open_coupler_SSELOP7+disco_CHARPL71SSV.O", - "est_max_rho": 1.824 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 0.701 + }, + "solving_pair_rank": 1 } }, { @@ -1042,26 +1251,37 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.029, "best_unitary": { + "max_rho": 1.04, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.095, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.029, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.016, - "id": "open_coupler_CHARPP7+disco_CHARPL71ECHAL", - "est_max_rho": 1.039 + "resolves": false, + "rank": 1, + "id": "load_shedding_GREPIY731+disco_CHARPL71ECHAL", + "est_max_rho": 1.029 } } }, { "id": "s_e4e81e29_2188da", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BAYETL72MARMA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1076,20 +1296,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL72SSV.O", - "family": "line_disconnection", - "max_rho": 1.005, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_CHARPP7+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "reco_EGUZOY761+reco_EGUZOY772" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.008, - "id": "open_coupler_SSELOP7+disco_CHARPL71SSV.O", - "est_max_rho": 1.823 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 0.702 + }, + "solving_pair_rank": 1 } }, { @@ -1109,18 +1335,23 @@ "BAYETY761" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 50.3, "solution": { "kind": "unitary", "actions": [ - "load_shedding_BAYETY631", - "load_shedding_BAYETY632", - "load_shedding_MTVICY633" + "disco_BAYETL61MTVIC", + "node_merging_BAYETP6", + "disco_MTLUCL61MTVIC" ], "best": { - "id": "load_shedding_BAYETY631", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.503, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BAYETL61MTVIC", + "family": "line_disconnection" } } }, @@ -1141,25 +1372,30 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_117f52", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BLAYAL72BRAUD", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1177,26 +1413,32 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_SANILL61TUILI", - "family": "line_disconnection", - "max_rho": 1.09, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+open_coupler_MARMAP6", + "disco_SANILL61TUILI+disco_DONZAL61VERLH", + "open_coupler_BREUIP7+open_coupler_CHARPP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.013, - "id": "disco_SANILL61TUILI+disco_DONZAL61VERLH", - "est_max_rho": 1.574 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+open_coupler_MARMAP6", + "est_max_rho": 1.2 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_369fbd", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BLAYAL74BRAUD", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1213,20 +1455,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_SANILL61TUILI", - "family": "line_disconnection", - "max_rho": 1.084, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_BREUIP7+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_DONZAL61VERLH", + "open_coupler_SSELOP7+open_coupler_VERLHP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.011, - "id": "open_coupler_SSELOP7+open_coupler_B.MONP7", - "est_max_rho": 0.408 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_BREUIP7+open_coupler_SSELOP7", + "est_max_rho": 0.159 + }, + "solving_pair_rank": 1 } }, { @@ -1246,25 +1494,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3adaf4", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BOCTOL71N.SE1", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1282,18 +1535,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.148, + "best_unitary": { + "max_rho": 1.148, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.992, - "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", - "est_max_rho": 1.008 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.147, + "islanded": true, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", + "est_max_rho": 1.147 } } }, @@ -1314,25 +1579,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_COSSIL61COUBE" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_353f4a", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BOCTOL72N.SE2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1350,18 +1620,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.148, + "best_unitary": { + "max_rho": 1.148, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.992, - "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", - "est_max_rho": 1.008 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.147, + "islanded": true, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", + "est_max_rho": 1.147 } } }, @@ -1382,16 +1664,21 @@ "BOISSL61ZJOUX" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_BOISSP6" ], "best": { + "max_rho": 0.742, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_BOISSP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "family": "open_coupling" } } }, @@ -1413,17 +1700,28 @@ "JOUX L61MEUNI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.966, "best_unitary": { + "max_rho": 1.185, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_JOUX Y631", - "family": "load_shedding", - "max_rho": 1.247, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 0.966, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.017, + "resolves": false, + "rank": 1, "id": "load_shedding_JOUX Y631+load_shedding_JOUX Y632", "est_max_rho": 0.964 } @@ -1432,7 +1730,7 @@ { "id": "s_e4e81e29_84e485", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1447,26 +1745,32 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.619, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_DARSEP6+disco_RASSUL61S.AIR", + "disco_DARSEL62FEUIL+disco_RASSUL61S.AIR", + "disco_DARSEL61FEUIL+disco_RASSUL61S.AIR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.004, - "id": "open_coupler_DARSEP6+disco_DARSEL61FEUIL", - "est_max_rho": 1.443 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_DARSEP6+disco_RASSUL61S.AIR", + "est_max_rho": 0.562 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_5a3fb3", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BORT L62MOLE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1483,20 +1787,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_COULAL71P.COR", - "family": "line_disconnection", - "max_rho": 1.113, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+open_coupler_MARMAP6", + "reco_EGUZOY772+open_coupler_MARMAP6", + "reco_EGUZOY761+reco_EGUZOY772" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.092, - "id": "disco_COULAL72P.COR+reco_DAMBRL62ZCAR6", - "est_max_rho": 1.9 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+open_coupler_MARMAP6", + "est_max_rho": 0.603 + }, + "solving_pair_rank": 1 } }, { @@ -1516,25 +1826,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_M.SEIP7", - "open_coupler_SEREIP6", - "open_coupler_CHESNP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "node_merging_M.SEIP7", - "family": "node_merging", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3539e9", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BREUIL71RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1550,26 +1865,32 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "node_merging_BAYETP6", - "family": "node_merging", - "max_rho": 1.139, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_MOLE P6+open_coupler_SSELOP7", + "open_coupler_MARMAP6+open_coupler_SSELOP7", + "reco_EGUZOY761+open_coupler_MARMAP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.014, - "id": "node_merging_CHAINP7+open_coupler_SSELOP7", - "est_max_rho": 1.056 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_MOLE P6+open_coupler_SSELOP7", + "est_max_rho": 0.547 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_be2272", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BVIL7L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1586,25 +1907,37 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.7, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE1+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.147, + "best_unitary": { + "max_rho": 1.147, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.206, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.993, - "id": "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1", - "est_max_rho": 1.007 + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", + "est_max_rho": 0.991 } } }, { "id": "s_e4e81e29_43dc87", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BVILXL72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1621,18 +1954,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.7, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE1+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.147, + "best_unitary": { + "max_rho": 1.147, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.206, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.993, - "id": "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1", - "est_max_rho": 1.007 + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", + "est_max_rho": 0.991 } } }, @@ -1653,23 +1998,30 @@ "MERLAL61RECOU" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_MERLAL61RECOU", + "disco_CHOLEL61RECOU", "open_coupler_MERLAP6" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MERLAL61RECOU", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_f435dc", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BXRE6L61CHAIN", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -1684,18 +2036,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.0, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_BAYETY631", - "load_shedding_BAYETY632", - "disco_CHARPL71ECHAL" - ], - "best": { - "id": "load_shedding_BAYETY631", - "family": "load_shedding", + "kind": "none", + "best_nonisl_max_rho": 0.96, + "best_unitary": { + "max_rho": 0.96, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { "max_rho": 0.993, - "reducing": true + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", + "est_max_rho": 0.943 } } }, @@ -1716,18 +2080,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "open_coupler_BXTO5P6_1", - "disco_BXTO5L61H.VIE" + "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -1748,18 +2117,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "disco_CAPELL71LONNY" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -1780,18 +2154,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_CAPELL71LONNY", + "open_coupler_BXTO5P6", "disco_BXTO5L62LATEN" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.656, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -1812,18 +2191,23 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 28.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL" + "disco_RASSUL61S.AIR", + "disco_RQROUL61S.AIR", + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": false + "max_rho": 0.285, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_RASSUL61S.AIR", + "family": "line_disconnection" } } }, @@ -1844,18 +2228,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -1876,18 +2265,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -1908,17 +2302,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "disco_NANTEL61PUTEA" + "disco_CORMEL62NANTE", + "node_merging_CORMEP6" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -1939,18 +2338,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -1971,18 +2374,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -2003,18 +2410,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VERLHP6", "disco_DANTOL61VERLH", - "disco_DANTOL61TUILI" + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { - "id": "open_coupler_VERLHP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DANTOL61VERLH", + "family": "line_disconnection" } } }, @@ -2037,19 +2449,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.042, "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.099, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.042, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.048, - "id": "open_coupler_CHARPP7+load_shedding_GREPIY731", - "est_max_rho": 1.043 + "resolves": false, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 1.042 } } }, @@ -2072,19 +2495,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.042, "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.099, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.042, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.049, - "id": "open_coupler_CHARPP7+load_shedding_GREPIY732", - "est_max_rho": 1.043 + "resolves": false, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 1.042 } } }, @@ -2107,19 +2541,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.986, "best_unitary": { - "id": "open_coupler_MARMAP7", - "family": "open_coupling", - "max_rho": 1.076, - "reducing": false + "max_rho": 0.986, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 0.988, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.03, - "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", - "est_max_rho": 0.979 + "resolves": false, + "rank": 3, + "id": "node_merging_BAYETP6+open_coupler_RUEYRP6", + "est_max_rho": 1.012 } } }, @@ -2140,25 +2585,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "load_shedding_ROUSSY633" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_a20d00", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CHESNL71VLECH", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2172,18 +2622,21 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.7, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "disco_SEREIL71VIELM+disco_SARRYL61SEREI", - "disco_SEREIL71VIELM+disco_SARRYL61VIELM" + "disco_SEREIL71VIELM" ], "best": { + "max_rho": 0.767, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "est_max_rho": 0.946 + "resolves": true, + "id": "disco_SEREIL71VIELM", + "family": "line_disconnection" } } }, @@ -2204,18 +2657,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "load_shedding_ROUSSY633" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -2238,19 +2696,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.5, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "open_coupler_CZTRYP6+disco_DANTOL61TUILI", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_SEREIP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.945, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.996, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "est_max_rho": 0.946 - } + "resolves": true, + "rank": 5, + "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "est_max_rho": 0.948 + }, + "solving_pair_rank": 1 } }, { @@ -2272,18 +2737,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -2303,18 +2774,23 @@ "CIROLL62LOGES" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_CIROLL62LOGES", "load_shedding_LOGESY641", - "load_shedding_LOGESY642", - "load_shedding_VLEJUY641" + "load_shedding_LOGESY642" ], "best": { - "id": "load_shedding_LOGESY641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL62LOGES", + "family": "line_disconnection" } } }, @@ -2335,18 +2811,23 @@ "CIROLL61LOGES" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LOGESP6", + "disco_CIROLL61LOGES", "load_shedding_LOGESY641", "load_shedding_LOGESY642" ], "best": { - "id": "open_coupler_LOGESP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL61LOGES", + "family": "line_disconnection" } } }, @@ -2367,18 +2848,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -2400,17 +2885,28 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 112.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.12, "best_unitary": { + "max_rho": 1.122, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "load_shedding_TUILIY632", - "family": "load_shedding", - "max_rho": 1.181, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.12, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.179, + "resolves": false, + "rank": 1, "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", "est_max_rho": 1.12 } @@ -2433,6 +2929,7 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -2440,10 +2937,14 @@ "disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -2465,25 +2966,30 @@ "CPNIEL61SELF2" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_PARISY633", - "load_shedding_PARISY632", - "load_shedding_PARISY631" + "disco_CPNIEL61PARIS", + "disco_CPNIEL61SELF2", + "disco_CPNIEL63SELF2" ], "best": { - "id": "load_shedding_PARISY633", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CPNIEL61PARIS", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_523f23", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CORMEL61PERRE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2497,17 +3003,29 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.5, "solution": { - "kind": "pair", - "actions": [ - "node_merging_CORMEP6+load_shedding_PUTEAY633", - "reco_CERGYL61ZLIE5+node_merging_CORMEP6", - "disco_NANTEL61PUTEA+load_shedding_PUTEAY633" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.025, + "best_unitary": { + "max_rho": 1.092, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.993, - "id": "node_merging_CORMEP6+load_shedding_PUTEAY633", + "resolves": false, + "id": "disco_NANTEL61PUTEA", + "family": "line_disconnection" + }, + "best_pair": { + "max_rho": 1.025, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "disco_NANTEL61PUTEA+load_shedding_PUTEAY633", "est_max_rho": 0.943 } } @@ -2531,17 +3049,23 @@ "CORMEL61PERRE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 37.3, "solution": { "kind": "unitary", "actions": [ "disco_ALSACL61PERRE", - "disco_ALSACL61PUTEA" + "disco_ALSACL61PUTEA", + "node_merging_CORMEP6" ], "best": { + "max_rho": 0.373, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_ALSACL61PERRE", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -2562,16 +3086,21 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_NANTEL61PUTEA" + "disco_CORMEL62NANTE" ], "best": { - "id": "disco_NANTEL61PUTEA", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -2592,17 +3121,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "disco_NANTEL61PUTEA" + "disco_CORMEL62NANTE", + "node_merging_CORMEP6" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -2623,18 +3157,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_M.SEIP7", - "open_coupler_SEREIP6", - "disco_ROUSSL61SEREI" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "node_merging_M.SEIP7", - "family": "node_merging", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -2655,25 +3194,30 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_MOIRAL61ZP.IL", + "disco_CONF5L61CPNIE", "disco_CONF5L61ZP.IL", - "load_shedding_PARISY633" + "disco_MOIRAL61ZP.IL" ], "best": { - "id": "disco_MOIRAL61ZP.IL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c31d02", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61PARIS", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2687,26 +3231,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_CONF5Y611", - "family": "load_shedding", - "max_rho": 1.082, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_CONF5L61CPNIE" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.016, - "id": "load_shedding_CONF5Y611+load_shedding_CONF5Y612", - "est_max_rho": 0.965 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3f4713", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61SELF2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2720,26 +3266,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_CONF5Y611", - "family": "load_shedding", - "max_rho": 1.082, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_CONF5L61CPNIE" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.016, - "id": "load_shedding_CONF5Y611+load_shedding_CONF5Y612", - "est_max_rho": 0.964 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c2556e", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL63SELF2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2753,19 +3301,21 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_CONF5Y611", - "family": "load_shedding", - "max_rho": 1.082, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_CONF5L61CPNIE" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.016, - "id": "load_shedding_CONF5Y611+load_shedding_CONF5Y612", - "est_max_rho": 0.964 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, @@ -2786,18 +3336,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -2818,18 +3373,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -2850,18 +3410,23 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_Q.SEIY631", - "load_shedding_Q.SEIY632", - "load_shedding_MTPELY631" + "disco_Q.SEIL61TAMAR", + "disco_Q.SEIL61SAUMA", + "open_coupler_MTPELP6" ], "best": { - "id": "load_shedding_Q.SEIY631", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_Q.SEIL61TAMAR", + "family": "line_disconnection" } } }, @@ -2882,25 +3447,30 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_Q.SEIY631", - "load_shedding_Q.SEIY632", - "load_shedding_MTPELY631" + "disco_Q.SEIL61TAMAR", + "disco_Q.SEIL61SAUMA", + "open_coupler_MTPELP6" ], "best": { - "id": "load_shedding_Q.SEIY631", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_Q.SEIL61TAMAR", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_8240b3", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CSLLEL61E.BOT", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2915,25 +3485,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.9, "solution": { - "kind": "unitary", - "actions": [ - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL", - "disco_FEUILL61LAVER" - ], - "best": { - "id": "disco_DARSEL61FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": false + "kind": "none", + "best_nonisl_max_rho": 1.099, + "best_unitary": { + "max_rho": 1.099, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.313, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_DARSEP6+disco_FEUILL61PONTE", + "est_max_rho": 0.944 } } }, { "id": "s_e4e81e29_a42b1e", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CSLLEL61ESCAI", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2948,25 +3530,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.6, "solution": { - "kind": "unitary", - "actions": [ - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL", - "disco_FEUILL61LAVER" - ], - "best": { - "id": "disco_DARSEL61FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": false + "kind": "none", + "best_nonisl_max_rho": 1.096, + "best_unitary": { + "max_rho": 1.096, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.31, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_DARSEP6+disco_FEUILL61PONTE", + "est_max_rho": 0.944 } } }, { "id": "s_e4e81e29_27cf89", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CTAURL61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -2980,22 +3574,34 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 99.0, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_JONQUP6", - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL" - ], - "best": { - "id": "open_coupler_JONQUP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true - } - } - }, - { + "kind": "none", + "best_nonisl_max_rho": 0.99, + "best_unitary": { + "max_rho": 0.99, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.313, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 6, + "id": "open_coupler_DARSEP6+disco_DURANL61ROGNA", + "est_max_rho": 0.944 + } + } + }, + { "id": "s_e4e81e29_f04cf0", "gridId": "grid_e4e81e29", "difficulty": "easy", @@ -3012,18 +3618,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -3044,25 +3655,32 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "pair", "actions": [ "open_coupler_VERLHP6+disco_LESQUL61VERLH", - "open_coupler_VERLHP6+disco_DONZAL61VERLH", - "disco_LESQUL61VERLH+disco_DONZAL71LESQU" + "open_coupler_RUEYRP7+disco_DONZAL71LESQU", + "open_coupler_VERLHP6+disco_DONZAL61VERLH" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, - "id": "open_coupler_P.SIMP6_1+open_coupler_P.SIMP6", - "est_max_rho": 2.479 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_VERLHP6+disco_LESQUL61VERLH", + "est_max_rho": 1.865 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_25b2bf", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CUBNEL71DONZA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3076,16 +3694,28 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_VERLHP6+load_shedding_TUILIY632", - "open_coupler_VERLHP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.978, + "best_unitary": { + "max_rho": 1.048, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_TUILIY632", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.978, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.991, + "resolves": false, + "rank": 1, "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", "est_max_rho": 0.942 } @@ -3094,7 +3724,7 @@ { "id": "s_e4e81e29_9c5ba0", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CUBNEL72DONZA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3108,16 +3738,28 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.0, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_VERLHP6+load_shedding_TUILIY632", - "open_coupler_VERLHP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.98, + "best_unitary": { + "max_rho": 1.05, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_TUILIY632", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.98, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.991, + "resolves": false, + "rank": 1, "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", "est_max_rho": 0.942 } @@ -3140,18 +3782,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -3172,18 +3819,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -3204,18 +3856,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -3236,25 +3893,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3bf176", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL71GATI5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3269,25 +3931,37 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 99.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "open_coupler_MARMAP7+load_shedding_BAYETY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.991, + "best_unitary": { + "max_rho": 0.991, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "est_max_rho": 0.944 + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 1.004, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+disco_EGUZOL61MAURE", + "est_max_rho": 0.955 } } }, { "id": "s_e4e81e29_17cb98", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL71VERGE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3302,17 +3976,29 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61SSFEY+load_shedding_BAYETY632", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.981, + "best_unitary": { + "max_rho": 0.981, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 0.999, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", "est_max_rho": 0.944 } } @@ -3320,7 +4006,7 @@ { "id": "s_e4e81e29_f2bf6c", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL72GATI5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3335,25 +4021,37 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 99.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.991, + "best_unitary": { + "max_rho": 0.991, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "est_max_rho": 0.944 + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 1.004, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 6, + "id": "open_coupler_MARMAP7+disco_EGUZOL61MAURE", + "est_max_rho": 0.955 } } }, { "id": "s_e4e81e29_bd6579", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL72VERGE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3368,17 +4066,29 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61SSFEY+load_shedding_BAYETY632", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.981, + "best_unitary": { + "max_rho": 0.981, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 0.999, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", "est_max_rho": 0.944 } } @@ -3401,17 +4111,23 @@ "ROGNAL61SSCHA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.0, "solution": { "kind": "unitary", "actions": [ + "disco_P.ORGL61RQROU", "load_shedding_P.ORG6ISCLE1", "disco_RQROUL61ZVILA" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.89, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ORGL61RQROU", + "family": "line_disconnection" } } }, @@ -3432,18 +4148,23 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CHEV5P6", + "disco_CHOLEL61RECOU", "disco_CHOLEL61MAUGE", - "disco_CHOLEL61RECOU" + "open_coupler_CHEV5P6" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.818, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHOLEL61RECOU", + "family": "line_disconnection" } } }, @@ -3464,18 +4185,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -3504,17 +4230,28 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.149, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.153, - "reducing": false + "max_rho": 1.149, + "islanded": false, + "reduces": false, + "n_over_after": 8, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.21, + "islanded": true, + "reduces": false, + "n_over_after": 9, "converged": true, - "true_max_rho": 1.044, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+redispatch_SSEST6GROUPE2", "est_max_rho": 1.095 } @@ -3537,25 +4274,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.8, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.798, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_9147bf", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — EGUZOL61MOUS5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3570,20 +4310,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71SSV.O", - "family": "line_disconnection", - "max_rho": 1.003, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_CHARPP7+disco_CHARPL71SSV.O", + "reco_EGUZOY761+reco_EGUZOY772", + "open_coupler_CHARPP7+open_coupler_ECHALP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.096, - "id": "reco_EGUZOY761+reco_EGUZOY772", - "est_max_rho": 1.794 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_CHARPP7+disco_CHARPL71SSV.O", + "est_max_rho": 1.084 + }, + "solving_pair_rank": 1 } }, { @@ -3604,19 +4350,30 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 107.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.079, "best_unitary": { - "id": "open_coupler_MARMAP7", - "family": "open_coupling", - "max_rho": 1.209, - "reducing": false + "max_rho": 1.079, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_GODINP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.039, - "id": "open_coupler_MARMAP7+disco_GATELL61ZENCH", - "est_max_rho": 1.139 + "resolves": false, + "rank": 1, + "id": "open_coupler_MARMAP7+open_coupler_RUEYRP6", + "est_max_rho": 1.133 } } }, @@ -3638,17 +4395,28 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.097, "best_unitary": { + "max_rho": 1.127, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 1.186, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.097, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.155, + "resolves": false, + "rank": 1, "id": "open_coupler_MOLE P6+open_coupler_RUEYRP7", "est_max_rho": 1.097 } @@ -3671,18 +4439,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -3703,18 +4475,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "open_coupler_BXTO5P6_1", - "disco_BXTO5L61H.VIE" + "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", + "disco_CAPELL71LONNY" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -3735,18 +4512,23 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ARGIEL61SIERE", - "disco_ARGIEL61ETUPE" + "disco_ARGIEL61ETUPE", + "load_shedding_ARGIEY632" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ARGIEL61SIERE", + "family": "line_disconnection" } } }, @@ -3767,23 +4549,30 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 28.5, "solution": { "kind": "unitary", "actions": [ + "disco_RASSUL61S.AIR", + "disco_RQROUL61S.AIR", "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.285, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_RASSUL61S.AIR", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c445b6", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — FLAMAL72MENUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3803,16 +4592,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.1, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+disco_BREUIL61ZSSG7" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.151, + "best_unitary": { + "max_rho": 1.151, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.15, + "islanded": true, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 0.999, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.15 } @@ -3821,7 +4622,7 @@ { "id": "s_e4e81e29_36bfed", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — FLEACL61SANIL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3835,18 +4636,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.2, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "load_shedding_DANTOY632", - "load_shedding_DANTOY633" + "load_shedding_DANTOY632+load_shedding_DANTOY633", + "disco_LESQUL61VERLH+load_shedding_DANTOY632", + "disco_LESQUL62VERLH+load_shedding_DANTOY632" ], "best": { - "id": "load_shedding_DANTOY632", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true - } + "max_rho": 0.892, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 1, + "id": "load_shedding_DANTOY632+load_shedding_DANTOY633", + "est_max_rho": 0.943 + }, + "solving_pair_rank": 1 } }, { @@ -3866,25 +4675,29 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "disco_DANTOL61TUILI", - "load_shedding_DANTOY632" + "disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c5f106", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GARCHL61SSELO", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3900,26 +4713,32 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 1.095, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGLAC", + "disco_GIEN L61ZGIEN+disco_VLEMAL61ZGLAC", + "disco_GIEN L61ZGIEN+disco_NEMOUL61VLEMA" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.063, - "id": "disco_GIEN L61ZGIEN+disco_NEMOUL61VLEMA", - "est_max_rho": 2.209 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGLAC", + "est_max_rho": 0.745 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_ea6086", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GATI5L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -3935,20 +4754,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71ECHAL", - "family": "line_disconnection", - "max_rho": 1.075, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+disco_EGUZOL61MAURE", + "reco_EGUZOY761+reco_EGUZOY772", + "open_coupler_CHARPP7+disco_CHARPL71ECHAL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.056, - "id": "reco_EGUZOY772+disco_EGUZOL61MAURE", - "est_max_rho": 1.947 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+disco_EGUZOL61MAURE", + "est_max_rho": 1.797 + }, + "solving_pair_rank": 1 } }, { @@ -3968,25 +4793,30 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_MARMAP6", "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "open_coupler_MARMAP7" + "load_shedding_MOUS5Y642" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_40a62f", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GATI5L72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -4002,20 +4832,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71ECHAL", - "family": "line_disconnection", - "max_rho": 1.075, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+disco_EGUZOL61MAURE", + "reco_EGUZOY761+reco_EGUZOY772", + "open_coupler_CHARPP7+disco_CHARPL71ECHAL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.055, - "id": "reco_EGUZOY772+disco_EGUZOL61MAURE", - "est_max_rho": 1.947 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+disco_EGUZOL61MAURE", + "est_max_rho": 1.798 + }, + "solving_pair_rank": 1 } }, { @@ -4035,18 +4871,23 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_MARMAP6", "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "open_coupler_MARMAP7" + "load_shedding_MOUS5Y642" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -4071,17 +4912,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.048, "best_unitary": { + "max_rho": 1.054, + "islanded": false, + "reduces": false, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.11, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.048, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.077, + "resolves": false, + "rank": 1, "id": "open_coupler_VERFEP7+load_shedding_VERFEY631", "est_max_rho": 1.048 } @@ -4090,7 +4942,7 @@ { "id": "s_e4e81e29_81ed63", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GAUDIL71TAMAR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -4109,20 +4961,26 @@ "BAYETY761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_PEYROL61SAUMA", - "family": "line_disconnection", - "max_rho": 1.226, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", + "disco_Q.SEIL61SAUMA+disco_MTPELL61PEYRO", + "open_coupler_MTPELP6+disco_Q.SEIL61SAUMA" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.227, + "resolves": true, + "rank": 1, "id": "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", "est_max_rho": 0.773 - } + }, + "solving_pair_rank": 1 } }, { @@ -4146,17 +5004,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.111, "best_unitary": { - "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.225, - "reducing": false + "max_rho": 1.163, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "reco_GANGEL61VIRAD", + "family": "line_reconnection" }, "best_pair": { + "max_rho": 1.111, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.17, + "resolves": false, + "rank": 1, "id": "open_coupler_VERFEP7+disco_CAZARL71VERFE", "est_max_rho": 1.112 } @@ -4165,7 +5034,7 @@ { "id": "s_e4e81e29_3278f8", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GAUDIL72TAMAR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -4184,20 +5053,26 @@ "BAYETY761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_PEYROL61SAUMA", - "family": "line_disconnection", - "max_rho": 1.226, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", + "disco_Q.SEIL61SAUMA+disco_MTPELL61PEYRO", + "open_coupler_MTPELP6+disco_Q.SEIL61SAUMA" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.227, + "resolves": true, + "rank": 1, "id": "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", "est_max_rho": 0.773 - } + }, + "solving_pair_rank": 1 } }, { @@ -4217,18 +5092,23 @@ "PYMONL61VOUGL" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VOUGLP6", - "open_coupler_CPVANP6", - "disco_GEN.PL61VOUGL" + "disco_PYMONL61VOUGL", + "disco_CPVANL61PYMON", + "open_coupler_VOUGLP6" ], "best": { - "id": "open_coupler_VOUGLP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PYMONL61VOUGL", + "family": "line_disconnection" } } }, @@ -4249,18 +5129,23 @@ "PYMONL61VOUGL" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VOUGLP6", - "open_coupler_CPVANP6", - "disco_GEN.PL61VOUGL" + "disco_PYMONL61VOUGL", + "disco_CPVANL61PYMON", + "open_coupler_VOUGLP6" ], "best": { - "id": "open_coupler_VOUGLP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PYMONL61VOUGL", + "family": "line_disconnection" } } }, @@ -4281,16 +5166,21 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.9, "solution": { "kind": "unitary", "actions": [ "open_coupler_MOLE P6" ], "best": { + "max_rho": 0.949, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.999, - "reducing": true + "family": "open_coupling" } } }, @@ -4311,18 +5201,23 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "open_coupler_BREUIP7", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.63, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -4343,18 +5238,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "open_coupler_VERLHP6", - "disco_DANTOL61TUILI" + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -4376,19 +5276,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -4409,19 +5315,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -4442,19 +5354,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -4475,19 +5393,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ - "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_CHESNP6+disco_DANTOL61VERLH" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, - "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "resolves": true, + "rank": 3, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -4508,19 +5432,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_CHESNP6+disco_DANTOL61VERLH" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, - "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "resolves": true, + "rank": 3, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -4540,18 +5470,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -4573,17 +5508,28 @@ "PYMONL61VOUGL" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.966, "best_unitary": { - "id": "disco_SARRYL61SEREI", - "family": "line_disconnection", - "max_rho": 1.029, - "reducing": true + "max_rho": 0.966, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_BOISSP6_1", + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.97, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.021, + "resolves": false, + "rank": 2, "id": "disco_SARRYL61VIELM+load_shedding_CPVANY632", "est_max_rho": 0.97 } @@ -4606,18 +5552,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -4638,18 +5589,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ROBI5P6", "disco_HARC7L61ROBI5", + "open_coupler_ROBI5P6", "disco_ROBI5L61ZROBI" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -4670,49 +5626,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" - ], - "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true - } - } - }, - { - "id": "s_e4e81e29_08e87d", - "gridId": "grid_e4e81e29", - "difficulty": "easy", - "title": "January — Monday evening", - "label": "January — Monday evening — I.NAPL61OTTMA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "I.NAPL61OTTMA", - "contingencyLabel": "I.NAPL61OTTMA", - "baselineMaxLoadingPct": 131.2, - "nOverloadedLines": 4, - "overloadedLines": [ - "CHAL7L61FESSE", - "CHAL7L61SIERE", - "KEMBSL61OTTMA", - "KEMBSL61SIERE" - ], - "nActionsDiscovered": 4, - "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -4737,17 +5666,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.046, "best_unitary": { - "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.108, - "reducing": false + "max_rho": 1.046, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "reco_GANGEL61VIRAD", + "family": "line_reconnection" }, "best_pair": { + "max_rho": 1.046, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.063, + "resolves": false, + "rank": 1, "id": "open_coupler_VERFEP7+load_shedding_VERFEY631", "est_max_rho": 1.046 } @@ -4774,17 +5714,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 100.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.0, "best_unitary": { + "max_rho": 1.0, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.012, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.137, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.197, + "resolves": false, + "rank": 6, "id": "open_coupler_VERFEP7+disco_AYRESL71GAUDI", "est_max_rho": 0.962 } @@ -4793,7 +5744,7 @@ { "id": "s_e4e81e29_bc4e0d", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — ISSOIL61LIGNA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -4809,20 +5760,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "node_merging_BAYETP6", - "family": "node_merging", - "max_rho": 1.041, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSELOP7+open_coupler_ECHALP7", + "open_coupler_SSELOP7+open_coupler_B.MONP7", + "node_merging_BAYETP6+open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.041, - "id": "node_merging_BAYETP6+open_coupler_SSELOP7", - "est_max_rho": 0.826 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSELOP7+open_coupler_ECHALP7", + "est_max_rho": 0.228 + }, + "solving_pair_rank": 1 } }, { @@ -4842,25 +5799,30 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VERLHP6", - "open_coupler_VERFEP7", - "open_coupler_P.SIMP6_1" + "disco_DANTOL61VERLH", + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { - "id": "open_coupler_VERLHP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DANTOL61VERLH", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_6e3590", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — JONQUL61MTAG5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -4874,19 +5836,24 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.7, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_RQROUP6" + "disco_DARSEL61RASSU+load_shedding_P.ORG6ISCLE2" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true - } + "max_rho": 0.817, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 6, + "id": "disco_DARSEL61RASSU+load_shedding_P.ORG6ISCLE2", + "est_max_rho": 0.944 + }, + "solving_pair_rank": 6 } }, { @@ -4906,17 +5873,28 @@ "BOISSL61ZJOUX" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.97, "best_unitary": { + "max_rho": 1.035, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_BOISSP6_1", - "family": "open_coupling", - "max_rho": 1.089, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.97, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.021, + "resolves": false, + "rank": 1, "id": "open_coupler_BOISSP6_1+load_shedding_MACONY633", "est_max_rho": 0.971 } @@ -4940,16 +5918,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 25.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.253, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -4971,16 +5955,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 25.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.255, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -5003,19 +5993,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.989, "best_unitary": { - "id": "open_coupler_MARMAP7", - "family": "open_coupling", - "max_rho": 1.077, - "reducing": false + "max_rho": 0.989, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 0.994, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.037, - "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", - "est_max_rho": 0.985 + "resolves": false, + "rank": 3, + "id": "node_merging_BAYETP6+open_coupler_RUEYRP6", + "est_max_rho": 1.014 } } }, @@ -5036,18 +6037,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -5068,18 +6074,23 @@ "PERTAL61ROYE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PERTAP6", "disco_PERTAL61ROYE", - "disco_CARRIL61VALES" + "disco_VALESL61ZB.ME", + "disco_ROYE L61ZB.ME" ], "best": { - "id": "open_coupler_PERTAP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PERTAL61ROYE", + "family": "line_disconnection" } } }, @@ -5100,18 +6111,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 33.1, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "disco_RQROUL61S.AIR", + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.331, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_RQROUL61S.AIR", + "family": "line_disconnection" } } }, @@ -5132,18 +6147,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_FEUILL61PONTE", "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.822, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5164,18 +6182,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_FEUILL61PONTE", "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.822, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5196,25 +6217,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_FEUILL61PONTE", "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.822, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_161333", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — LIGNAL61RULHA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -5230,20 +6254,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_ISSOIP6", - "family": "open_coupling", - "max_rho": 1.106, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "open_coupler_SSELOP7+disco_CHARPL71SSV.O", + "open_coupler_SSELOP7+open_coupler_ECHALP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.159, - "id": "open_coupler_CHARPP7+disco_CHARPL71SSV.O", - "est_max_rho": 1.07 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "est_max_rho": 0.764 + }, + "solving_pair_rank": 1 } }, { @@ -5263,18 +6293,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -5295,18 +6330,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_COSSIL61COUBE" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -5327,18 +6367,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.3, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.763, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5359,18 +6402,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ - "disco_AUBUSL61SSFEY", - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642" + "open_coupler_MARMAP6" ], "best": { - "id": "disco_AUBUSL61SSFEY", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -5391,18 +6437,23 @@ "ATTAQL72WARAN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 19.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_WARANP7", - "disco_ARGOEL71MANDA", - "disco_FRUGEL71MANDA" + "open_coupler_ATTAQP7", + "disco_ATTAQL72MANDA", + "open_coupler_WARANP7" ], "best": { - "id": "open_coupler_WARANP7", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.195, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_ATTAQP7", + "family": "open_coupling" } } }, @@ -5427,17 +6478,28 @@ "BAYETY761" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 102.5, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.025, "best_unitary": { + "max_rho": 1.077, + "islanded": false, + "reduces": true, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "load_shedding_MTLUCY633", - "family": "load_shedding", - "max_rho": 1.134, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.025, + "islanded": false, + "reduces": true, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.072, + "resolves": false, + "rank": 1, "id": "load_shedding_MTLUCY633+load_shedding_EGUZOY643", "est_max_rho": 1.024 } @@ -5460,17 +6522,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 9.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.096, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -5491,17 +6557,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -5522,18 +6592,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -5554,18 +6629,22 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "disco_DANTOL61TUILI", - "load_shedding_DANTOY632" + "disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -5586,18 +6665,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -5618,17 +6702,22 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.897, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -5649,18 +6738,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_NANTEL62PUTEA" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -5681,16 +6774,21 @@ "MEZE5L63PORCH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.7, "solution": { "kind": "unitary", "actions": [ "node_merging_CERGYP6" ], "best": { + "max_rho": 0.747, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -5711,18 +6809,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_NANTEL62PUTEA" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -5743,16 +6845,21 @@ "MEZE5L61PORCH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.6, "solution": { "kind": "unitary", "actions": [ "node_merging_CERGYP6" ], "best": { + "max_rho": 0.746, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -5773,18 +6880,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -5809,17 +6920,28 @@ "BAYETY761" ], "nActionsDiscovered": 17, + "bestAchievableLoadingPct": 104.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.042, "best_unitary": { + "max_rho": 1.07, + "islanded": false, + "reduces": true, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 1.126, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.042, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.03, + "resolves": false, + "rank": 1, "id": "load_shedding_MOUS5Y641+load_shedding_MOUS5Y642", "est_max_rho": 1.04 } @@ -5842,17 +6964,28 @@ "MORBRL72VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.4, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.024, "best_unitary": { + "max_rho": 1.049, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "disco_BOCTOL71MORBR", - "family": "line_disconnection", - "max_rho": 1.104, - "reducing": true + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.024, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.078, + "resolves": false, + "rank": 1, "id": "open_coupler_SAUS5P7+disco_BOCTOL71MORBR", "est_max_rho": 1.026 } @@ -5875,17 +7008,28 @@ "MORBRL71VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.3, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.973, "best_unitary": { + "max_rho": 1.048, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "disco_BOCTOL71MORBR", - "family": "line_disconnection", - "max_rho": 1.103, - "reducing": true + "family": "line_disconnection" }, "best_pair": { + "max_rho": 0.973, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.024, + "resolves": false, + "rank": 2, "id": "open_coupler_VLEVAP7+disco_BOCTOL71MORBR", "est_max_rho": 1.02 } @@ -5908,18 +7052,22 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_RQROUP6" + "load_shedding_P.ORG6ISCLE2" ], "best": { + "max_rho": 0.907, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "family": "load_shedding" } } }, @@ -5944,17 +7092,28 @@ "BAYETY761" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 108.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.087, "best_unitary": { - "id": "reco_EGUZOY761", - "family": "line_reconnection", - "max_rho": 1.176, - "reducing": false + "max_rho": 1.087, + "islanded": false, + "reduces": true, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "node_merging_GODINP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 1.11, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.168, + "resolves": false, + "rank": 1, "id": "reco_EGUZOY761+load_shedding_VERLHY633", "est_max_rho": 1.111 } @@ -5963,7 +7122,7 @@ { "id": "s_e4e81e29_b01fc8", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — MTAG5L61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -5977,25 +7136,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.3, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MOTT5P6", - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.043, + "best_unitary": { + "max_rho": 1.043, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.215, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "open_coupler_RQROUP6+disco_DARSEL61RASSU", + "est_max_rho": 0.944 } } }, { "id": "s_e4e81e29_3baec7", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — MTEZ5L71RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6011,26 +7182,32 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_B.MONP7", - "family": "open_coupling", - "max_rho": 1.083, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+open_coupler_MARMAP6", + "reco_EGUZOY772+open_coupler_MARMAP6", + "open_coupler_CHARPP7+disco_CHARPL71SSV.O" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.08, - "id": "reco_EGUZOY761+reco_EGUZOY772", - "est_max_rho": 1.851 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+open_coupler_MARMAP6", + "est_max_rho": 0.79 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_65b7d5", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — MTLUCL61MTVIC", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6045,20 +7222,26 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 1.38, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "node_merging_GODINP6+disco_GATELL61ZSSG7", + "node_merging_GODINP6+disco_BREUIL61ZENCH", + "node_merging_GODINP6+disco_BREUIL61ZSSG7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.365, + "resolves": true, + "rank": 1, "id": "node_merging_GODINP6+disco_GATELL61ZSSG7", "est_max_rho": 0.595 - } + }, + "solving_pair_rank": 1 } }, { @@ -6079,18 +7262,23 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 43.8, "solution": { "kind": "unitary", "actions": [ - "disco_Q.SEIL61SAUMA", - "disco_FLOREL61SSVIN", - "disco_BALARL61FLORE" + "disco_PEYROL61SAUMA", + "open_coupler_MTPELP6", + "disco_MTPELL61PEYRO" ], "best": { - "id": "disco_Q.SEIL61SAUMA", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.438, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PEYROL61SAUMA", + "family": "line_disconnection" } } }, @@ -6112,18 +7300,23 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 43.8, "solution": { "kind": "unitary", "actions": [ - "disco_Q.SEIL61SAUMA", - "disco_FLOREL61SSVIN", - "disco_BALARL61FLORE" + "disco_PEYROL61SAUMA", + "disco_MTPELL61PEYRO", + "disco_BALARL61MTPEL" ], "best": { - "id": "disco_Q.SEIL61SAUMA", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.438, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PEYROL61SAUMA", + "family": "line_disconnection" } } }, @@ -6144,25 +7337,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", + "disco_ROUSSL61SEREI", "disco_CHESNL61ROUSS", - "disco_CZTRYL61MOISE" + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_a82125", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — O.CHAL61RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6177,19 +7375,21 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.8, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 1.016, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "open_coupler_RUEYRP7" + ], + "best": { + "max_rho": 0.898, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.01, - "id": "open_coupler_BREUIP7+disco_DANTOL61VERLH", - "est_max_rho": 0.959 + "resolves": true, + "id": "open_coupler_RUEYRP7", + "family": "open_coupling" } } }, @@ -6210,25 +7410,30 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3474b2", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — P.CORL71SSAL7", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6243,25 +7448,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.0, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_RQROUP6", - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.09, + "best_unitary": { + "max_rho": 1.09, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.255, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+disco_FEUILL61PONTE", + "est_max_rho": 0.941 } } }, { "id": "s_e4e81e29_431798", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — P.CORL72SSAL7", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6276,18 +7493,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.0, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_RQROUP6", - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.09, + "best_unitary": { + "max_rho": 1.09, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.256, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+disco_FEUILL61PONTE", + "est_max_rho": 0.94 } } }, @@ -6308,18 +7537,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_V.BELL62ZV.BE", - "open_coupler_NOVIOP6", - "disco_NOVIOL61SSOU5" + "disco_NOVIOL61SSOU5", + "disco_P.GASL63SEINE", + "disco_P.GASL62ZBRIC" ], "best": { - "id": "reco_V.BELL62ZV.BE", - "family": "line_reconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, @@ -6340,18 +7574,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_V.BELL62ZV.BE", - "open_coupler_NOVIOP6", - "disco_NOVIOL61SSOU5" + "disco_NOVIOL61SSOU5", + "disco_P.GASL63SEINE", + "disco_P.GASL62ZBRIC" ], "best": { - "id": "reco_V.BELL62ZV.BE", - "family": "line_reconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, @@ -6372,25 +7611,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_29a9b4", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6405,26 +7649,32 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "reco_TRI.PY76A", - "family": "line_reconnection", - "max_rho": 1.584, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_L.NEUP6+disco_COULAL71TAVEL", + "open_coupler_L.NEUP6+open_coupler_TRI.PP6", + "pst_tap_L.NEUL61L.NTD_inc2+disco_COULAL71TAVEL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.584, - "id": "reco_TRI.PY76A+node_merging_TRI.PP6", - "est_max_rho": 2.704 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_L.NEUP6+disco_COULAL71TAVEL", + "est_max_rho": 2.392 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_682401", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6438,18 +7688,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 106.9, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_RQROUP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.069, + "best_unitary": { + "max_rho": 1.072, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.995, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.069, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE1+redispatch_SSEST6GROUPE2", + "est_max_rho": 0.945 } } }, @@ -6470,18 +7732,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 80.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LAVERP6", - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_LAVERP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.802, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -6502,16 +7767,22 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -6532,18 +7803,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -6566,19 +7842,30 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 108.3, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.083, "best_unitary": { + "max_rho": 1.093, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.15, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.083, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.086, - "id": "open_coupler_PONTEP6+open_coupler_RQROUP6", - "est_max_rho": 1.032 + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+open_coupler_RQROUP6", + "est_max_rho": 1.083 } } }, @@ -6601,26 +7888,37 @@ "PONTEL61REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 117.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.179, "best_unitary": { + "max_rho": 1.22, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "disco_RQROUL61S.AIR", - "family": "line_disconnection", - "max_rho": 1.284, - "reducing": false + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.179, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.166, - "id": "disco_P.ORGL61RQROU+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.146 + "resolves": false, + "rank": 5, + "id": "open_coupler_REALTP6+disco_RQROUL61S.AIR", + "est_max_rho": 1.181 } } }, { "id": "s_e4e81e29_b9d93c", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — POUGEL61SSVIC", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6635,18 +7933,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.9, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY632", - "open_coupler_MARMAP7+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.979, + "best_unitary": { + "max_rho": 0.979, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.998, - "id": "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "est_max_rho": 0.948 + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 0.995, + "islanded": true, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", + "est_max_rho": 0.949 } } }, @@ -6667,25 +7977,30 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_REVIGP6", - "open_coupler_CXSSEP6", - "disco_T.DOML61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_REVIGP6" ], "best": { - "id": "open_coupler_REVIGP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_090e7b", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — ROGNAL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6700,19 +8015,22 @@ "RASSUL61S.AIR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 23.9, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_DARSEL61RASSU", - "family": "line_disconnection", - "max_rho": 1.147, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" + ], + "best": { + "max_rho": 0.239, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.082, - "id": "disco_DARSEL61RASSU+load_shedding_RASSUY631", - "est_max_rho": 1.032 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -6734,23 +8052,30 @@ "RASSUL61S.AIR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 23.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RQROUP6" + "disco_DARSEL61RASSU", + "disco_RASSUL61S.AIR", + "disco_RQROUL61S.AIR" ], "best": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.998, - "reducing": true + "max_rho": 0.238, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_4f46bb", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — RQROUL61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6764,18 +8089,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.5, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_RQROUP6", - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.155, + "best_unitary": { + "max_rho": 1.173, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.155, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 5, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_LAVERP6", + "est_max_rho": 0.945 } } }, @@ -6796,18 +8133,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "disco_AUBUSL61SSFEY" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -6828,25 +8168,28 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "disco_AUBUSL61SSFEY" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.495, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_8b20f7", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — SAUS5L61VLEVA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -6860,19 +8203,22 @@ "M.MORL61VLEVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_M.MORP6", - "family": "open_coupling", - "max_rho": 1.025, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_M.MORL61VLEVA", + "open_coupler_M.MORP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.006, - "id": "open_coupler_M.MORP6+load_shedding_M.MOR6T611", - "est_max_rho": 1.009 + "resolves": true, + "id": "disco_M.MORL61VLEVA", + "family": "line_disconnection" } } }, @@ -6894,17 +8240,23 @@ "VLEVAY764" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ "load_shedding_M.MORY631", - "load_shedding_M.MORY632" + "load_shedding_M.MORY632", + "disco_M.MORL61VLEVA" ], "best": { + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_M.MORY631", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "family": "load_shedding" } } }, @@ -6925,18 +8277,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_M.SEIP7", - "open_coupler_SEREIP6", - "open_coupler_CHESNP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "node_merging_M.SEIP7", - "family": "node_merging", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -6957,18 +8314,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -6989,6 +8351,7 @@ "SARRYL61VIELM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -6996,17 +8359,21 @@ "disco_SARRYL61SEREI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_SARRYL61VIELM", - "family": "line_disconnection", - "max_rho": 0.997, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_dd1e44", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — SEREIL71VLECH", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -7020,18 +8387,21 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 78.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "disco_SEREIL71VIELM+disco_SARRYL61SEREI", - "disco_SEREIL71VIELM+disco_SARRYL61VIELM" + "disco_SEREIL71VIELM" ], "best": { + "max_rho": 0.78, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.996, - "id": "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "est_max_rho": 0.946 + "resolves": true, + "id": "disco_SEREIL71VIELM", + "family": "line_disconnection" } } }, @@ -7052,18 +8422,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "open_coupler_BXTO5P6_1", - "disco_BXTO5L61H.VIE" + "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -7084,18 +8459,23 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ARGIEL61SIERE", - "disco_ARGIEL61ETUPE" + "disco_ARGIEL61ETUPE", + "load_shedding_ARGIEY632" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ARGIEL61SIERE", + "family": "line_disconnection" } } }, @@ -7118,25 +8498,31 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SEREIP6+disco_DANTOL61VERLH", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.946 - } + }, + "solving_pair_rank": 2 } }, { "id": "s_e4e81e29_544784", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — SSESTL61SSTUL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -7150,25 +8536,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.2, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_JONQUP6", - "disco_DURANL61REALT", - "load_shedding_P.ORG6ISCLE1" - ], - "best": { - "id": "open_coupler_JONQUP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.012, + "best_unitary": { + "max_rho": 1.012, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.304, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_JONQUP6+disco_DARSEL62FEUIL", + "est_max_rho": 0.943 } } }, { "id": "s_e4e81e29_224551", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — SSVICL61ZLACA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -7182,16 +8580,21 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.5, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_MOLE P6+load_shedding_MOLE Y641" + "node_merging_GODINP6" ], "best": { - "id": "open_coupler_MOLE P6+load_shedding_MOLE Y641", - "true_max_rho": 1.0, - "true_max_rho_exact": 0.9999994896574, - "converged": true + "max_rho": 0.635, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -7212,25 +8615,30 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "open_coupler_BREUIP7", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.63, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, { "id": "s_e4e81e29_9b960f", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — T.VICL61ZMENT", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -7244,17 +8652,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.1, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.111, + "best_unitary": { + "max_rho": 1.013, + "islanded": true, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.999, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.009, + "islanded": true, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 4, + "id": "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE2", + "est_max_rho": 0.949 } } }, @@ -7282,18 +8703,29 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.111, "best_unitary": { - "id": "open_coupler_JONQUP6", - "family": "open_coupling", - "max_rho": 1.169, - "reducing": false + "max_rho": 1.111, + "islanded": false, + "reduces": false, + "n_over_after": 8, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 8, "converged": true, - "true_max_rho": 1.168, - "id": "redispatch_SSEST6GROUPE1+redispatch_SSEST6GROUPE2", + "resolves": false, + "rank": 2, + "id": "disco_DARSEL61RASSU+redispatch_SSEST6GROUPE1", "est_max_rho": 1.11 } } @@ -7322,19 +8754,30 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.3, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.113, "best_unitary": { - "id": "redispatch_SSEST6GROUPE1", - "family": "redispatch", - "max_rho": 1.17, - "reducing": false + "max_rho": 1.113, + "islanded": false, + "reduces": false, + "n_over_after": 8, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 8, "converged": true, - "true_max_rho": 1.17, - "id": "redispatch_SSEST6GROUPE1+redispatch_SSEST6GROUPE2", - "est_max_rho": 1.111 + "resolves": false, + "rank": 2, + "id": "disco_DARSEL61RASSU+redispatch_SSEST6GROUPE2", + "est_max_rho": 1.112 } } }, @@ -7355,19 +8798,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "pair", "actions": [ "open_coupler_VERLHP6+disco_LESQUL61VERLH", - "open_coupler_VERLHP6+disco_DONZAL61VERLH", - "disco_LESQUL61VERLH+disco_DONZAL71LESQU" + "open_coupler_RUEYRP7+disco_DONZAL71LESQU", + "open_coupler_VERLHP6+disco_DONZAL61VERLH" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_VERLHP6+disco_LESQUL61VERLH", "est_max_rho": 1.88 - } + }, + "solving_pair_rank": 1 } }, { @@ -7387,18 +8837,22 @@ "VLEVAY769" ], "nActionsDiscovered": 7, + "bestAchievableLoadingPct": 91.8, "solution": { "kind": "unitary", "actions": [ "node_merging_VLEVAP6", - "open_coupler_VLEVAP7", - "load_shedding_VLEVA6T611" + "open_coupler_VLEVAP7" ], "best": { + "max_rho": 0.918, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_VLEVAP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -7419,18 +8873,22 @@ "VLEVAY769" ], "nActionsDiscovered": 7, + "bestAchievableLoadingPct": 91.8, "solution": { "kind": "unitary", "actions": [ "node_merging_VLEVAP6", - "open_coupler_VLEVAP7", - "load_shedding_VLEVA6T611" + "open_coupler_VLEVAP7" ], "best": { + "max_rho": 0.918, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_VLEVAP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -7451,18 +8909,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "disco_LESQUL61VERLH" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "family": "line_disconnection" } } }, @@ -7483,18 +8946,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "open_coupler_VERLHP6", - "disco_DANTOL61TUILI" + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -7516,17 +8984,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.027, "best_unitary": { + "max_rho": 1.028, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "disco_CHESNL61ROUSS", - "family": "line_disconnection", - "max_rho": 1.082, - "reducing": false + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.027, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.081, + "resolves": false, + "rank": 3, "id": "disco_CHESNL61ROUSS+open_coupler_SEREIP7", "est_max_rho": 1.028 } diff --git a/data/rte7000_tht/scenarios.json b/data/rte7000_tht/scenarios.json index b822cd13..0b5880f8 100644 --- a/data/rte7000_tht/scenarios.json +++ b/data/rte7000_tht/scenarios.json @@ -1,14 +1,15 @@ { "grid_family": "RTE7000 France THT", - "description": "Difficulty-graded N-1 scenarios on reconstructed RTE7000 France THT (>=200 kV) operating points. Non-antenna only. Difficulty is the expert recommender's solvability at the 95% monitoring factor: EASY = a suggested unitary action resolves; MEDIUM = no unitary resolves but a first-identified combination does; HARD = neither.", + "description": "Difficulty-graded N-1 scenarios on reconstructed RTE7000 France THT (>=200 kV) operating points. Non-antenna only. Difficulty is the expert recommender's solvability at the 95% monitoring factor, judged by a REAL simulation of each action/combination (islanding-rejecting; pre-existing N-state overloads not caused by the contingency are ignored): EASY = a suggested unitary action truly resolves; MEDIUM = no unitary resolves but a first-identified combination does; HARD = neither. Unplayable cases (no action brings the worst line below 120%) are excluded.", "monitoring_factor": 0.95, "threshold_pct": 95.0, + "remove_ceiling_pct": 120.0, "counts": { - "easy": 453, - "hard": 124, - "medium": 79 + "easy": 457, + "medium": 80, + "hard": 110 }, - "n_scenarios": 656, + "n_scenarios": 647, "difficulties": [ "easy", "medium", @@ -32,25 +33,30 @@ "ETUPEL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ETUPEL61ZHIRS", - "disco_SIEREL61ZHIRS" + "disco_SIEREL61ZHIRS", + "open_coupler_ETUPEP6" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ETUPEL61ZHIRS", + "family": "line_disconnection" } } }, { "id": "s_5384e039_1a1e0c", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — AVALLL61J.VIL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -66,26 +72,32 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 1.145, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_SSELOP6+disco_GIEN L61ZGIEN", + "open_coupler_TABARP6+disco_GIEN L61ZGIEN" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.174, - "id": "open_coupler_SSELOP6+disco_NEMOUL61VLEMA", - "est_max_rho": 1.961 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.877 + }, + "solving_pair_rank": 1 } }, { "id": "s_5384e039_4a4a4e", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — AVALLL61VNOL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -99,19 +111,23 @@ "SSELOY766" ], "nActionsDiscovered": 7, + "bestAchievableLoadingPct": 40.6, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.074, - "reducing": false - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.406, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.039, - "id": "open_coupler_SSELOP7+disco_GAUGLL72SSELO", - "est_max_rho": 1.064 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -132,18 +148,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DISTRP6", - "open_coupler_AVOI5P7_1", + "disco_AVOI5L61AVOIN", + "open_coupler_AVOI5P7", "disco_AVOINL61DISTR" ], "best": { - "id": "open_coupler_DISTRP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -164,18 +185,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DISTRP6", - "open_coupler_AVOI5P7_1", - "disco_AVOINL61DISTR" + "disco_AVOI5L61AVOIN", + "disco_AVOINL61DISTR", + "disco_AVOINL61QUINT" ], "best": { - "id": "open_coupler_DISTRP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -196,18 +222,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSVINY631", "disco_O.CHAL61RUEYR", + "load_shedding_SSVINY631", "load_shedding_SSVINY633" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.651, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_O.CHAL61RUEYR", + "family": "line_disconnection" } } }, @@ -228,18 +259,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -260,18 +296,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -292,18 +333,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -324,18 +370,23 @@ "SSELOY766" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "disco_GAUGLL72SSELO", + "open_coupler_SSELOP7", + "open_coupler_SSELOP6" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GAUGLL72SSELO", + "family": "line_disconnection" } } }, @@ -356,18 +407,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 39.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_CRENEP6", - "disco_BOCTOL71M.SEI", - "disco_CRENEL61ZP.V5" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.392, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, @@ -388,25 +444,30 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 39.1, "solution": { "kind": "unitary", "actions": [ "open_coupler_CRENEP6", - "disco_FOSSEL61ORSON", - "disco_CRENEL61ZP.V5" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.391, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5384e039_84e485", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -421,20 +482,26 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.397, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_RQROUP6+disco_FEUILL61LAVER", + "open_coupler_RQROUP6+open_coupler_ROGNAP6", + "open_coupler_RQROUP6+disco_DARSEL62FEUIL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.369, - "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", - "est_max_rho": 0.552 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_RQROUP6+disco_FEUILL61LAVER", + "est_max_rho": 0.538 + }, + "solving_pair_rank": 1 } }, { @@ -454,18 +521,23 @@ "CUBNEL72MQIS" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_BLAYAL61BRAUD", - "open_coupler_SAUCAP7", - "load_shedding_MQIS Y631" + "disco_CUBNEL72MQIS", + "open_coupler_MQIS P7", + "disco_MQIS L71SAUCA" ], "best": { - "id": "reco_BLAYAL61BRAUD", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CUBNEL72MQIS", + "family": "line_disconnection" } } }, @@ -486,16 +558,23 @@ "MERLAL61RECOU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_MERLAL61RECOU", + "disco_CHOLEL61RECOU", "open_coupler_MERLAP6" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MERLAL61RECOU", + "family": "line_disconnection" } } }, @@ -516,50 +595,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.SAMP6", - "disco_ESTR6L61FAMAR", - "disco_ESTR6L61VALEN" - ], - "best": { - "id": "open_coupler_P.SAMP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true - } - } - }, - { - "id": "s_5384e039_73ce12", - "gridId": "grid_5384e039", - "difficulty": "easy", - "title": "January — Monday evening", - "label": "January — Monday evening — CANTEL73SAUCA", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CANTEL73SAUCA", - "contingencyLabel": "CANTEL73SAUCA", - "baselineMaxLoadingPct": 101.5, - "nOverloadedLines": 1, - "overloadedLines": [ - "CANTEL72SAUCA" - ], - "nActionsDiscovered": 12, - "solution": { - "kind": "unitary", - "actions": [ - "node_merging_CAZARP6", - "node_merging_PRAGNP6", - "open_coupler_MQIS P7" + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "open_coupler_P.SAMP6" ], "best": { - "id": "node_merging_CAZARP6", - "family": "node_merging", - "max_rho": 0.991, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -580,18 +632,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "disco_P.GASL61ZLIE5", - "load_shedding_COMPIY632" + "load_shedding_COMPIY632", + "node_merging_CERGYP6", + "disco_CERGYL61PUISE" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.835, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_COMPIY632", + "family": "load_shedding" } } }, @@ -612,18 +669,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -644,18 +706,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -676,18 +743,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -708,25 +780,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.469, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, { "id": "s_5384e039_149ed1", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — CHESNL61NEMOU", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -744,20 +821,26 @@ "TABARY762" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_TABARP6", - "family": "open_coupling", - "max_rho": 1.503, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_TABARP6+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_TABARL61ZGIEN" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.518, - "id": "open_coupler_TABARP6+open_coupler_SSELOP7", - "est_max_rho": 2.798 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.652 + }, + "solving_pair_rank": 1 } }, { @@ -777,18 +860,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 42.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", + "disco_CRENEL71REVIG", "disco_BARBUL61CRENE" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.425, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -809,18 +897,23 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DISTRP6", "disco_CHOLEL61DISTR", - "disco_CHOLEL61RECOU" + "disco_CHOLEL61RECOU", + "disco_MERLAL61RECOU" ], "best": { - "id": "open_coupler_DISTRP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHOLEL61DISTR", + "family": "line_disconnection" } } }, @@ -841,18 +934,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 47.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.471, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -873,18 +971,23 @@ "CIROLL62LOGES" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_VLEJUP6", - "open_coupler_LOGESP6", - "load_shedding_LOGESY641" + "disco_CIROLL62LOGES", + "load_shedding_LOGESY641", + "load_shedding_LOGESY642" ], "best": { - "id": "node_merging_VLEJUP6", - "family": "node_merging", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL62LOGES", + "family": "line_disconnection" } } }, @@ -905,18 +1008,23 @@ "CIROLL61LOGES" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_VLEJUP6", - "open_coupler_LOGESP6", - "load_shedding_LOGESY641" + "disco_CIROLL61LOGES", + "load_shedding_LOGESY641", + "load_shedding_LOGESY642" ], "best": { - "id": "node_merging_VLEJUP6", - "family": "node_merging", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL61LOGES", + "family": "line_disconnection" } } }, @@ -938,18 +1046,23 @@ "CPNIEL61SELF2" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_PARISY633", - "load_shedding_PARISY632", - "load_shedding_PARISY631" + "disco_CPNIEL61PARIS", + "disco_CPNIEL61SELF2", + "disco_CPNIEL63SELF2" ], "best": { - "id": "load_shedding_PARISY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CPNIEL61PARIS", + "family": "line_disconnection" } } }, @@ -970,16 +1083,21 @@ "COR.PL61PTCHA" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 67.4, "solution": { "kind": "unitary", "actions": [ "disco_BEZONL61PTCHA" ], "best": { + "max_rho": 0.674, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BEZONL61PTCHA", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -1000,18 +1118,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 77.0, "solution": { "kind": "unitary", "actions": [ + "disco_VLEMAL61ZGLAC", "load_shedding_TABAR6AUXIL1.2", - "load_shedding_TABAR6AUXIL3.4", - "load_shedding_NEMOUY631" + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "load_shedding_TABAR6AUXIL1.2", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.77, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -1032,6 +1155,7 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.0, "solution": { "kind": "unitary", "actions": [ @@ -1040,10 +1164,14 @@ "load_shedding_TRANSY631" ], "best": { + "max_rho": 0.88, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, @@ -1064,25 +1192,30 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6", - "disco_CONF5L61ZP.IL", - "disco_MOIRAL61ZP.IL" + "disco_CONF5L61CPNIE", + "disco_MOIRAL61ZP.IL", + "disco_CONF5L61ZP.IL" ], "best": { - "id": "open_coupler_CPNIEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_5384e039_c31d02", "gridId": "grid_5384e039", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61PARIS", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1096,25 +1229,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "open_coupler_CPNIEP6+load_shedding_CONF5Y611", - "load_shedding_CONF5Y611+load_shedding_CONF5Y612" + "disco_CONF5L61CPNIE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "est_max_rho": 0.941 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_5384e039_3f4713", "gridId": "grid_5384e039", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61SELF2", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1128,25 +1264,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "open_coupler_CPNIEP6+load_shedding_CONF5Y611", - "load_shedding_CONF5Y611+load_shedding_CONF5Y612" + "disco_CONF5L61CPNIE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "est_max_rho": 0.941 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_5384e039_c2556e", "gridId": "grid_5384e039", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL63SELF2", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1160,18 +1299,21 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "open_coupler_CPNIEP6+load_shedding_CONF5Y611", - "load_shedding_CONF5Y611+load_shedding_CONF5Y612" + "disco_CONF5L61CPNIE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CPNIEP6+load_shedding_CONF5Y612", - "est_max_rho": 0.941 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, @@ -1192,18 +1334,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 34.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.347, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -1224,18 +1371,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 57.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP6", "open_coupler_CRENEP7", + "open_coupler_CRENEP6", "disco_BARBUL61CRENE" ], "best": { - "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.579, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP7", + "family": "open_coupling" } } }, @@ -1256,19 +1408,26 @@ "MAROLL61REVIG" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 85.6, "solution": { "kind": "pair", "actions": [ - "open_coupler_CRENEP6+load_shedding_MAROLY631", + "open_coupler_CRENEP6+load_shedding_MAROLY632", "load_shedding_MAROLY632+load_shedding_MAROLY631", - "open_coupler_CRENEP6+load_shedding_MAROLY632" + "open_coupler_CRENEP6+load_shedding_MAROLY631" ], "best": { + "max_rho": 0.856, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, - "id": "open_coupler_CRENEP6+load_shedding_MAROLY631", + "resolves": true, + "rank": 4, + "id": "open_coupler_CRENEP6+load_shedding_MAROLY632", "est_max_rho": 0.94 - } + }, + "solving_pair_rank": 2 } }, { @@ -1288,18 +1447,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 22.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP6", "open_coupler_CRENEP7", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP6", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.225, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP7", + "family": "open_coupling" } } }, @@ -1320,18 +1484,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 61.4, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_MOTT5P6" + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.614, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, @@ -1352,6 +1521,7 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 63.1, "solution": { "kind": "unitary", "actions": [ @@ -1360,17 +1530,21 @@ "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.631, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, { "id": "s_5384e039_ac739f", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — CUBNEL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1384,20 +1558,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CUBNEL72DONZA", - "family": "line_disconnection", - "max_rho": 1.09, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_PREGUP7+open_coupler_PREGUP7_1", + "open_coupler_PREGUP7+disco_BRAUDL72PREGU", + "disco_BRAUDL72PREGU+open_coupler_PREGUP7_1" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.092, - "id": "open_coupler_CUBNEP7+disco_CUBNEL72DONZA", - "est_max_rho": 2.167 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_PREGUP7+open_coupler_PREGUP7_1", + "est_max_rho": 0.192 + }, + "solving_pair_rank": 1 } }, { @@ -1417,18 +1597,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1449,18 +1634,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1481,18 +1671,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1513,18 +1708,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.441, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1546,17 +1746,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.969, "best_unitary": { + "max_rho": 0.994, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "disco_DURANL61REALT", - "family": "line_disconnection", - "max_rho": 1.047, - "reducing": true + "family": "line_disconnection" }, "best_pair": { + "max_rho": 0.969, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.02, + "resolves": false, + "rank": 1, "id": "disco_DURANL61REALT+disco_E.BOTL61REALT", "est_max_rho": 0.969 } @@ -1579,23 +1790,28 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.0, "solution": { "kind": "unitary", "actions": [ "disco_CHOLEL61RECOU" ], "best": { + "max_rho": 0.9, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CHOLEL61RECOU", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5384e039_313e74", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — DONZAL71GOLF5", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1610,26 +1826,32 @@ "TRI.PY761" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_COUFFL61SSVIC", - "family": "line_disconnection", - "max_rho": 1.006, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "disco_MOLE L62RUEYR+disco_COUFFL61SSVIC", + "disco_MOLE L61RUEYR+disco_COUFFL61SSVIC" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.0, - "id": "open_coupler_SSVINP6+disco_LIVIEL61SSVIN", - "est_max_rho": 0.397 - } + "resolves": true, + "rank": 2, + "id": "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "est_max_rho": 0.6 + }, + "solving_pair_rank": 2 } }, { "id": "s_5384e039_5a16f9", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — DONZAL72GOLF5", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1644,20 +1866,26 @@ "TRI.PY761" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_COUFFL61SSVIC", - "family": "line_disconnection", - "max_rho": 1.006, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "disco_MOLE L62RUEYR+disco_COUFFL61SSVIC", + "disco_MOLE L61RUEYR+disco_COUFFL61SSVIC" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.0, - "id": "open_coupler_SSVINP6+disco_LIVIEL61SSVIN", - "est_max_rho": 0.396 - } + "resolves": true, + "rank": 2, + "id": "open_coupler_EGUZOP7+disco_COUFFL61SSVIC", + "est_max_rho": 0.601 + }, + "solving_pair_rank": 2 } }, { @@ -1677,16 +1905,23 @@ "ECHALL62SOLEI" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_ECHALL62SOLEI", + "open_coupler_ECHALP6", "load_shedding_SOLEIY632" ], "best": { - "id": "load_shedding_SOLEIY632", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ECHALL62SOLEI", + "family": "line_disconnection" } } }, @@ -1707,18 +1942,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.GASP6_1", "disco_NOVIOL61SSOU5", + "disco_SEINEL62SSOU5", "disco_P.GASL63SEINE" ], "best": { - "id": "open_coupler_P.GASP6_1", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, @@ -1739,18 +1979,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_NOVIOL61SSOU5", - "disco_P.GASL63SEINE", - "disco_SEINEL62SSOU5" + "disco_SEINEL62SSOU5", + "disco_P.GASL63SEINE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_NOVIOL61SSOU5", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -1771,25 +2016,30 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.GASP6_1", "disco_NOVIOL61SSOU5", + "disco_SEINEL62SSOU5", "disco_P.GASL63SEINE" ], "best": { - "id": "open_coupler_P.GASP6_1", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, { "id": "s_5384e039_9598b8", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — FEUILL61SSCHA", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1803,19 +2053,23 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 1.004, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6", + "load_shedding_RASSUY631" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.001, - "id": "disco_DARSEL62FEUIL+open_coupler_PONTEP6", - "est_max_rho": 0.951 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -1836,18 +2090,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.444, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -1868,18 +2127,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 32.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.322, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -1900,6 +2164,7 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.5, "solution": { "kind": "unitary", "actions": [ @@ -1908,17 +2173,21 @@ "disco_MERLAL61RECOU" ], "best": { + "max_rho": 0.845, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CHOLEL61RECOU", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5384e039_c5f106", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — GARCHL61SSELO", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1933,19 +2202,21 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 92.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 1.094, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_VLEMAL61ZGLAC" + ], + "best": { + "max_rho": 0.92, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.094, - "id": "disco_GIEN L61ZGIEN+disco_NEMOUL61VLEMA", - "est_max_rho": 1.93 + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -1966,25 +2237,29 @@ "SSELOY766" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 87.7, "solution": { "kind": "unitary", "actions": [ "open_coupler_SSELOP7", - "disco_GAUGLL72SSELO", - "open_coupler_SSELOP6" + "disco_GAUGLL72SSELO" ], "best": { + "max_rho": 0.877, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5384e039_ea6086", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — GATI5L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -1998,19 +2273,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.6, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_GAUGLL72SSELO", - "family": "line_disconnection", - "max_rho": 1.039, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "open_coupler_SSELOP6", + "disco_GAUGLL72SSELO", + "open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.596, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.003, - "id": "load_shedding_SSELOY631+disco_SSELOL61VNOL", - "est_max_rho": 0.954 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2031,18 +2310,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 78.8, "solution": { "kind": "unitary", "actions": [ - "disco_TABARL61ZGIEN", - "disco_TABARL61ZGLAC", - "load_shedding_TABAR6AUXIL1.2" + "disco_VLEMAL61ZGLAC", + "load_shedding_TABAR6AUXIL1.2", + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "disco_TABARL61ZGIEN", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.788, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -2063,18 +2347,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 78.8, "solution": { "kind": "unitary", "actions": [ - "disco_TABARL61ZGIEN", - "disco_TABARL61ZGLAC", - "load_shedding_TABAR6AUXIL1.2" + "disco_VLEMAL61ZGLAC", + "load_shedding_TABAR6AUXIL1.2", + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "disco_TABARL61ZGIEN", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.788, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -2097,17 +2386,28 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 107.5, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.075, "best_unitary": { + "max_rho": 1.116, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_SSVINP6", - "family": "open_coupling", - "max_rho": 1.175, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.075, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.131, + "resolves": false, + "rank": 3, "id": "open_coupler_SSVINP6+load_shedding_SSVINY631", "est_max_rho": 1.087 } @@ -2131,18 +2431,23 @@ "TABARY762" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.0, "solution": { "kind": "unitary", "actions": [ - "disco_GARCHL61ZGIEN", - "disco_TABARL61ZGLAC", - "load_shedding_TABAR6AUXIL1.2" + "disco_VLEMAL61ZGLAC", + "load_shedding_TABAR6AUXIL1.2", + "load_shedding_TABAR6AUXIL3.4" ], "best": { - "id": "disco_GARCHL61ZGIEN", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.82, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -2163,18 +2468,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2195,18 +2505,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2227,18 +2542,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_GARCHY633", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_GARCHY633", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.459, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2259,18 +2579,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2291,18 +2616,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_GARCHY633", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.458, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -2324,6 +2654,7 @@ "CRENEY766" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 60.5, "solution": { "kind": "pair", "actions": [ @@ -2332,17 +2663,23 @@ "reco_MARL6L71VIGY+load_shedding_VINCEY634" ], "best": { + "max_rho": 0.605, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.99, + "resolves": true, + "rank": 2, "id": "open_coupler_CRENEP7+disco_LANEUL61ZMAD6", "est_max_rho": 0.94 - } + }, + "solving_pair_rank": 2 } }, { "id": "s_5384e039_3065fe", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — J.VILL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2358,20 +2695,26 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 1.143, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_SSELOP6+disco_GIEN L61ZGIEN", + "open_coupler_TABARP6+disco_GIEN L61ZGIEN" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.174, - "id": "open_coupler_SSELOP6+disco_NEMOUL61VLEMA", - "est_max_rho": 1.967 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.874 + }, + "solving_pair_rank": 1 } }, { @@ -2392,17 +2735,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.017, "best_unitary": { + "max_rho": 1.055, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_SEPTEP6", - "family": "open_coupling", - "max_rho": 1.111, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.017, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.071, + "resolves": false, + "rank": 1, "id": "open_coupler_SEPTEP6+disco_E.BOTL61REALT", "est_max_rho": 1.025 } @@ -2411,7 +2765,7 @@ { "id": "s_5384e039_14bf53", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — LAVERL61SEPTE", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2428,20 +2782,26 @@ "PONTEL62REALT" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 1.136, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_DARSEL62FEUIL+disco_RASSUL61RQROU", + "disco_DARSEL61FEUIL+disco_RASSUL61RQROU", + "open_coupler_DARSEP6+disco_DARSEL62FEUIL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.19, - "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "est_max_rho": 1.9 - } + "resolves": true, + "rank": 1, + "id": "disco_DARSEL62FEUIL+disco_RASSUL61RQROU", + "est_max_rho": 0.704 + }, + "solving_pair_rank": 1 } }, { @@ -2461,24 +2821,29 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 84.9, "solution": { "kind": "unitary", "actions": [ - "disco_GRIM5L61TRANS", - "disco_GRIM5L62TRANS" + "disco_GRIM5L62TRANS", + "disco_GRIM5L61TRANS" ], "best": { - "id": "disco_GRIM5L61TRANS", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.849, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GRIM5L62TRANS", + "family": "line_disconnection" } } }, { "id": "s_5384e039_56746e", "gridId": "grid_5384e039", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — M.PONL65PONTE", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2492,17 +2857,30 @@ "BOLL5L61TERRA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.5, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_TERRAY631", - "load_shedding_TERRAY633" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.975, + "best_unitary": { + "max_rho": 0.891, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, "id": "load_shedding_TERRAY631", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.764, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_TERRAY631+load_shedding_TERRAY633", + "est_max_rho": 0.942 } } }, @@ -2523,18 +2901,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP6", "open_coupler_CRENEP7", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP6", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.59, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP7", + "family": "open_coupling" } } }, @@ -2557,17 +2940,28 @@ "SIEREL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.019, "best_unitary": { + "max_rho": 1.082, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 1.139, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.019, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.073, + "resolves": false, + "rank": 2, "id": "open_coupler_ETUPEP6+load_shedding_ETUPEY632", "est_max_rho": 1.033 } @@ -2590,18 +2984,23 @@ "ATTAQL72WARAN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 21.1, "solution": { "kind": "unitary", "actions": [ - "disco_ARGOEL71MANDA", - "disco_FRUGEL71MANDA", - "disco_ARGOEL71FRUGE" + "open_coupler_ATTAQP7", + "disco_ATTAQL72MANDA", + "disco_FRUGEL71MANDA" ], "best": { - "id": "disco_ARGOEL71MANDA", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.211, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_ATTAQP7", + "family": "open_coupling" } } }, @@ -2622,6 +3021,7 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.4, "solution": { "kind": "unitary", "actions": [ @@ -2630,17 +3030,21 @@ "disco_BARBUL61FOSSE" ], "best": { + "max_rho": 0.734, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5384e039_e013a3", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — MASTAL61P.SAM", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -2654,19 +3058,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_ESTR6L61VALEN", - "family": "line_disconnection", - "max_rho": 1.104, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "open_coupler_P.SAMP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.071, - "id": "disco_ESTR6L61FAMAR+load_shedding_MAUBEY641", - "est_max_rho": 1.017 + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -2687,16 +3095,23 @@ "MASTAL61P.SAM" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_CAPELY761" + "disco_MASTAL61P.SAM", + "node_merging_BXTO5P6", + "open_coupler_P.SAMP6" ], "best": { - "id": "reco_CAPELY761", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MASTAL61P.SAM", + "family": "line_disconnection" } } }, @@ -2717,17 +3132,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 61.4, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.614, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.989, - "reducing": true + "family": "load_shedding" } } }, @@ -2748,17 +3169,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 64.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.647, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.989, - "reducing": true + "family": "load_shedding" } } }, @@ -2779,18 +3206,23 @@ "MQIS Y761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.1, "solution": { "kind": "unitary", "actions": [ - "reco_BLAYAL61BRAUD", "open_coupler_MQIS P7", + "reco_BLAYAL61BRAUD", "disco_CUBNEL72MQIS" ], "best": { - "id": "reco_BLAYAL61BRAUD", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.861, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MQIS P7", + "family": "open_coupling" } } }, @@ -2812,6 +3244,7 @@ "O.CHAL61ZS.CU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.5, "solution": { "kind": "unitary", "actions": [ @@ -2819,10 +3252,14 @@ "load_shedding_BALARY633" ], "best": { + "max_rho": 0.945, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_BALARY632", - "family": "load_shedding", - "max_rho": 0.995, - "reducing": false + "family": "load_shedding" } } }, @@ -2843,18 +3280,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 32.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.328, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -2875,18 +3317,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 33.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.335, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, @@ -2907,18 +3354,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "open_coupler_SSVINP6", + "disco_LIVIEL61SSVIN", + "disco_GAUDIL61SSVIN" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.905, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -2939,18 +3391,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "open_coupler_SSVINP6", + "disco_LIVIEL61SSVIN", + "disco_GAUDIL61SSVIN" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.905, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -2971,18 +3428,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_NOVIOL61SSOU5", - "disco_P.GASL63SEINE", - "disco_SEINEL62SSOU5" + "disco_SEINEL62SSOU5", + "disco_P.GASL63SEINE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_NOVIOL61SSOU5", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -3003,18 +3465,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_NOVIOL61SSOU5", - "disco_P.GASL63SEINE", - "disco_SEINEL62SSOU5" + "disco_SEINEL62SSOU5", + "disco_P.GASL63SEINE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_NOVIOL61SSOU5", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -3035,25 +3502,30 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_P.GASP6_1", "disco_NOVIOL61SSOU5", + "disco_SEINEL62SSOU5", "disco_P.GASL63SEINE" ], "best": { - "id": "open_coupler_P.GASP6_1", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, { "id": "s_5384e039_29a9b4", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3068,26 +3540,32 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_TAVELL71TRI.P", - "family": "line_disconnection", - "max_rho": 1.374, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_TRI.PY76A+pst_tap_L.NEUL61L.NTD_inc2", + "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_MTGROP6", + "reco_TRI.PY76A+reco_B.MONY762" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.405, - "id": "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_MTGROP6", - "est_max_rho": 1.618 - } + "resolves": true, + "rank": 1, + "id": "reco_TRI.PY76A+pst_tap_L.NEUL61L.NTD_inc2", + "est_max_rho": 1.307 + }, + "solving_pair_rank": 1 } }, { "id": "s_5384e039_682401", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3102,20 +3580,26 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.123, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "pst_tap_L.NEUL61L.NTD_inc2+disco_JONQUL61MTAG5", + "open_coupler_RQROUP6+disco_FEUILL61LAVER", + "open_coupler_ROGNAP6+disco_FEUILL61LAVER" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.139, - "id": "open_coupler_RQROUP6+disco_FEUILL61LAVER", - "est_max_rho": 0.582 - } + "resolves": true, + "rank": 1, + "id": "pst_tap_L.NEUL61L.NTD_inc2+disco_JONQUL61MTAG5", + "est_max_rho": 0.478 + }, + "solving_pair_rank": 1 } }, { @@ -3135,18 +3619,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.462, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -3167,25 +3656,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SSELOY631", - "load_shedding_SSELOY633", - "load_shedding_SSELOY634" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "load_shedding_SSELOY631", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.462, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, { "id": "s_5384e039_6d8ce0", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — PONTEL61REALT", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3201,26 +3695,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.271, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.271, - "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "est_max_rho": 1.905 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "est_max_rho": 0.864 + }, + "solving_pair_rank": 1 } }, { "id": "s_5384e039_7d0521", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — PONTEL62REALT", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3236,20 +3736,26 @@ "PONTEL61REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.271, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.271, - "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "est_max_rho": 1.905 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SEPTEP6+open_coupler_PALUNP6", + "est_max_rho": 0.865 + }, + "solving_pair_rank": 1 } }, { @@ -3270,18 +3776,23 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.4, "solution": { "kind": "unitary", "actions": [ "disco_E.BOTL61REALT", - "disco_DURANL61REALT", - "open_coupler_PONTEP6" + "open_coupler_PONTEP6", + "disco_DURANL61REALT" ], "best": { + "max_rho": 0.944, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "family": "line_disconnection" } } }, @@ -3302,17 +3813,23 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 56.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RASSUY631", - "disco_RQROUL61ZVILA" + "open_coupler_RQROUP6", + "disco_P.ORGL61RQROU", + "load_shedding_RASSUY631" ], "best": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.56, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -3335,17 +3852,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.012, "best_unitary": { + "max_rho": 1.017, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 1.07, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.012, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.065, + "resolves": false, + "rank": 1, "id": "open_coupler_DARSEP6+open_coupler_SSTULP6", "est_max_rho": 1.012 } @@ -3368,17 +3896,22 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 84.9, "solution": { "kind": "unitary", "actions": [ - "disco_GRIM5L61TRANS", - "disco_GRIM5L62TRANS" + "disco_GRIM5L62TRANS", + "disco_GRIM5L61TRANS" ], "best": { - "id": "disco_GRIM5L61TRANS", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.849, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GRIM5L62TRANS", + "family": "line_disconnection" } } }, @@ -3399,6 +3932,7 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.5, "solution": { "kind": "unitary", "actions": [ @@ -3407,17 +3941,21 @@ "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.705, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.99, - "reducing": true + "family": "load_shedding" } } }, { "id": "s_5384e039_52c6d8", "gridId": "grid_5384e039", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — SEREIL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", @@ -3433,20 +3971,26 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 1.236, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "open_coupler_SSELOP6+disco_GIEN L61ZGIEN", + "open_coupler_SSELOP6+open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.174, - "id": "open_coupler_SSELOP6+disco_NEMOUL61VLEMA", - "est_max_rho": 1.961 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGIEN", + "est_max_rho": 0.922 + }, + "solving_pair_rank": 1 } }, { @@ -3466,18 +4010,23 @@ "SSELOY766" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 53.5, "solution": { "kind": "unitary", "actions": [ - "disco_SSELOL61VNOL", - "load_shedding_SSELOY631", - "load_shedding_SSELOY633" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "disco_SSELOL61VNOL", - "family": "line_disconnection", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.535, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -3498,18 +4047,23 @@ "P.ROSL61SSAVO" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 47.2, "solution": { "kind": "unitary", "actions": [ - "reco_MARL6L71VIGY", + "disco_BERGHL61ZSAR6", "open_coupler_BERGHP6", "disco_BERGHL61MARL6" ], "best": { - "id": "reco_MARL6L71VIGY", - "family": "line_reconnection", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.472, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BERGHL61ZSAR6", + "family": "line_disconnection" } } }, @@ -3530,18 +4084,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_MOTT5P6" + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.657, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.989, - "reducing": true + "family": "load_shedding" } } }, @@ -3562,18 +4121,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_MOTT5P6" + "open_coupler_RQROUP6", + "disco_DARSEL61RASSU", + "disco_RASSUL61RQROU" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.768, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -3594,18 +4158,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.7, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSVINP6", "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "load_shedding_SSVINY633" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.927, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -3626,18 +4195,23 @@ "MTAHUL61SSVIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSVINP6", "load_shedding_SSVINY631", - "load_shedding_SSVINY633", - "open_coupler_SSVINP6" + "load_shedding_SSVINY633" ], "best": { - "id": "load_shedding_SSVINY631", - "family": "load_shedding", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.926, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSVINP6", + "family": "open_coupling" } } }, @@ -3658,25 +4232,30 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 33.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CRENEP7", "open_coupler_CRENEP6", - "disco_BARBUL61CRENE" + "open_coupler_CRENEP7", + "disco_CRENEL71REVIG" ], "best": { - "id": "open_coupler_CRENEP7", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "max_rho": 0.332, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CRENEP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_721c95", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — ALBERL71COCHE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -3692,24 +4271,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.0, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": false + "kind": "none", + "best_nonisl_max_rho": 1.04, + "best_unitary": { + "max_rho": 1.04, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", + "est_max_rho": 0.93 } } }, { "id": "s_5fc376c7_782e00", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — ARDOIL61MOTT5", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -3725,15 +4317,28 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 117.4, "solution": { - "kind": "pair", - "actions": [ - "reco_TRI.PY76B+open_coupler_DARSEP6", - "open_coupler_MTGROP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.174, + "best_unitary": { + "max_rho": 1.188, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_DARSEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.174, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.984, + "resolves": false, + "rank": 1, "id": "reco_TRI.PY76B+open_coupler_DARSEP6", "est_max_rho": 0.935 } @@ -3757,17 +4362,22 @@ "SIEREL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 3.5, "solution": { "kind": "unitary", "actions": [ - "disco_SIEREL61ZHIRS", - "disco_ETUPEL61ZHIRS" + "disco_ETUPEL61ZHIRS", + "disco_SIEREL61ZHIRS" ], "best": { - "id": "disco_SIEREL61ZHIRS", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.035, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ETUPEL61ZHIRS", + "family": "line_disconnection" } } }, @@ -3788,18 +4398,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3820,18 +4435,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_COMPIL61LATEN", - "disco_COMPIL61MORU" + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3852,18 +4472,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3884,18 +4509,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_COMPIL61LATEN", - "disco_COMPIL61MORU" + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3916,18 +4546,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -3948,17 +4583,23 @@ "P.GASL61SAUS5" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_P.GASL61SAUS5", "load_shedding_SAUS56T611", "load_shedding_SAUS56T612" ], "best": { - "id": "load_shedding_SAUS56T611", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.GASL61SAUS5", + "family": "line_disconnection" } } }, @@ -3979,24 +4620,30 @@ "P.GASL61SAUS5" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_P.GASL61SAUS5", "load_shedding_SAUS56T611", "load_shedding_SAUS56T612" ], "best": { - "id": "load_shedding_SAUS56T611", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.GASL61SAUS5", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_1a1e0c", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — AVALLL61J.VIL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4010,18 +4657,22 @@ "SSELOY766" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 61.8, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "disco_BAYETL72GREPI+open_coupler_CHARPP7_1", - "disco_CHARPL72GREPI+open_coupler_CHARPP7_1" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO" ], "best": { + "max_rho": 0.618, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "est_max_rho": 0.401 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4042,18 +4693,22 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "disco_GAUGLL72SSELO", - "load_shedding_GARCHY631" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.456, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4074,18 +4729,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 80.0, "solution": { "kind": "unitary", "actions": [ + "disco_CAPELL71LONNY", "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_CAPELL71LONNY" + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.8, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -4106,17 +4766,22 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.2, "solution": { "kind": "unitary", "actions": [ - "disco_CAPELL71LONNY", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY" ], "best": { - "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.452, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -4138,16 +4803,21 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.8, "solution": { "kind": "unitary", "actions": [ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.928, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -4168,25 +4838,30 @@ "P.GASL61SAUS5" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_AVENIL61ROMAI", + "disco_P.GASL61SAUS5", "load_shedding_SAUS56T611", "load_shedding_SAUS56T612" ], "best": { - "id": "reco_AVENIL61ROMAI", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.GASL61SAUS5", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_f0456c", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — AVIGNL61MOTT5", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4202,14 +4877,28 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 118.4, "solution": { - "kind": "pair", - "actions": [ - "reco_TRI.PY76B+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.184, + "best_unitary": { + "max_rho": 1.198, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.99, + "resolves": false, + "id": "open_coupler_DARSEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.184, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, "id": "reco_TRI.PY76B+open_coupler_DARSEP6", "est_max_rho": 1.184 } @@ -4236,17 +4925,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.065, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.022, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.97 } @@ -4273,17 +4973,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.066, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.102, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.023, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.971 } @@ -4310,17 +5021,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.065, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.022, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.97 } @@ -4350,17 +5072,28 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.158, "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 7, "converged": true, - "true_max_rho": 1.006, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.134 } @@ -4390,17 +5123,28 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.158, "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 7, "converged": true, - "true_max_rho": 1.006, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.134 } @@ -4430,17 +5174,28 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.158, "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 7, "converged": true, - "true_max_rho": 1.006, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.134 } @@ -4463,18 +5218,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.3, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.633, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_reconnection" } } }, @@ -4495,18 +5255,23 @@ "SSELOY766" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 47.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "disco_GARCHL61ZGIEN", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.473, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4527,18 +5292,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_reconnection" } } }, @@ -4559,18 +5329,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 47.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_MARMAP7", - "disco_GARCHL61ZGIEN" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.472, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -4595,19 +5370,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.052, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.104, - "reducing": false + "max_rho": 1.052, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.048, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.101, - "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.045 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 1.049 } } }, @@ -4632,19 +5418,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.058, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.11, - "reducing": false + "max_rho": 1.058, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.054, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.106, - "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.05 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 1.054 } } }, @@ -4669,26 +5466,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.057, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.109, - "reducing": false + "max_rho": 1.057, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.053, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.106, - "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.049 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 1.053 } } }, { "id": "s_5fc376c7_3adaf4", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BOCTOL71N.SE1", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4705,25 +5513,37 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6+disco_FEUILL61PONTE" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.099, + "best_unitary": { + "max_rho": 1.099, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.987, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 1.039 - } - } + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_DARSEP6+disco_DARSEL61FEUIL", + "est_max_rho": 1.102 + } + } }, { "id": "s_5fc376c7_353f4a", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BOCTOL72N.SE2", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4740,18 +5560,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6+disco_FEUILL61PONTE" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.099, + "best_unitary": { + "max_rho": 1.099, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.987, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 1.039 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_DARSEP6+disco_DARSEL61FEUIL", + "est_max_rho": 1.102 } } }, @@ -4772,6 +5604,7 @@ "BOISSL61ZJOUX" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 60.0, "solution": { "kind": "unitary", "actions": [ @@ -4780,10 +5613,14 @@ "load_shedding_MACONY631" ], "best": { + "max_rho": 0.6, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_BOISSP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -4804,24 +5641,30 @@ "JOUX L61MEUNI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 3.3, "solution": { "kind": "unitary", "actions": [ + "disco_BOISSL61MEUNI", "load_shedding_JOUX Y631", "load_shedding_JOUX Y632" ], "best": { - "id": "load_shedding_JOUX Y631", - "family": "load_shedding", - "max_rho": 0.999, - "reducing": true + "max_rho": 0.033, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOISSL61MEUNI", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_84e485", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -4837,20 +5680,26 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.41, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_RQROUP6+disco_DARSEL62FEUIL", + "open_coupler_RQROUP6+disco_DARSEL61FEUIL", + "disco_FEUILL61LAVER+disco_DARSEL61RASSU" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.352, - "id": "disco_FEUILL61LAVER+disco_RQROUL61S.AIR", - "est_max_rho": 1.167 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_RQROUP6+disco_DARSEL62FEUIL", + "est_max_rho": 0.797 + }, + "solving_pair_rank": 1 } }, { @@ -4870,18 +5719,23 @@ "BOLL5L62TRI.P" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 68.1, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BOLL5P6", "open_coupler_MTGROP6", - "disco_LAVEYL61MTGRO", - "disco_LAVEYL61P.BOR" + "disco_LAVEYL61MTGRO" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.681, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BOLL5P6", + "family": "open_coupling" } } }, @@ -4902,18 +5756,23 @@ "BOLL5L61TRI.P" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 54.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BOLL5P6", "disco_LAVEYL61MTGRO", - "disco_LAVEYL61P.BOR", - "disco_BARJAL61ZLAFI" + "disco_LAVEYL61P.BOR" ], "best": { - "id": "disco_LAVEYL61MTGRO", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.548, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BOLL5P6", + "family": "open_coupling" } } }, @@ -4934,18 +5793,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_BIANCL61FREJU" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.854, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -4966,18 +5830,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_BIANCL61FREJU" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.854, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -4998,18 +5867,23 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_TRI.PY76B", + "disco_P.ORGL71TAVEL", "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2" ], "best": { - "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ORGL71TAVEL", + "family": "line_disconnection" } } }, @@ -5030,18 +5904,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "open_coupler_PRATCP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -5062,18 +5941,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -5095,18 +5979,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5128,18 +6015,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -5161,24 +6051,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.851, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_be2272", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BVIL7L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5195,16 +6089,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_RASSUY631+open_coupler_JONQUP6", - "disco_FEUILL61PONTE+load_shedding_RQROUY632", - "open_coupler_PONTEP6+load_shedding_RQROUY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.158, + "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.991, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.135 } @@ -5213,7 +6119,7 @@ { "id": "s_5fc376c7_43dc87", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — BVILXL72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5230,16 +6136,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_RASSUY631+open_coupler_JONQUP6", - "disco_FEUILL61PONTE+load_shedding_RQROUY632", - "open_coupler_PONTEP6+load_shedding_RQROUY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.158, + "best_unitary": { + "max_rho": 1.158, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.99, + "resolves": false, + "rank": 3, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.135 } @@ -5262,18 +6180,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_ESTR6L61FAMAR", - "disco_CAPELL61P.SAM", - "disco_CAPELL71LONNY" + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "disco_CAPELL61P.SAM" ], "best": { - "id": "disco_ESTR6L61FAMAR", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -5294,18 +6217,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", + "disco_CAPELL71LONNY", "open_coupler_LATENP7_1", - "disco_CAPELL71LONNY" + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.79, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -5326,18 +6254,23 @@ "THEIXL61ZPRIN" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 77.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_COR.PP6", "disco_P.ROUL61THEIX", - "disco_COR.PL61ZPRIN" + "disco_COR.PL61ZPRIN", + "disco_CONCAL61P.ROU" ], "best": { - "id": "open_coupler_COR.PP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.778, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ROUL61THEIX", + "family": "line_disconnection" } } }, @@ -5358,18 +6291,23 @@ "THEIXL61ZPRIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_THEIXL61ZPRIN", "disco_P.ROUL61THEIX", - "disco_COR.PL61ZPRIN" + "load_shedding_THEIXY633" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_THEIXL61ZPRIN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -5390,18 +6328,23 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_ESTR6L61VALEN", - "disco_ESTR6L61FAMAR", - "disco_CAPELL61P.SAM" + "disco_MAUBEL61P.SAM", + "disco_ESTR6L61MAUBE", + "open_coupler_P.SAMP6" ], "best": { - "id": "disco_ESTR6L61VALEN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MAUBEL61P.SAM", + "family": "line_disconnection" } } }, @@ -5423,18 +6366,23 @@ "CAPELL61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 17.0, "solution": { "kind": "unitary", "actions": [ - "disco_CAPELL61H.VIE", "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", "disco_BXTO5L61LATEN" ], "best": { - "id": "disco_CAPELL61H.VIE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.17, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -5455,6 +6403,7 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.4, "solution": { "kind": "pair", "actions": [ @@ -5462,11 +6411,17 @@ "open_coupler_LATENP7_1+disco_HERS5L71VLEVA" ], "best": { + "max_rho": 0.894, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, + "resolves": true, + "rank": 1, "id": "open_coupler_LATENP7_1+disco_HERS5L71LATEN", "est_max_rho": 0.936 - } + }, + "solving_pair_rank": 1 } }, { @@ -5486,16 +6441,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MORU Y632" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "load_shedding_MORU Y632", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -5516,24 +6478,30 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "load_shedding_MORU Y632" + "disco_COMPIL61LATEN", + "disco_MOIMOL61MORU", + "disco_MOIMOL61P.GAS" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_7f1036", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — CARRIL62TERRI", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5547,18 +6515,21 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 41.7, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1+open_coupler_LATENP7", - "open_coupler_LATENP7+open_coupler_CHEVAP7", - "open_coupler_LATENP7+open_coupler_CHEVAP7_1" + "disco_COMPIL61MORU" ], "best": { + "max_rho": 0.417, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_LATENP7_1+open_coupler_LATENP7", - "est_max_rho": 0.272 + "resolves": true, + "id": "disco_COMPIL61MORU", + "family": "line_disconnection" } } }, @@ -5581,18 +6552,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.2, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.902, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.053 + }, + "solving_pair_rank": 3 } }, { @@ -5614,18 +6591,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.2, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.902, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.053 + }, + "solving_pair_rank": 3 } }, { @@ -5645,18 +6628,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -5677,18 +6665,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "node_merging_GODINP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -5709,18 +6702,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.5, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.635, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_reconnection" } } }, @@ -5741,18 +6739,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.5, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { + "max_rho": 0.635, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_reconnection" } } }, @@ -5774,6 +6777,7 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 82.6, "solution": { "kind": "pair", "actions": [ @@ -5782,11 +6786,17 @@ "open_coupler_CHEV5P6+open_coupler_COR.PP6" ], "best": { + "max_rho": 0.826, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, + "resolves": true, + "rank": 1, "id": "open_coupler_CHEV5P6+load_shedding_CHEV5Y634", "est_max_rho": 0.936 - } + }, + "solving_pair_rank": 1 } }, { @@ -5807,16 +6817,21 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 86.4, "solution": { "kind": "unitary", "actions": [ "open_coupler_CHEV5P6" ], "best": { + "max_rho": 0.864, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -5837,18 +6852,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY", + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.451, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -5869,18 +6889,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 45.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", "disco_BXTO5L61LATEN", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.451, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -5905,17 +6930,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.038, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.065, - "reducing": false + "max_rho": 1.038, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.022, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.97 } @@ -5924,7 +6960,7 @@ { "id": "s_5fc376c7_b3a56c", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — CHOO1L71LONNY", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5942,24 +6978,37 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.039, + "best_unitary": { + "max_rho": 1.093, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.945 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.039, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.053 } } }, { "id": "s_5fc376c7_6f8087", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — CHOO2L72LONNY", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -5977,17 +7026,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.039, + "best_unitary": { + "max_rho": 1.093, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.945 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.039, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.052 } } }, @@ -6008,18 +7070,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_GODINP6", - "open_coupler_RUEYRP7", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -6040,18 +7107,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "node_merging_GODINP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -6073,25 +7145,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.981, - "reducing": true + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_8fb65d", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — COR.PL61ZBAST", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6106,20 +7181,26 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 1.265, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_GRANZY763+node_merging_GRANZP7", + "open_coupler_CHEV5P6+open_coupler_COR.PP6", + "reco_GRANZY763+node_merging_GRANZP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.167, - "id": "open_coupler_CHEV5P6+open_coupler_COR.PP6", - "est_max_rho": 0.457 - } + "resolves": true, + "rank": 1, + "id": "reco_GRANZY763+node_merging_GRANZP7", + "est_max_rho": 0.372 + }, + "solving_pair_rank": 1 } }, { @@ -6139,16 +7220,23 @@ "COR.PL61ZBAST" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_COR.PL61ZBAST", + "disco_CHEV5L61ZBAST", "open_coupler_CHEV5P6" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COR.PL61ZBAST", + "family": "line_disconnection" } } }, @@ -6170,6 +7258,7 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 80.6, "solution": { "kind": "unitary", "actions": [ @@ -6177,17 +7266,21 @@ "disco_CHEV5L61RECOU" ], "best": { + "max_rho": 0.806, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, { "id": "s_5fc376c7_dee748", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — COR.PL64CORD5", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6202,16 +7295,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 95.9, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MTGROP6" - ], - "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 0.959, + "best_unitary": { + "max_rho": 0.956, + "islanded": true, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.908, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_MTGROP6", + "est_max_rho": 0.934 } } }, @@ -6235,17 +7342,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.011, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.017, - "reducing": false + "max_rho": 1.011, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.097, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.013, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.962 } @@ -6268,18 +7386,23 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 60.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_CORMEP6", "disco_CERGYL63ZFRO6", - "load_shedding_PUTEAY633", - "disco_NANTEL62PUTEA" + "load_shedding_PUTEAY633" ], "best": { - "id": "disco_CERGYL63ZFRO6", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.608, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_CORMEP6", + "family": "open_coupling" } } }, @@ -6300,18 +7423,23 @@ "CORMEL61NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_CERGYP6", + "disco_CERGYL63ZFRO6", "open_coupler_CORMEP6", "disco_NANTEL62PUTEA" ], "best": { - "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.662, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CERGYL63ZFRO6", + "family": "line_disconnection" } } }, @@ -6332,6 +7460,7 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.6, "solution": { "kind": "unitary", "actions": [ @@ -6339,10 +7468,14 @@ "load_shedding_TRANSY633" ], "best": { + "max_rho": 0.886, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_FREJUL62TRANS", - "family": "line_disconnection", - "max_rho": 0.987, - "reducing": true + "family": "line_disconnection" } } }, @@ -6363,18 +7496,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE", - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -6395,18 +7531,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -6427,18 +7566,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -6459,18 +7601,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 72.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "max_rho": 0.721, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -6491,18 +7636,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 56.5, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.565, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -6523,6 +7673,7 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 57.1, "solution": { "kind": "unitary", "actions": [ @@ -6531,10 +7682,14 @@ "disco_FOSSEL61ORSON" ], "best": { + "max_rho": 0.571, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -6555,25 +7710,30 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.4, "solution": { "kind": "unitary", "actions": [ + "disco_CRENEL71REVIG", "disco_BARBUL61CRENE", - "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_BARBUL61FOSSE" ], "best": { - "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.444, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CRENEL71REVIG", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_ac739f", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — CUBNEL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6588,20 +7748,26 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BXLIEP6", - "family": "open_coupling", - "max_rho": 1.28, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "node_merging_GRANZP7+open_coupler_BXLIEP6", + "reco_GRANZY763+node_merging_GRANZP7", + "open_coupler_PRATCP6+open_coupler_ECHALP6_1" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.282, + "resolves": true, + "rank": 1, "id": "node_merging_GRANZP7+open_coupler_BXLIEP6", "est_max_rho": 0.349 - } + }, + "solving_pair_rank": 1 } }, { @@ -6621,25 +7787,30 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 50.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "load_shedding_P.ORGY632" + "disco_P.ORGL71TAVEL", + "reco_TRI.PY76B", + "open_coupler_ROGNAP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.504, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ORGL71TAVEL", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_312f77", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — D.BURL72TABAR", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -6656,17 +7827,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.7, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.037, + "best_unitary": { + "max_rho": 1.08, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.983, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 0.934 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.037, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 } } }, @@ -6689,18 +7873,25 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.0, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1" + "open_coupler_RQROUP6+open_coupler_SSELOP6", + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.86, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.983, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 0.934 - } + "resolves": true, + "rank": 4, + "id": "open_coupler_RQROUP6+open_coupler_SSELOP6", + "est_max_rho": 1.063 + }, + "solving_pair_rank": 3 } }, { @@ -6723,18 +7914,29 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 95.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.957, "best_unitary": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 1.07, - "reducing": false + "max_rho": 1.017, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.957, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.007, - "id": "open_coupler_SSELOP7+open_coupler_LATENP7", + "resolves": false, + "rank": 2, + "id": "open_coupler_SSELOP7+open_coupler_LATENP7_1", "est_max_rho": 0.957 } } @@ -6756,57 +7958,22 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 51.4, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "load_shedding_P.ORGY632" + "disco_P.ORGL71TAVEL", + "reco_TRI.PY76B" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true - } - } - }, - { - "id": "s_5fc376c7_6b287c", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — DARSEL61RASSU", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "DARSEL61RASSU", - "contingencyLabel": "DARSEL61RASSU", - "baselineMaxLoadingPct": 127.5, - "nOverloadedLines": 7, - "overloadedLines": [ - "FEUILL61SSCHA", - "LAVERL61SELF3", - "LAVERL61SEPTE", - "LAVERL62SELF3", - "ROGNAL61SSCHA", - "P.ORGY761", - "TRI.PY76A" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_ROGNAY632", - "family": "load_shedding", - "max_rho": 1.33, - "reducing": false - }, - "best_pair": { + "max_rho": 0.514, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.319, - "id": "load_shedding_ROGNAY632+redispatch_SSCHA6GROUPE2", - "est_max_rho": 1.253 + "resolves": true, + "id": "disco_P.ORGL71TAVEL", + "family": "line_disconnection" } } }, @@ -6827,18 +7994,23 @@ "THEIXL61ZPRIN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_COR.PL61ZPRIN", + "disco_THEIXL61ZPRIN", "load_shedding_THEIXY633", "load_shedding_THEIXY635" ], "best": { - "id": "disco_COR.PL61ZPRIN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_THEIXL61ZPRIN", + "family": "line_disconnection" } } }, @@ -6865,17 +8037,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 119.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.19, "best_unitary": { + "max_rho": 1.188, + "islanded": true, + "reduces": false, + "n_over_after": 7, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.251, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.188, + "islanded": true, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.25, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_RASSUY631", "est_max_rho": 1.188 } @@ -6898,17 +8081,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.5, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.825, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true + "family": "load_shedding" } } }, @@ -6929,17 +8118,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.3, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.833, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.997, - "reducing": true + "family": "load_shedding" } } }, @@ -6962,17 +8157,25 @@ "TRI.PY76A" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 93.8, "solution": { "kind": "pair", "actions": [ + "open_coupler_SOLEIP6+open_coupler_PRATCP6", "open_coupler_PRATCP6+load_shedding_SOLEIY633" ], "best": { + "max_rho": 0.938, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.991, - "id": "open_coupler_PRATCP6+load_shedding_SOLEIY633", - "est_max_rho": 0.937 - } + "resolves": true, + "rank": 4, + "id": "open_coupler_SOLEIP6+open_coupler_PRATCP6", + "est_max_rho": 1.016 + }, + "solving_pair_rank": 1 } }, { @@ -6992,17 +8195,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.9, "solution": { "kind": "unitary", "actions": [ + "open_coupler_PRATCP6", "node_merging_GODINP6", - "open_coupler_PRATCP6" + "disco_MARGEL61PRATC" ], "best": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.839, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PRATCP6", + "family": "open_coupling" } } }, @@ -7023,6 +8232,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -7031,10 +8241,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -7055,18 +8269,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -7087,6 +8306,7 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 54.8, "solution": { "kind": "unitary", "actions": [ @@ -7094,10 +8314,14 @@ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.548, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BXTO5L61LATEN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -7118,6 +8342,7 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -7125,17 +8350,21 @@ "disco_ARGIEL61ETUPE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_ARGIEL61SIERE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_dd71e8", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — F.FREL71M.SEI", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -7150,23 +8379,32 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.7, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_LATENP7_1" + "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "open_coupler_LATENP7_1+load_shedding_COMPIY632", + "curtail_H.VIEIN2+load_shedding_MORU Y632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true - } + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 3, + "id": "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "est_max_rho": 0.937 + }, + "solving_pair_rank": 3 } }, { "id": "s_5fc376c7_883903", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — F.FREL71VESLE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -7181,55 +8419,26 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.3, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_LATENP7_1" + "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "open_coupler_LATENP7_1+load_shedding_COMPIY632", + "curtail_H.VIEIN2+load_shedding_MORU Y632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.998, - "reducing": true - } - } - }, - { - "id": "s_5fc376c7_9598b8", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — FEUILL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "FEUILL61SSCHA", - "contingencyLabel": "FEUILL61SSCHA", - "baselineMaxLoadingPct": 159.2, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "LAVERL61SELF3", - "LAVERL61SEPTE", - "LAVERL62SELF3", - "RASSUL61S.AIR", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.533, - "reducing": false - }, - "best_pair": { + "max_rho": 0.943, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.235, - "id": "open_coupler_ROGNAP6+load_shedding_RASSUY631", - "est_max_rho": 1.452 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_LATENP7_1+load_shedding_MORU Y632", + "est_max_rho": 0.943 + }, + "solving_pair_rank": 3 } }, { @@ -7255,17 +8464,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 116.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.16, "best_unitary": { + "max_rho": 1.16, + "islanded": false, + "reduces": false, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.221, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.157, + "islanded": true, + "reduces": false, + "n_over_after": 6, "converged": true, - "true_max_rho": 1.032, + "resolves": false, + "rank": 1, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.157 } @@ -7294,17 +8514,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.159, "best_unitary": { + "max_rho": 1.159, + "islanded": false, + "reduces": false, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.22, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.157, + "islanded": true, + "reduces": false, + "n_over_after": 6, "converged": true, - "true_max_rho": 1.032, + "resolves": false, + "rank": 1, "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", "est_max_rho": 1.157 } @@ -7327,18 +8558,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.8, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.738, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -7359,18 +8595,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -7391,18 +8632,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_GODINP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -7425,16 +8671,21 @@ "SSJOSL61ZORVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 94.0, "solution": { "kind": "unitary", "actions": [ "disco_CHEV5L61RECOU" ], "best": { + "max_rho": 0.94, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CHEV5L61RECOU", - "family": "line_disconnection", - "max_rho": 0.99, - "reducing": true + "family": "line_disconnection" } } }, @@ -7455,18 +8706,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 62.8, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "reco_TRI.PY76B" + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.628, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -7488,16 +8744,22 @@ "TABARY762" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 83.1, "solution": { "kind": "unitary", "actions": [ + "disco_VLEMAL61ZGLAC", "disco_NEMOUL61VLEMA" ], "best": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.831, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -7518,17 +8780,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6", + "open_coupler_MOTT5P6", + "disco_DARSEL61RASSU" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.982, - "reducing": true + "max_rho": 0.861, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -7549,17 +8817,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 55.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSELOP6", "open_coupler_SSELOP7", "disco_GAUGLL72SSELO" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.558, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -7580,17 +8854,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 55.7, "solution": { "kind": "unitary", "actions": [ + "open_coupler_SSELOP6", "open_coupler_SSELOP7", "disco_GAUGLL72SSELO" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.557, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -7612,16 +8892,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 92.3, "solution": { "kind": "unitary", "actions": [ "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.923, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -7642,19 +8927,24 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", - "open_coupler_MTGROP6", - "disco_GODINL61ZNEG5" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true - } + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" + } } }, { @@ -7675,17 +8965,22 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 83.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6" + "open_coupler_PRATCP6", + "open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.832, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PRATCP6", + "family": "open_coupling" } } }, @@ -7707,16 +9002,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 92.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.922, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "family": "open_coupling" } } }, @@ -7738,17 +9038,22 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 83.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6" + "open_coupler_PRATCP6", + "open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.832, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PRATCP6", + "family": "open_coupling" } } }, @@ -7769,18 +9074,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -7801,18 +9111,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -7835,18 +9150,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.9, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.899, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -7868,18 +9189,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.9, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.899, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -7901,18 +9228,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.1, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.901, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -7934,18 +9267,24 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.9, "solution": { "kind": "pair", "actions": [ - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE2" + "open_coupler_SSELOP7+open_coupler_RQROUP6" ], "best": { + "max_rho": 0.899, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.984, - "id": "open_coupler_SSELOP7+load_shedding_P.ORG6ISCLE1", - "est_max_rho": 0.935 - } + "resolves": true, + "rank": 3, + "id": "open_coupler_SSELOP7+open_coupler_RQROUP6", + "est_max_rho": 1.058 + }, + "solving_pair_rank": 3 } }, { @@ -7965,18 +9304,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 47.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_CHARPP7_1", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.478, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -7997,18 +9341,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 48.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "disco_GAUGLL72SSELO", - "open_coupler_CHARPP7" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.483, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -8029,18 +9378,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_HARC7L61ROBI5", "open_coupler_ROBI5P6", - "open_coupler_VLEJUP6", - "disco_HARC7L61ROBI5" + "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -8061,18 +9415,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -8093,18 +9452,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -8125,17 +9489,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.9, "solution": { "kind": "unitary", "actions": [ - "disco_VIGY L61ZPELT", + "open_coupler_REVIGP6", + "open_coupler_M.SEIP7_1", "disco_BEZAUL61ZPELT" ], "best": { - "id": "disco_VIGY L61ZPELT", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.599, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_REVIGP6", + "family": "open_coupling" } } }, @@ -8156,18 +9526,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_BEZAUL61VANDI", - "disco_BEZAUL62VANDI", - "disco_T.DOML61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_REVIGP6" ], "best": { - "id": "disco_BEZAUL61VANDI", - "family": "line_disconnection", - "max_rho": 0.988, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, @@ -8188,24 +9563,29 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6", - "open_coupler_SIEREP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_08e87d", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — I.NAPL61OTTMA", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -8221,17 +9601,21 @@ "KEMBSL61OTTMA" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 119.3, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_FESSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.193, + "best_unitary": { + "max_rho": 0.213, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true - } + "family": "open_coupling" + }, + "best_pair": null } }, { @@ -8251,6 +9635,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -8259,10 +9644,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_disconnection" } } }, @@ -8283,6 +9672,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -8291,10 +9681,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_disconnection" } } }, @@ -8315,6 +9709,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -8323,17 +9718,21 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.989, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_3065fe", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — J.VILL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -8347,18 +9746,22 @@ "SSELOY766" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 59.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "disco_BAYETL72GREPI+open_coupler_CHARPP7_1", - "open_coupler_CHARPP7_1+disco_CHARPL72GREPI" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO" ], "best": { + "max_rho": 0.599, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "est_max_rho": 0.401 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -8380,16 +9783,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 17.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.179, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -8411,16 +9820,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 17.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.179, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -8441,18 +9856,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", "disco_BXTO5L61LATEN", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.46, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -8473,18 +9893,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_COMPIL61LATEN", "disco_COMPIL61MORU", - "load_shedding_MORU Y632" + "load_shedding_COMPIY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_COMPIL61LATEN", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -8506,17 +9931,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.7, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.857, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -8540,136 +9969,33 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 119.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.19, "best_unitary": { + "max_rho": 1.192, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.255, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.19, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.051, + "resolves": false, + "rank": 1, "id": "open_coupler_SEPTEP6+load_shedding_RASSUY631", "est_max_rho": 1.191 } } }, - { - "id": "s_5fc376c7_0563a4", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — LAVERL61SELF3", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL61SELF3", - "contingencyLabel": "LAVERL61SELF3", - "baselineMaxLoadingPct": 164.3, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "FEUILL61SSCHA", - "P.ORGL61RQROU", - "RASSUL61S.AIR", - "ROGNAL61SSCHA", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.636, - "reducing": false - }, - "best_pair": { - "converged": true, - "true_max_rho": 1.31, - "id": "open_coupler_DARSEP6+load_shedding_RASSUY631", - "est_max_rho": 1.535 - } - } - }, - { - "id": "s_5fc376c7_14bf53", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — LAVERL61SEPTE", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL61SEPTE", - "contingencyLabel": "LAVERL61SEPTE", - "baselineMaxLoadingPct": 164.3, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "FEUILL61SSCHA", - "P.ORGL61RQROU", - "RASSUL61S.AIR", - "ROGNAL61SSCHA", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.636, - "reducing": false - }, - "best_pair": { - "converged": true, - "true_max_rho": 1.311, - "id": "open_coupler_DARSEP6+load_shedding_RASSUY631", - "est_max_rho": 1.536 - } - } - }, - { - "id": "s_5fc376c7_4e6e75", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — LAVERL62SELF3", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL62SELF3", - "contingencyLabel": "LAVERL62SELF3", - "baselineMaxLoadingPct": 164.3, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "FEUILL61SSCHA", - "P.ORGL61RQROU", - "RASSUL61S.AIR", - "ROGNAL61SSCHA", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.636, - "reducing": false - }, - "best_pair": { - "converged": true, - "true_max_rho": 1.31, - "id": "open_coupler_DARSEP6+load_shedding_RASSUY631", - "est_max_rho": 1.535 - } - } - }, { "id": "s_5fc376c7_41fc9d", "gridId": "grid_5fc376c7", @@ -8687,18 +10013,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_DANTOL61TUILI", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "disco_DANTOL61TUILI", - "family": "line_disconnection", - "max_rho": 0.984, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -8719,16 +10050,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_FREJUL62TRANS" + "disco_BOUTRL61TRANS", + "disco_FREJUL62TRANS", + "load_shedding_TRANSY633" ], "best": { - "id": "disco_FREJUL62TRANS", - "family": "line_disconnection", - "max_rho": 0.989, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, @@ -8749,18 +10087,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 78.3, "solution": { "kind": "unitary", "actions": [ + "disco_CAPELL71LONNY", "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "curtail_H.VIEIN2" + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.783, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -8781,18 +10124,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 78.3, "solution": { "kind": "unitary", "actions": [ + "disco_CAPELL71LONNY", "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "curtail_H.VIEIN2" + "open_coupler_LATENP7_1" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.783, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -8813,18 +10161,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RASSUY631", - "load_shedding_RQROUY632", - "open_coupler_SSTULP6" + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -8845,18 +10197,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.6, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.656, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -8879,17 +10236,28 @@ "SIEREL61ZHIRS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.156, "best_unitary": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 1.305, - "reducing": false + "max_rho": 1.218, + "islanded": false, + "reduces": true, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "disco_BZGUIL61ETUPE", + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.156, + "islanded": false, + "reduces": true, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.217, + "resolves": false, + "rank": 1, "id": "disco_BZGUIL61ETUPE+load_shedding_ETUPEY632", "est_max_rho": 1.155 } @@ -8912,18 +10280,23 @@ "BAYETL61MTVIC" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", "load_shedding_MTVICY631", - "load_shedding_MTVICY633" + "load_shedding_MTVICY633", + "open_coupler_ISSOIP6" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.81, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_MTVICY631", + "family": "load_shedding" } } }, @@ -8944,6 +10317,7 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.5, "solution": { "kind": "unitary", "actions": [ @@ -8952,10 +10326,14 @@ "disco_FOSSEL61ORSON" ], "best": { + "max_rho": 0.735, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -8977,16 +10355,21 @@ "MAUBEL61P.SAM" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 89.8, "solution": { "kind": "unitary", "actions": [ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.898, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -9008,19 +10391,26 @@ "CAPELL61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.6, "solution": { "kind": "pair", "actions": [ - "disco_CAPELL71LONNY+curtail_H.VIEIN2", "open_coupler_LATENP7_1+disco_CAPELL71LONNY", + "disco_CAPELL71LONNY+curtail_H.VIEIN2", "open_coupler_LATENP6+disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.926, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "disco_CAPELL71LONNY+curtail_H.VIEIN2", + "resolves": true, + "rank": 2, + "id": "open_coupler_LATENP7_1+disco_CAPELL71LONNY", "est_max_rho": 0.936 - } + }, + "solving_pair_rank": 1 } }, { @@ -9040,16 +10430,21 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 91.8, "solution": { "kind": "unitary", "actions": [ "disco_CAPELL71LONNY" ], "best": { + "max_rho": 0.918, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CAPELL71LONNY", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -9070,18 +10465,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "disco_DARSEL61FEUIL" + "open_coupler_RQROUP6", + "open_coupler_MOTT5P6", + "disco_DARSEL61RASSU" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.982, - "reducing": true + "max_rho": 0.855, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -9102,18 +10502,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 64.5, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", "reco_TRI.PY76B", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.645, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -9134,17 +10539,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.667, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "family": "load_shedding" } } }, @@ -9165,18 +10576,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ROBI5P6", "disco_HARC7L61ROBI5", + "open_coupler_ROBI5P6", "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -9197,18 +10613,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_HARC7L61ROBI5", "open_coupler_ROBI5P6", - "open_coupler_VLEJUP6", - "disco_HARC7L61ROBI5" + "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -9229,18 +10650,23 @@ "BAYETL61MTVIC" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", "load_shedding_MTVICY631", - "load_shedding_MTVICY633" + "load_shedding_MTVICY633", + "open_coupler_ISSOIP6" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.811, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_MTVICY631", + "family": "load_shedding" } } }, @@ -9261,17 +10687,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.0, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.79, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.984, - "reducing": true + "family": "load_shedding" } } }, @@ -9293,17 +10725,21 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.9, "solution": { "kind": "unitary", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.859, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -9324,18 +10760,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.5, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.705, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -9356,18 +10797,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 67.2, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.672, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -9388,18 +10834,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 85.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_GRIM5L62TRANS" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.858, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -9420,18 +10871,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 86.3, "solution": { "kind": "unitary", "actions": [ - "load_shedding_TRANSY633", "disco_FREJUL62TRANS", + "load_shedding_TRANSY633", "disco_GRIM5L62TRANS" ], "best": { - "id": "load_shedding_TRANSY633", - "family": "load_shedding", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.863, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FREJUL62TRANS", + "family": "line_disconnection" } } }, @@ -9452,18 +10908,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_GODINL61RUEYR", "disco_GODINL61ZNEG5", - "disco_VERLHL61ZNEG5", - "open_coupler_PRATCP6" + "disco_VERLHL61ZNEG5" ], "best": { - "id": "disco_GODINL61ZNEG5", - "family": "line_disconnection", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -9484,18 +10945,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -9516,25 +10982,30 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", "disco_BXTO5L61LATEN", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.461, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_3474b2", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — P.CORL71SSAL7", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -9550,16 +11021,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.4, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE1", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.044, + "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.979, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.105, + "islanded": true, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.929 } @@ -9568,7 +11051,7 @@ { "id": "s_5fc376c7_431798", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — P.CORL72SSAL7", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -9584,16 +11067,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.4, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE1", - "disco_FEUILL61LAVER+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.044, + "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.105, + "islanded": true, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.979, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.929 } @@ -9618,24 +11113,30 @@ "AVENIL61CZNEU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 14.8, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SAUS56T611", - "load_shedding_SAUS56T612" + "disco_AUBE6L61CZNEU", + "disco_AUBE6L61SEINE", + "disco_AVENIL61CZNEU" ], "best": { - "id": "load_shedding_SAUS56T611", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.148, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AUBE6L61CZNEU", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_29a9b4", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -9651,20 +11152,26 @@ "TRI.PY76A" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 1.607, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_BOLL5P6+open_coupler_TRI.PP6", + "open_coupler_MTGROP6+open_coupler_PRATCP6", + "pst_tap_L.NEUL61L.NTD_inc2+disco_COULAL71TAVEL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.663, - "id": "open_coupler_MTGROP6+open_coupler_PRATCP6", - "est_max_rho": 1.861 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_BOLL5P6+open_coupler_TRI.PP6", + "est_max_rho": 1.154 + }, + "solving_pair_rank": 1 } }, { @@ -9686,19 +11193,30 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 98.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.986, "best_unitary": { + "max_rho": 1.095, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.153, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.986, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.045, - "id": "open_coupler_RQROUP6+load_shedding_C.RHOY633", - "est_max_rho": 1.034 + "resolves": false, + "rank": 5, + "id": "reco_TRI.PY76B+open_coupler_RQROUP6", + "est_max_rho": 1.065 } } }, @@ -9719,18 +11237,23 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, @@ -9751,18 +11274,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -9790,19 +11318,30 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.157, "best_unitary": { + "max_rho": 1.157, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.218, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.155, + "islanded": true, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.006, - "id": "load_shedding_RASSUY631+open_coupler_JONQUP6", - "est_max_rho": 1.134 + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_RASSUY631", + "est_max_rho": 1.126 } } }, @@ -9823,18 +11362,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_CAPELL71LONNY", + "open_coupler_LATENP7_1", "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.816, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -9855,18 +11399,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 44.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.448, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -9887,18 +11436,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 62.9, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.629, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_reconnection" } } }, @@ -9919,18 +11473,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VLEJUP6_1", + "disco_HARC7L61ROBI5", "open_coupler_ROBI5P6", - "open_coupler_VLEJUP6" + "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_VLEJUP6_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -9956,17 +11515,28 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 112.5, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.125, "best_unitary": { + "max_rho": 1.138, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 1.198, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.125, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.184, + "resolves": false, + "rank": 2, "id": "open_coupler_SEPTEP6+disco_DURANL61REALT", "est_max_rho": 1.126 } @@ -9990,16 +11560,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 94.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_MTGROP6" ], "best": { + "max_rho": 0.942, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "family": "open_coupling" } } }, @@ -10021,16 +11596,21 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 94.3, "solution": { "kind": "unitary", "actions": [ "open_coupler_MTGROP6" ], "best": { + "max_rho": 0.943, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "family": "open_coupling" } } }, @@ -10051,18 +11631,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VANDIP6", - "disco_BEZAUL62VANDI", - "disco_BEZAUL61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_M.SEIP7_1" ], "best": { - "id": "open_coupler_VANDIP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, @@ -10083,17 +11668,28 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.987, "best_unitary": { + "max_rho": 1.069, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_REVIGP6", - "family": "open_coupling", - "max_rho": 1.125, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.987, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.039, + "resolves": false, + "rank": 1, "id": "open_coupler_REVIGP6+disco_BEZAUL61ZPELT", "est_max_rho": 0.983 } @@ -10116,18 +11712,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.3, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "disco_BOLL5L61C.RHO" + "open_coupler_MTGROP6", + "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.633, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_reconnection" } } }, @@ -10148,18 +11749,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.8, "solution": { "kind": "unitary", "actions": [ "reco_TRI.PY76B", - "node_merging_B.MONP6", - "open_coupler_MTGROP6" + "open_coupler_MTGROP6", + "open_coupler_PRATCP6" ], "best": { + "max_rho": 0.638, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "reco_TRI.PY76B", - "family": "line_reconnection", - "max_rho": 0.984, - "reducing": true + "family": "line_reconnection" } } }, @@ -10180,61 +11786,29 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RASSUY631" + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true - } - } - }, - { - "id": "s_5fc376c7_f87211", - "gridId": "grid_5fc376c7", - "difficulty": "hard", - "title": "November — Monday evening", - "label": "November — Monday evening — ROGNAL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ROGNAL61SSCHA", - "contingencyLabel": "ROGNAL61SSCHA", - "baselineMaxLoadingPct": 169.5, - "nOverloadedLines": 6, - "overloadedLines": [ - "DARSEL61RASSU", - "LAVERL61SELF3", - "LAVERL61SEPTE", - "LAVERL62SELF3", - "RASSUL61S.AIR", - "RQROUL61S.AIR" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.634, - "reducing": false - }, - "best_pair": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.612, - "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", - "est_max_rho": 1.548 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_a91fd1", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — ROUMOL61ZSSCR", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -10248,23 +11822,29 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU" + "disco_BOUTRL61TRANS", + "load_shedding_TRANSY633" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.991, - "id": "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU", - "est_max_rho": 0.942 + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_594cad", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — ROUMOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -10278,16 +11858,22 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU" + "disco_BOUTRL61TRANS", + "load_shedding_TRANSY633" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.991, - "id": "pst_tap_BOUTRL61BOUTD_inc2+disco_BIANCL61FREJU", - "est_max_rho": 0.942 + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, @@ -10313,17 +11899,28 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.117, "best_unitary": { + "max_rho": 1.128, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, "id": "open_coupler_PONTEP6", - "family": "open_coupling", - "max_rho": 1.187, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.117, + "islanded": false, + "reduces": false, + "n_over_after": 6, "converged": true, - "true_max_rho": 1.176, + "resolves": false, + "rank": 2, "id": "disco_FEUILL61PONTE+redispatch_SSCHA6GROUPE1", "est_max_rho": 1.117 } @@ -10346,17 +11943,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_RQROUP6", "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.848, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -10377,18 +11980,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 50.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_CHARPP7", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.5, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -10409,18 +12017,23 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 50.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7", - "open_coupler_CHARPP7", - "disco_GAUGLL72SSELO" + "open_coupler_SSELOP6", + "disco_GARCHL61SSELO", + "open_coupler_SSELOP7" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.502, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -10441,25 +12054,30 @@ "COMPIL61LATEN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", - "open_coupler_LATENP7", - "disco_COMPIL61LATEN" + "disco_COMPIL61LATEN", + "disco_COMPIL61MORU", + "load_shedding_COMPIY632" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COMPIL61LATEN", + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_52c6d8", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "easy", "title": "November — Monday evening", "label": "November — Monday evening — SEREIL61ZTONN", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -10473,18 +12091,21 @@ "SSELOY766" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 83.3, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "disco_BAYETL72GREPI+open_coupler_CHARPP7_1", - "disco_CHARPL72GREPI+open_coupler_CHARPP7_1" + "open_coupler_SSELOP6" ], "best": { + "max_rho": 0.833, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.985, - "id": "open_coupler_CHARPP7+open_coupler_CHARPP7_1", - "est_max_rho": 0.405 + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -10505,16 +12126,21 @@ "SSELOY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SSELOP7" + "open_coupler_SSELOP6" ], "best": { - "id": "open_coupler_SSELOP7", - "family": "open_coupling", - "max_rho": 0.999, - "reducing": true + "max_rho": 0.599, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_SSELOP6", + "family": "open_coupling" } } }, @@ -10535,18 +12161,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP7_1", "disco_CAPELL71LONNY", + "open_coupler_LATENP7_1", "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP7_1", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.817, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -10567,18 +12198,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 46.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LATENP6", - "open_coupler_LATENP7_1", - "disco_BXTO5L61LATEN" + "disco_BXTO5L61LATEN", + "disco_CAPELL71LONNY", + "open_coupler_LATENP6" ], "best": { - "id": "open_coupler_LATENP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.463, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61LATEN", + "family": "line_disconnection" } } }, @@ -10599,6 +12235,7 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -10606,10 +12243,14 @@ "disco_ARGIEL61ETUPE" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_ARGIEL61SIERE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -10630,6 +12271,7 @@ "SSAVOL71VIGY" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.7, "solution": { "kind": "unitary", "actions": [ @@ -10638,17 +12280,21 @@ "disco_BEZAUL71VIGY" ], "best": { + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_MARL6L71VIGY", - "family": "line_disconnection", - "max_rho": 0.987, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_301e35", "gridId": "grid_5fc376c7", - "difficulty": "medium", + "difficulty": "hard", "title": "November — Monday evening", "label": "November — Monday evening — SSEA2L72VERGE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -10665,14 +12311,28 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 103.7, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.037, + "best_unitary": { + "max_rho": 1.037, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.101, + "islanded": true, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.999, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", "est_max_rho": 0.949 } @@ -10695,18 +12355,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.8, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_JONQUP6" + "disco_DARSEL61RASSU" ], "best": { + "max_rho": 0.798, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "family": "load_shedding" } } }, @@ -10727,18 +12392,23 @@ "COR.PL61ZBAST" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CHEV5P6", - "disco_COR.PL72DISTR", - "disco_COR.PL71GALOR" + "disco_COR.PL61ZBAST", + "disco_CHEV5L61ZBAST", + "open_coupler_CHEV5P6" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_COR.PL61ZBAST", + "family": "line_disconnection" } } }, @@ -10759,6 +12429,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -10767,10 +12438,14 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_disconnection" } } }, @@ -10791,18 +12466,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PRATCP6", "disco_GODINL61RUEYR", - "disco_GODINL61ZNEG5" + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_PRATCP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -10823,6 +12503,7 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -10831,17 +12512,21 @@ "disco_VERLHL61ZNEG5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 0.986, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_5fc376c7_00de85", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — TAMARL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -10857,23 +12542,30 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 93.8, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_MTGROP6" + "reco_TRI.PY76B+open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.988, - "reducing": true - } + "max_rho": 0.938, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 1, + "id": "reco_TRI.PY76B+open_coupler_MTGROP6", + "est_max_rho": 0.937 + }, + "solving_pair_rank": 1 } }, { "id": "s_5fc376c7_edd29e", "gridId": "grid_5fc376c7", - "difficulty": "easy", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — TAMARL72TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -10889,18 +12581,24 @@ "TRI.PY76A" ], "nActionsDiscovered": 19, + "bestAchievableLoadingPct": 93.7, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "open_coupler_MTGROP6", - "open_coupler_PRATCP6" + "reco_TRI.PY76B+open_coupler_MTGROP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.988, - "reducing": true - } + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 1, + "id": "reco_TRI.PY76B+open_coupler_MTGROP6", + "est_max_rho": 0.937 + }, + "solving_pair_rank": 1 } }, { @@ -10920,18 +12618,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632" + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -10952,18 +12655,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_B.MONP6", + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632" + "node_merging_B.MONP6" ], "best": { - "id": "node_merging_B.MONP6", - "family": "node_merging", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -10984,18 +12692,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.7, "solution": { "kind": "unitary", "actions": [ + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632", - "load_shedding_BOLL5Y633" + "node_merging_B.MONP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.637, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -11016,18 +12729,23 @@ "TRI.PY76A" ], "nActionsDiscovered": 18, + "bestAchievableLoadingPct": 63.7, "solution": { "kind": "unitary", "actions": [ + "reco_TRI.PY76B", "open_coupler_MTGROP6", - "load_shedding_BOLL5Y632", - "load_shedding_BOLL5Y633" + "node_merging_B.MONP6" ], "best": { - "id": "open_coupler_MTGROP6", - "family": "open_coupling", - "max_rho": 0.986, - "reducing": true + "max_rho": 0.637, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "reco_TRI.PY76B", + "family": "line_reconnection" } } }, @@ -11048,18 +12766,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.719, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -11080,18 +12801,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.719, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -11112,25 +12836,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "open_coupler_PONTEP6", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.719, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_5fc376c7_f7ae0b", "gridId": "grid_5fc376c7", - "difficulty": "hard", + "difficulty": "medium", "title": "November — Monday evening", "label": "November — Monday evening — TUILIL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", @@ -11144,20 +12871,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_GODINL61RUEYR", - "family": "line_disconnection", - "max_rho": 1.055, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_LESQUL62VERLH+open_coupler_LESQUP6", + "open_coupler_VERFEP7+disco_LESQUL71VERFE", + "disco_LESQUL61VERLH+open_coupler_LESQUP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.132, - "id": "open_coupler_VERFEP7+disco_LESQUL71VERFE", - "est_max_rho": 0.617 - } + "resolves": true, + "rank": 1, + "id": "disco_LESQUL62VERLH+open_coupler_LESQUP6", + "est_max_rho": 0.607 + }, + "solving_pair_rank": 1 } }, { @@ -11177,18 +12910,23 @@ "GODINL61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RUEYRP7", - "node_merging_GODINP6", - "disco_GODINL61RUEYR" + "disco_GODINL61RUEYR", + "disco_GODINL61ZNEG5", + "disco_VERLHL61ZNEG5" ], "best": { - "id": "open_coupler_RUEYRP7", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_GODINL61RUEYR", + "family": "line_disconnection" } } }, @@ -11209,18 +12947,23 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VANDIP6", - "disco_BEZAUL62VANDI", - "disco_BEZAUL61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_M.SEIP7_1" ], "best": { - "id": "open_coupler_VANDIP6", - "family": "open_coupling", - "max_rho": 0.985, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, @@ -11241,18 +12984,23 @@ "CRENEY766" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 69.1, "solution": { "kind": "unitary", "actions": [ "disco_BARBUL61CRENE", "disco_BARBUL61FOSSE", - "disco_FOSSEL61ORSON" + "disco_CRENEL71REVIG" ], "best": { + "max_rho": 0.691, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_BARBUL61CRENE", - "family": "line_disconnection", - "max_rho": 0.985, - "reducing": true + "family": "line_disconnection" } } }, @@ -11273,18 +13021,23 @@ "MALGOL61PASSY" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.0, "solution": { "kind": "unitary", "actions": [ "node_merging_GEN.PP6", - "open_coupler_MALGOP6", - "load_shedding_PASSYY631" + "load_shedding_PASSYY631", + "load_shedding_PASSYY632" ], "best": { + "max_rho": 0.7, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_GEN.PP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "family": "node_merging" } } }, @@ -11305,25 +13058,30 @@ "PLAISL61ROMAI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PLAISP6", - "open_coupler_PLAISP6_1", - "disco_PLAISL62ZAVR5" + "disco_PLAISL61ROMAI", + "open_coupler_ROMAIP6", + "open_coupler_VLEVAP6" ], "best": { - "id": "open_coupler_PLAISP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PLAISL61ROMAI", + "family": "line_disconnection" } } }, { "id": "s_437818d6_6d341c", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — ALOUEL61PLAIS", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -11337,18 +13095,23 @@ "PLAISL61ROMAI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_PLAISP6+load_shedding_ROMAIY631", - "open_coupler_PLAISP6+load_shedding_ROMAI6T611", - "load_shedding_ROMAIY631+disco_PLAISL61ZAVRO" + "disco_PLAISL61ROMAI", + "open_coupler_ROMAIP6", + "open_coupler_VLEVAP6" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "open_coupler_PLAISP6+load_shedding_ROMAIY631", - "est_max_rho": 0.925 + "resolves": true, + "id": "disco_PLAISL61ROMAI", + "family": "line_disconnection" } } }, @@ -11369,18 +13132,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 77.6, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "open_coupler_P.JERP6_1", - "disco_P.JERL61ROUGE" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BARQUL61BOSCH" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.776, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -11401,18 +13169,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.8, "solution": { "kind": "unitary", "actions": [ - "disco_RQROUL61SSEST", - "disco_SSESTL61SSTUL", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_RQROUL61SSEST", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.848, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -11433,18 +13204,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 71.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "disco_BARNAL71VAUPA", - "disco_BARNAL72VAUPA" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BOSCHL61ROUGE" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.712, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -11465,18 +13241,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.8, "solution": { "kind": "unitary", "actions": [ - "disco_RQROUL61SSEST", - "disco_SSESTL61SSTUL", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_RQROUL61SSEST", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.848, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -11497,18 +13276,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -11529,18 +13313,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -11561,18 +13350,23 @@ "LINGOL61T.VIC" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_LINGOL61T.VIC", "load_shedding_T.VICY633", - "load_shedding_T.VICY632", - "load_shedding_T.VICY631" + "load_shedding_T.VICY632" ], "best": { - "id": "load_shedding_T.VICY633", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_LINGOL61T.VIC", + "family": "line_disconnection" } } }, @@ -11593,25 +13387,30 @@ "LINGOL61T.VIC" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_LINGOL61T.VIC", "load_shedding_T.VICY633", - "load_shedding_T.VICY632", - "load_shedding_T.VICY631" + "load_shedding_T.VICY632" ], "best": { - "id": "load_shedding_T.VICY633", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_LINGOL61T.VIC", + "family": "line_disconnection" } } }, { "id": "s_437818d6_ce6f13", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — BARNAL71ROUGE", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -11625,25 +13424,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.7, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "disco_BARNAL72VAUPA+load_shedding_P.JERY641", - "disco_BARNAL72VAUPA+load_shedding_P.JERY649", - "open_coupler_P.JERP6+disco_BARNAL72VAUPA" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.937, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "disco_BARNAL72VAUPA+load_shedding_P.JERY641", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_a4b31e", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — BARNAL72ROUGE", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -11657,18 +13459,21 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.6, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "disco_BARNAL71VAUPA+load_shedding_P.JERY641", - "disco_BARNAL71VAUPA+load_shedding_P.JERY649", - "open_coupler_P.JERP6+disco_BARNAL71VAUPA" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.936, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "disco_BARNAL71VAUPA+load_shedding_P.JERY641", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -11689,25 +13494,30 @@ "BOCCAL61MOUGI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BIANCP6", - "disco_FREJUL61TRANS", - "load_shedding_MOUGIY633" + "disco_BOCCAL61MOUGI", + "disco_C.MERL61MOUGI", + "disco_C.MERL61LINGO" ], "best": { - "id": "open_coupler_BIANCP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOCCAL61MOUGI", + "family": "line_disconnection" } } }, { "id": "s_437818d6_84e485", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -11722,17 +13532,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.0, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.01, + "best_unitary": { + "max_rho": 1.069, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.01, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE1+load_shedding_P.ORG6ISCLE2", + "est_max_rho": 0.925 } } }, @@ -11753,18 +13576,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_EGUZOL61ORANG", - "disco_DISTRL61MONDI", - "disco_MONDIL61ORANG" + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_EGUZOL61ORANG", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "family": "line_disconnection" } } }, @@ -11785,18 +13613,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RQROUY632", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.891, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -11818,17 +13649,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.041, "best_unitary": { + "max_rho": 1.047, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.JERY641", - "family": "load_shedding", - "max_rho": 1.102, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.041, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.096, + "resolves": false, + "rank": 1, "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", "est_max_rho": 1.041 } @@ -11851,18 +13693,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -11883,25 +13730,30 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_EGUZOL61ORANG" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.983, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, { "id": "s_437818d6_5d8720", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — CHOLEL61RECOU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -11915,18 +13767,21 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 83.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "load_shedding_SIRMIY646+load_shedding_SIRMIY645", - "disco_PREGUL61SAINT+load_shedding_SIRMIY646", - "disco_PREGUL61SAINT+load_shedding_SIRMIY645" + "open_coupler_BXLIEP6" ], "best": { + "max_rho": 0.839, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "load_shedding_SIRMIY646+load_shedding_SIRMIY645", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -11947,18 +13802,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 75.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MERLAP6", - "open_coupler_CHEV5P6", - "disco_BXLIEL61FARRA" + "open_coupler_BXLIEP6", + "disco_BXLIEL61FARRA", + "load_shedding_SIRMIY646" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.757, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -11979,18 +13839,23 @@ "CIROLL62LOGES" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LOGESP6", - "disco_LIERSL61LOGES", - "disco_LIERSL61ZLIN7" + "disco_CIROLL62LOGES", + "load_shedding_LOGESY641", + "load_shedding_LOGESY642" ], "best": { - "id": "open_coupler_LOGESP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL62LOGES", + "family": "line_disconnection" } } }, @@ -12011,18 +13876,23 @@ "CIROLL61LOGES" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_CIROLL61LOGES", "open_coupler_LOGESP6", - "disco_LIERSL61LOGES", - "disco_LIERSL61ZLIN7" + "load_shedding_LOGESY641" ], "best": { - "id": "open_coupler_LOGESP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL61LOGES", + "family": "line_disconnection" } } }, @@ -12043,6 +13913,7 @@ "CIROLL73VLEJU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -12051,10 +13922,14 @@ "disco_CIROLL72GATI5" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_CIROLL73VLEJU", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "family": "line_disconnection" } } }, @@ -12075,18 +13950,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.4, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "disco_BARNAL71VAUPA", - "disco_BARNAL72VAUPA" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BOSCHL61ROUGE" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.764, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -12107,18 +13987,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_MERLAP6", + "open_coupler_BXLIEP6", "open_coupler_CHEV5P6", - "disco_PREGUL61SAINT" + "load_shedding_SIRMIY646" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.748, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -12139,18 +14024,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.9, "solution": { "kind": "unitary", "actions": [ - "open_coupler_TRANSP6", "open_coupler_BOUTRP6", - "load_shedding_TRANSY633" + "disco_BIANCL61FREJU", + "open_coupler_TRANSP6" ], "best": { - "id": "open_coupler_TRANSP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.909, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BOUTRP6", + "family": "open_coupling" } } }, @@ -12171,16 +14061,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.4, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.975, - "reducing": true + "max_rho": 0.894, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -12201,24 +14096,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RQROUY632" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.891, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_6b287c", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — DARSEL61RASSU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -12234,20 +14133,26 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 1.246, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "disco_BOUTRL61SSTUL+disco_E.BOTL61FAVAR", + "disco_BOUTRL61SSTUL+disco_BOUTRL61FAVAR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.127, - "id": "disco_BOUTRL61SSTUL+disco_CSLLEL61E.BOT", - "est_max_rho": 0.747 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "est_max_rho": 0.132 + }, + "solving_pair_rank": 1 } }, { @@ -12269,16 +14174,21 @@ "NIORTL61V.SEV" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.8, "solution": { "kind": "unitary", "actions": [ "open_coupler_CHEV5P6" ], "best": { + "max_rho": 0.938, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.987, - "reducing": true + "family": "open_coupling" } } }, @@ -12299,18 +14209,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_BAYETL61MTVIC", - "load_shedding_ORANGY642", - "load_shedding_ORANGY641" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "disco_BAYETL61MTVIC", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, @@ -12331,18 +14246,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RQROUY632", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.892, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -12363,18 +14281,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_RQROUY632", - "open_coupler_DARSEP6", - "disco_CTAURL61ZVILA" + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" ], "best": { - "id": "load_shedding_RQROUY632", - "family": "load_shedding", - "max_rho": 0.991, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -12398,19 +14320,30 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 116.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.168, "best_unitary": { + "max_rho": 1.171, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.232, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.168, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.099, - "id": "open_coupler_FEUILP6+load_shedding_RASSUY631", - "est_max_rho": 1.171 + "resolves": false, + "rank": 1, + "id": "load_shedding_RASSUY631+redispatch_SSEST6GROUPE3", + "est_max_rho": 1.168 } } }, @@ -12433,17 +14366,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.986, "best_unitary": { + "max_rho": 0.986, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 1.038, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.98, + "islanded": true, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.031, + "resolves": false, + "rank": 1, "id": "open_coupler_CHEV5P6+load_shedding_P.JERY641", "est_max_rho": 0.98 } @@ -12466,18 +14410,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645", - "open_coupler_CHEV5P6" + "open_coupler_BXLIEP6", + "open_coupler_CHEV5P6", + "disco_PREGUL61SAINT" ], "best": { - "id": "load_shedding_SIRMIY646", - "family": "load_shedding", - "max_rho": 0.977, - "reducing": true + "max_rho": 0.746, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -12499,18 +14448,23 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 76.0, "solution": { "kind": "unitary", "actions": [ + "disco_VLEMAL61ZGLAC", "disco_NEMOUL61VLEMA", - "disco_TABARL61ZGLAC", - "disco_TABARL61ZGIEN" + "disco_TABARL61ZGLAC" ], "best": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.76, + "islanded": false, + "reduces": false, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_VLEMAL61ZGLAC", + "family": "line_disconnection" } } }, @@ -12531,18 +14485,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "reco_FLEACL61NIORT", - "disco_BXLIEL61FARRA", - "load_shedding_SIRMIY646" + "disco_BXLIEL61FARRA" ], "best": { - "id": "reco_FLEACL61NIORT", - "family": "line_reconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.796, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -12563,18 +14522,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 75.2, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "open_coupler_CHEV5P6", - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645" + "load_shedding_SIRMIY646" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.752, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -12595,18 +14559,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 75.2, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645", - "open_coupler_CHEV5P6" + "open_coupler_BXLIEP6", + "open_coupler_CHEV5P6", + "load_shedding_SIRMIY646" ], "best": { - "id": "load_shedding_SIRMIY646", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.752, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -12627,18 +14596,23 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ROBI5P6", "disco_HARC7L61ROBI5", + "open_coupler_ROBI5P6", "disco_ROBI5L61VLEJU" ], "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, @@ -12659,18 +14633,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "disco_CTAURL61ZVILA", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.855, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -12691,18 +14668,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.1, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RASSUY631", - "disco_RQROUL61SSEST" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.851, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -12723,25 +14703,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "load_shedding_RASSUY631", - "load_shedding_RQROUY632" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.856, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_d25bab", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — LAVERL61P.BOU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -12757,50 +14740,30 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 107.2, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_DARSEP6+disco_DURANL61REALT", - "open_coupler_DARSEP6+disco_DURANL61ROGNA" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.072, + "best_unitary": { + "max_rho": 1.072, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 0.979, - "id": "open_coupler_DARSEP6+disco_DURANL61REALT", - "est_max_rho": 0.93 - } - } - }, - { - "id": "s_437818d6_769a3f", - "gridId": "grid_437818d6", - "difficulty": "medium", - "title": "March — Monday morning", - "label": "March — Monday morning — LAVERL61PONTE", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "LAVERL61PONTE", - "contingencyLabel": "LAVERL61PONTE", - "baselineMaxLoadingPct": 125.1, - "nOverloadedLines": 2, - "overloadedLines": [ - "PONTEL61REALT", - "PONTEL62REALT" - ], - "nActionsDiscovered": 15, - "solution": { - "kind": "pair", - "actions": [ - "open_coupler_SEPTEP6+disco_DURANL61REALT", - "disco_DURANL61REALT+open_coupler_MOTT5P6", - "open_coupler_SEPTEP6+open_coupler_MOTT5P6" - ], - "best": { + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.074, + "islanded": false, + "reduces": true, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.974, - "id": "open_coupler_SEPTEP6+disco_DURANL61REALT", - "est_max_rho": 1.201 + "resolves": false, + "rank": 3, + "id": "open_coupler_DARSEP6+disco_REALTL63SEPTE", + "est_max_rho": 0.978 } } }, @@ -12823,24 +14786,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "pair", "actions": [ "open_coupler_MOTT5P6+open_coupler_ARDOIP6", - "disco_ESCAIL61NEOUL+open_coupler_MOTT5P6" + "disco_ESCAIL61NEOUL+open_coupler_MOTT5P6", + "disco_CSLLEL61E.BOT+open_coupler_E.BOTP6" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, + "resolves": true, + "rank": 1, "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", "est_max_rho": 0.434 - } + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_c4860a", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — LINGOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -12857,20 +14828,26 @@ "T.VICL61ZMENT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 1.092, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "open_coupler_BOUTRP6+open_coupler_SSTULP6", + "open_coupler_SEPTEP6+open_coupler_PALUNP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.091, - "id": "open_coupler_BOUTRP6+open_coupler_SSTULP6", - "est_max_rho": 0.877 - } + "resolves": true, + "rank": 1, + "id": "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "est_max_rho": 0.58 + }, + "solving_pair_rank": 1 } }, { @@ -12890,18 +14867,23 @@ "SAUS5L61VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 70.1, "solution": { "kind": "unitary", "actions": [ - "node_merging_P.GASP6", "load_shedding_SAUS56T611", - "load_shedding_SAUS56T612" + "node_merging_P.GASP6", + "open_coupler_VLEVAP6" ], "best": { - "id": "node_merging_P.GASP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.701, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "load_shedding_SAUS56T611", + "family": "load_shedding" } } }, @@ -12922,18 +14904,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 57.2, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", "load_shedding_P.ORG6ISCLE2", - "open_coupler_ARDOIP6" + "open_coupler_MOTT5P6" ], "best": { + "max_rho": 0.572, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "family": "load_shedding" } } }, @@ -12954,17 +14941,23 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 59.9, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" + "load_shedding_P.ORG6ISCLE2", + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.599, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.973, - "reducing": true + "family": "load_shedding" } } }, @@ -12985,18 +14978,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.0, "solution": { "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2", - "open_coupler_BOUTRP6", - "open_coupler_TRANSP6" + "disco_BIANCL61FREJU", + "open_coupler_TRANSP6", + "open_coupler_BOUTRP6" ], "best": { - "id": "pst_tap_BOUTRL61BOUTD_inc2", - "family": "pst", - "max_rho": 0.975, - "reducing": true + "max_rho": 0.9, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BIANCL61FREJU", + "family": "line_disconnection" } } }, @@ -13017,18 +15015,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.0, "solution": { "kind": "unitary", "actions": [ - "pst_tap_BOUTRL61BOUTD_inc2", - "open_coupler_BOUTRP6", - "open_coupler_TRANSP6" + "disco_BIANCL61FREJU", + "open_coupler_TRANSP6", + "open_coupler_BOUTRP6" ], "best": { - "id": "pst_tap_BOUTRL61BOUTD_inc2", - "family": "pst", - "max_rho": 0.975, - "reducing": true + "max_rho": 0.9, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BIANCL61FREJU", + "family": "line_disconnection" } } }, @@ -13049,18 +15052,23 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.0, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "disco_BXLIEL61FARRA", - "load_shedding_SIRMIY646", - "load_shedding_SIRMIY645" + "load_shedding_SIRMIY646" ], "best": { - "id": "disco_BXLIEL61FARRA", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.79, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, @@ -13081,25 +15089,30 @@ "BXLIEL61SIRMI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_BXLIEP6", "reco_FLEACL61NIORT", - "disco_BXLIEL61FARRA", - "load_shedding_SIRMIY646" + "disco_BXLIEL61FARRA" ], "best": { - "id": "reco_FLEACL61NIORT", - "family": "line_reconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.796, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_BXLIEP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_29a9b4", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13117,26 +15130,32 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "reco_TRI.PY76A", - "family": "line_reconnection", - "max_rho": 1.217, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_L.NEUP6", + "reco_TRI.PY76A+open_coupler_PRATCP6", + "reco_TRI.PY76A+node_merging_TRI.PP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.212, - "id": "reco_TRI.PY76A+open_coupler_PRATCP6", - "est_max_rho": 1.548 - } + "resolves": true, + "rank": 1, + "id": "pst_tap_L.NEUL61L.NTD_inc2+open_coupler_L.NEUP6", + "est_max_rho": 0.786 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_682401", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13151,17 +15170,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.1, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.041, + "best_unitary": { + "max_rho": 1.055, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.975, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.041, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "reco_TRI.PY76A+load_shedding_P.ORG6ISCLE1", + "est_max_rho": 0.925 } } }, @@ -13182,18 +15214,23 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 73.2, "solution": { "kind": "unitary", "actions": [ - "node_merging_ROUGEP6", - "disco_P.JERL61ROUGE", - "disco_BARNAL71VAUPA" + "open_coupler_P.JERP6", + "node_merging_YAINVP6", + "disco_BOSCHL61ROUGE" ], "best": { - "id": "node_merging_ROUGEP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.732, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -13214,17 +15251,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 93.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RQROUP6", - "load_shedding_RASSUY631" + "open_coupler_RQROUP6" ], "best": { + "max_rho": 0.933, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "family": "open_coupling" } } }, @@ -13245,25 +15286,30 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_BAYETL61MTVIC", - "load_shedding_ORANGY642", - "load_shedding_ORANGY641" + "disco_EGUZOL61ORANG", + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI" ], "best": { - "id": "disco_BAYETL61MTVIC", - "family": "line_disconnection", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_EGUZOL61ORANG", + "family": "line_disconnection" } } }, { "id": "s_437818d6_6d8ce0", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — PONTEL61REALT", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13279,26 +15325,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.507, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_SSTULP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.289, - "id": "open_coupler_MOTT5P6+open_coupler_E.BOTP6", - "est_max_rho": 2.845 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "est_max_rho": 0.558 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_7d0521", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — PONTEL62REALT", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13314,26 +15366,32 @@ "PONTEL61REALT" ], "nActionsDiscovered": 9, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 1.507, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "open_coupler_RQROUP6+open_coupler_SSTULP6", + "open_coupler_RQROUP6+open_coupler_DARSEP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.289, - "id": "open_coupler_MOTT5P6+open_coupler_E.BOTP6", - "est_max_rho": 2.846 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_MOTT5P6+open_coupler_ARDOIP6", + "est_max_rho": 0.557 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_13bc5a", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — RASSUL61S.AIR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13349,20 +15407,26 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 1.203, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "disco_BOUTRL61SSTUL+disco_BOUTRL61FAVAR", + "disco_BOUTRL61SSTUL+disco_E.BOTL61FAVAR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.088, - "id": "disco_BOUTRL61SSTUL+disco_CSLLEL61E.BOT", - "est_max_rho": 0.577 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "est_max_rho": 0.302 + }, + "solving_pair_rank": 1 } }, { @@ -13383,23 +15447,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_REALTP7_1" + "open_coupler_PONTEP6" ], "best": { - "id": "open_coupler_REALTP7_1", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.928, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_b938e3", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — REALTL72TAVEL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13414,25 +15483,28 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 92.8, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "disco_E.BOTL61FAVAR+load_shedding_SEPTEY631", - "disco_E.BOTL61FAVAR+load_shedding_SEPTEY632", - "disco_BOUTRL61FAVAR+load_shedding_SEPTEY631" + "open_coupler_PONTEP6" ], "best": { + "max_rho": 0.928, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.975, - "id": "disco_E.BOTL61FAVAR+load_shedding_SEPTEY631", - "est_max_rho": 0.927 + "resolves": true, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" } } }, { "id": "s_437818d6_090e7b", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — ROGNAL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13446,19 +15518,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.135, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.027, - "id": "open_coupler_RQROUP6+load_shedding_RQROUY632", - "est_max_rho": 1.078 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -13482,26 +15557,37 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 116.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.16, "best_unitary": { + "max_rho": 1.161, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, "id": "load_shedding_RASSUY631", - "family": "load_shedding", - "max_rho": 1.222, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.16, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.093, - "id": "load_shedding_RASSUY631+redispatch_SSTUL6GROUPE5", - "est_max_rho": 1.161 + "resolves": false, + "rank": 1, + "id": "load_shedding_RASSUY631+redispatch_SSEST6GROUPE3", + "est_max_rho": 1.16 } } }, { "id": "s_437818d6_a91fd1", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — ROUMOL61ZSSCR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13518,26 +15604,32 @@ "T.VICL61ZMENT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 1.09, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "open_coupler_BOUTRP6+open_coupler_SSTULP6", + "open_coupler_SEPTEP6+open_coupler_PALUNP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.089, - "id": "open_coupler_BOUTRP6+open_coupler_SSTULP6", - "est_max_rho": 0.855 - } + "resolves": true, + "rank": 1, + "id": "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "est_max_rho": 0.579 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_594cad", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — ROUMOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13554,26 +15646,32 @@ "T.VICL61ZMENT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 1.095, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "open_coupler_BOUTRP6+open_coupler_SSTULP6", + "open_coupler_SEPTEP6+open_coupler_PALUNP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.094, - "id": "open_coupler_BOUTRP6+open_coupler_SSTULP6", - "est_max_rho": 0.848 - } + "resolves": true, + "rank": 1, + "id": "disco_PALUNL61SEPTE+open_coupler_PALUNP6", + "est_max_rho": 0.578 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_c1d62c", "gridId": "grid_437818d6", - "difficulty": "hard", + "difficulty": "medium", "title": "March — Monday morning", "label": "March — Monday morning — RQROUL61S.AIR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13589,26 +15687,32 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_E.BOTL61REALT", - "family": "line_disconnection", - "max_rho": 1.195, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "disco_BOUTRL61SSTUL+disco_BOUTRL61FAVAR", + "disco_BOUTRL61SSTUL+disco_E.BOTL61FAVAR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.078, - "id": "open_coupler_ROGNAP6+disco_E.BOTL61FAVAR", - "est_max_rho": 0.613 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSTULP6+disco_BOUTRL61SSTUL", + "est_max_rho": 0.333 + }, + "solving_pair_rank": 1 } }, { "id": "s_437818d6_c5ce55", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — RQROUL61SSEST", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13624,23 +15728,37 @@ "PONTEL62REALT" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 100.2, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MOTT5P6" - ], - "best": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.002, + "best_unitary": { + "max_rho": 1.002, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.016, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+open_coupler_SSCESP6", + "est_max_rho": 0.926 } } }, { "id": "s_437818d6_554e81", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — SAINNL61YAINV", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13654,18 +15772,21 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "load_shedding_P.JERY641+load_shedding_P.JERY649", - "node_merging_ROUGEP6+load_shedding_P.JERY641", - "node_merging_ROUGEP6+load_shedding_P.JERY649" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.889, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -13686,18 +15807,23 @@ "M.MORL61VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 39.1, "solution": { "kind": "unitary", "actions": [ - "node_merging_P.GASP6", - "load_shedding_M.MORY631", - "load_shedding_M.MORY632" + "open_coupler_M.MORP6", + "open_coupler_VLEVAP6", + "node_merging_P.GASP6" ], "best": { - "id": "node_merging_P.GASP6", - "family": "node_merging", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.391, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_M.MORP6", + "family": "open_coupling" } } }, @@ -13719,16 +15845,22 @@ "SAUS5L61VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 84.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_SAUS56T612" + "load_shedding_SAUS56T612", + "open_coupler_VLEVAP6" ], "best": { + "max_rho": 0.84, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_SAUS56T612", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "family": "load_shedding" } } }, @@ -13749,25 +15881,30 @@ "P.ROSL61SSAVO" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BERGHP6", "disco_P.ROSL61SSAVO", - "disco_P.ROSL61SARR6" + "disco_P.ROSL61SARR6", + "disco_BERGHL61ZSAR6" ], "best": { - "id": "open_coupler_BERGHP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ROSL61SSAVO", + "family": "line_disconnection" } } }, { "id": "s_437818d6_544784", "gridId": "grid_437818d6", - "difficulty": "easy", + "difficulty": "hard", "title": "March — Monday morning", "label": "March — Monday morning — SSESTL61SSTUL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13783,23 +15920,37 @@ "PONTEL62REALT" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 99.1, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MOTT5P6" - ], - "best": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 0.991, + "best_unitary": { + "max_rho": 0.991, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_PONTEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.013, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_MOTT5P6+open_coupler_SSCESP6", + "est_max_rho": 0.926 } } }, { "id": "s_437818d6_c77cdf", "gridId": "grid_437818d6", - "difficulty": "medium", + "difficulty": "easy", "title": "March — Monday morning", "label": "March — Monday morning — VAUPAL61YAINV", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", @@ -13813,18 +15964,21 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 88.9, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "load_shedding_P.JERY641+load_shedding_P.JERY649", - "node_merging_ROUGEP6+load_shedding_P.JERY641", - "node_merging_ROUGEP6+load_shedding_P.JERY649" + "open_coupler_P.JERP6" ], "best": { + "max_rho": 0.889, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.974, - "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", - "est_max_rho": 0.925 + "resolves": true, + "id": "open_coupler_P.JERP6", + "family": "open_coupling" } } }, @@ -13846,17 +16000,28 @@ "P.JERL61VAUPA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.046, "best_unitary": { + "max_rho": 1.052, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.JERY641", - "family": "load_shedding", - "max_rho": 1.107, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.046, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.101, + "resolves": false, + "rank": 1, "id": "load_shedding_P.JERY641+load_shedding_P.JERY649", "est_max_rho": 1.046 } @@ -13879,18 +16044,23 @@ "EGUZOL61ORANG" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 64.1, "solution": { "kind": "unitary", "actions": [ - "load_shedding_ORANGY642", - "load_shedding_ORANGY641", - "disco_BAYETL61MTVIC" + "disco_MONDIL61ORANG", + "disco_DISTRL61MONDI", + "load_shedding_ORANGY642" ], "best": { - "id": "load_shedding_ORANGY642", - "family": "load_shedding", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.641, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MONDIL61ORANG", + "family": "line_disconnection" } } }, @@ -13911,18 +16081,23 @@ "BOUTRL61TRANS" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BOUTRP6", - "load_shedding_TRANSY633", - "load_shedding_TRANSY631" + "disco_BOUTRL61TRANS", + "open_coupler_TRANSP6", + "open_coupler_BOUTRP6" ], "best": { - "id": "open_coupler_BOUTRP6", - "family": "open_coupling", - "max_rho": 0.974, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BOUTRL61TRANS", + "family": "line_disconnection" } } }, @@ -13943,18 +16118,23 @@ "PLAISL61ROMAI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 38.8, "solution": { "kind": "unitary", "actions": [ + "open_coupler_ROMAIP6_1", "open_coupler_PLAISP6", - "open_coupler_PLAISP6_1", - "open_coupler_VLEVAP6_1" + "disco_VLEVAL62ZGAL5" ], "best": { - "id": "open_coupler_PLAISP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.388, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_ROMAIP6_1", + "family": "open_coupling" } } }, @@ -13975,17 +16155,21 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CERGYP6", "disco_CORMEL62NANTE" ], "best": { - "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -14006,18 +16190,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "node_merging_CERGYP6", - "disco_CORMEL62NANTE" + "disco_CORMEL62NANTE", + "node_merging_CERGYP6" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -14038,18 +16226,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.7, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.747, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -14070,18 +16261,23 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", + "disco_CORMEL62NANTE", "disco_CERGYL61ZHERB", "disco_CORMEL61ZHERB" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -14102,18 +16298,23 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", + "disco_CORMEL62NANTE", "disco_CERGYL61ZHERB", "disco_CORMEL61ZHERB" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -14134,18 +16335,23 @@ "ETUPEL61ZHIRS" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ETUPEL61ZHIRS", - "disco_SIEREL61ZHIRS" + "disco_SIEREL61ZHIRS", + "open_coupler_ETUPEP6" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ETUPEL61ZHIRS", + "family": "line_disconnection" } } }, @@ -14166,25 +16372,30 @@ "MANDAL71WARAN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 86.7, "solution": { "kind": "unitary", "actions": [ + "disco_FRUGEL71MANDA", "open_coupler_WARANP7", - "disco_ARGOEL71MANDA", - "disco_FRUGEL71MANDA" + "disco_ARGOEL71MANDA" ], "best": { - "id": "open_coupler_WARANP7", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.867, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_FRUGEL71MANDA", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_56172b", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — AUBUSL62MOLE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14199,17 +16410,29 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.6, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61MAURE+load_shedding_BAYETY632", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "open_coupler_MARMAP7+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.976, + "best_unitary": { + "max_rho": 0.976, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 1.002, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.993, - "id": "disco_EGUZOL61MAURE+load_shedding_BAYETY632", + "resolves": false, + "rank": 3, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", "est_max_rho": 0.943 } } @@ -14231,18 +16454,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_ROUSSL61SEREI" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -14263,18 +16491,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_ROUSSL61SEREI" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -14295,18 +16528,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.742, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -14327,16 +16563,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_AVOINL61QUINT" + "disco_AVOI5L61AVOIN", + "open_coupler_AVOI5P7", + "disco_AVOINL61DISTR" ], "best": { - "id": "disco_AVOINL61QUINT", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -14359,19 +16602,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.5, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "open_coupler_CZTRYP6+disco_DANTOL61TUILI", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_SEREIP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.945, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.996, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "est_max_rho": 0.946 - } + "resolves": true, + "rank": 5, + "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "est_max_rho": 0.948 + }, + "solving_pair_rank": 1 } }, { @@ -14391,16 +16641,23 @@ "AVOI5Y761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_AVOI5L61AVOIN", + "disco_AVOINL61DISTR", "disco_AVOINL61QUINT" ], "best": { - "id": "disco_AVOINL61QUINT", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_AVOI5L61AVOIN", + "family": "line_disconnection" } } }, @@ -14423,18 +16680,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -14456,18 +16719,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -14489,18 +16758,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -14520,17 +16795,23 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.66, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -14551,17 +16832,23 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 66.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.997, - "reducing": true + "max_rho": 0.66, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -14582,24 +16869,30 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.7, "solution": { "kind": "unitary", "actions": [ + "open_coupler_MARMAP6", "load_shedding_MOUS5Y641", "load_shedding_MOUS5Y642" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.497, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_a1525a", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL71PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14617,16 +16910,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.9, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.149, + "best_unitary": { + "max_rho": 1.149, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -14649,25 +16954,29 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_9d94a2", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL72PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14685,16 +16994,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.0, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.15, + "best_unitary": { + "max_rho": 1.15, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -14717,25 +17038,29 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_aee889", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL73PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14753,16 +17078,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.0, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.15, + "best_unitary": { + "max_rho": 1.15, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -14771,7 +17108,7 @@ { "id": "s_e4e81e29_6c6200", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BARNAL74PALUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14789,16 +17126,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.0, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+open_coupler_DARSEP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.15, + "best_unitary": { + "max_rho": 1.15, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.148, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.995, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.148 } @@ -14823,17 +17172,28 @@ "MOUS5L61PAUDY" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 105.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.059, "best_unitary": { + "max_rho": 1.217, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 1.281, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.059, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.115, + "resolves": false, + "rank": 1, "id": "load_shedding_MOUS5Y641+load_shedding_MOUS5Y642", "est_max_rho": 1.056 } @@ -14842,7 +17202,7 @@ { "id": "s_e4e81e29_51df4e", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BAYETL61VOLVI", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14860,20 +17220,26 @@ "BAYETY762" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71ECHAL", - "family": "line_disconnection", - "max_rho": 1.157, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSELOP7+open_coupler_B.MONP7", + "open_coupler_RULHAP6+open_coupler_SSELOP7", + "open_coupler_MOLE P6+open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.186, + "resolves": true, + "rank": 1, "id": "open_coupler_SSELOP7+open_coupler_B.MONP7", "est_max_rho": 0.136 - } + }, + "solving_pair_rank": 1 } }, { @@ -14895,26 +17261,37 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.029, "best_unitary": { + "max_rho": 1.041, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.095, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.029, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.016, - "id": "open_coupler_CHARPP7+disco_CHARPL71ECHAL", - "est_max_rho": 1.04 + "resolves": false, + "rank": 1, + "id": "load_shedding_GREPIY732+disco_CHARPL71ECHAL", + "est_max_rho": 1.029 } } }, { "id": "s_e4e81e29_281812", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BAYETL71MARMA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14929,20 +17306,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL72SSV.O", - "family": "line_disconnection", - "max_rho": 1.005, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_CHARPP7+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "reco_EGUZOY761+reco_EGUZOY772" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.008, - "id": "open_coupler_SSELOP7+disco_CHARPL71SSV.O", - "est_max_rho": 1.824 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 0.701 + }, + "solving_pair_rank": 1 } }, { @@ -14964,26 +17347,37 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.029, "best_unitary": { + "max_rho": 1.04, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.095, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.029, + "islanded": false, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.016, - "id": "open_coupler_CHARPP7+disco_CHARPL71ECHAL", - "est_max_rho": 1.039 + "resolves": false, + "rank": 1, + "id": "load_shedding_GREPIY731+disco_CHARPL71ECHAL", + "est_max_rho": 1.029 } } }, { "id": "s_e4e81e29_2188da", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BAYETL72MARMA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -14998,20 +17392,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL72SSV.O", - "family": "line_disconnection", - "max_rho": 1.005, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_CHARPP7+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "reco_EGUZOY761+reco_EGUZOY772" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.008, - "id": "open_coupler_SSELOP7+disco_CHARPL71SSV.O", - "est_max_rho": 1.823 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 0.702 + }, + "solving_pair_rank": 1 } }, { @@ -15031,18 +17431,23 @@ "BAYETY761" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 50.3, "solution": { "kind": "unitary", "actions": [ - "load_shedding_BAYETY631", - "load_shedding_BAYETY632", - "load_shedding_MTVICY633" + "disco_BAYETL61MTVIC", + "node_merging_BAYETP6", + "disco_MTLUCL61MTVIC" ], "best": { - "id": "load_shedding_BAYETY631", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.503, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BAYETL61MTVIC", + "family": "line_disconnection" } } }, @@ -15063,25 +17468,30 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_117f52", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BLAYAL72BRAUD", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15099,26 +17509,32 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_SANILL61TUILI", - "family": "line_disconnection", - "max_rho": 1.09, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+open_coupler_MARMAP6", + "disco_SANILL61TUILI+disco_DONZAL61VERLH", + "open_coupler_BREUIP7+open_coupler_CHARPP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.013, - "id": "disco_SANILL61TUILI+disco_DONZAL61VERLH", - "est_max_rho": 1.574 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+open_coupler_MARMAP6", + "est_max_rho": 1.2 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_369fbd", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BLAYAL74BRAUD", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15135,20 +17551,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_SANILL61TUILI", - "family": "line_disconnection", - "max_rho": 1.084, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_BREUIP7+open_coupler_SSELOP7", + "open_coupler_SSELOP7+disco_DONZAL61VERLH", + "open_coupler_SSELOP7+open_coupler_VERLHP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.011, - "id": "open_coupler_SSELOP7+open_coupler_B.MONP7", - "est_max_rho": 0.408 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_BREUIP7+open_coupler_SSELOP7", + "est_max_rho": 0.159 + }, + "solving_pair_rank": 1 } }, { @@ -15168,25 +17590,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3adaf4", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BOCTOL71N.SE1", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15204,18 +17631,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.148, + "best_unitary": { + "max_rho": 1.148, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.992, - "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", - "est_max_rho": 1.008 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.147, + "islanded": true, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", + "est_max_rho": 1.147 } } }, @@ -15236,25 +17675,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_COSSIL61COUBE" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_353f4a", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BOCTOL72N.SE2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15272,18 +17716,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.148, + "best_unitary": { + "max_rho": 1.148, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 0.992, - "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", - "est_max_rho": 1.008 + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.147, + "islanded": true, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", + "est_max_rho": 1.147 } } }, @@ -15304,16 +17760,21 @@ "BOISSL61ZJOUX" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.2, "solution": { "kind": "unitary", "actions": [ "open_coupler_BOISSP6" ], "best": { + "max_rho": 0.742, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_BOISSP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "family": "open_coupling" } } }, @@ -15335,17 +17796,28 @@ "JOUX L61MEUNI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.966, "best_unitary": { + "max_rho": 1.185, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_JOUX Y631", - "family": "load_shedding", - "max_rho": 1.247, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 0.966, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.017, + "resolves": false, + "rank": 1, "id": "load_shedding_JOUX Y631+load_shedding_JOUX Y632", "est_max_rho": 0.964 } @@ -15354,7 +17826,7 @@ { "id": "s_e4e81e29_84e485", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15369,26 +17841,32 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.619, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_DARSEP6+disco_RASSUL61S.AIR", + "disco_DARSEL62FEUIL+disco_RASSUL61S.AIR", + "disco_DARSEL61FEUIL+disco_RASSUL61S.AIR" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.004, - "id": "open_coupler_DARSEP6+disco_DARSEL61FEUIL", - "est_max_rho": 1.443 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_DARSEP6+disco_RASSUL61S.AIR", + "est_max_rho": 0.562 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_5a3fb3", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BORT L62MOLE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15405,20 +17883,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_COULAL71P.COR", - "family": "line_disconnection", - "max_rho": 1.113, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+open_coupler_MARMAP6", + "reco_EGUZOY772+open_coupler_MARMAP6", + "reco_EGUZOY761+reco_EGUZOY772" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.092, - "id": "disco_COULAL72P.COR+reco_DAMBRL62ZCAR6", - "est_max_rho": 1.9 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+open_coupler_MARMAP6", + "est_max_rho": 0.603 + }, + "solving_pair_rank": 1 } }, { @@ -15438,25 +17922,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_M.SEIP7", - "open_coupler_SEREIP6", - "open_coupler_CHESNP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "node_merging_M.SEIP7", - "family": "node_merging", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3539e9", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — BREUIL71RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15472,26 +17961,32 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "node_merging_BAYETP6", - "family": "node_merging", - "max_rho": 1.139, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_MOLE P6+open_coupler_SSELOP7", + "open_coupler_MARMAP6+open_coupler_SSELOP7", + "reco_EGUZOY761+open_coupler_MARMAP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.014, - "id": "node_merging_CHAINP7+open_coupler_SSELOP7", - "est_max_rho": 1.056 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_MOLE P6+open_coupler_SSELOP7", + "est_max_rho": 0.547 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_be2272", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BVIL7L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15508,25 +18003,37 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.7, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE1+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.147, + "best_unitary": { + "max_rho": 1.147, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.206, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.993, - "id": "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1", - "est_max_rho": 1.007 + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", + "est_max_rho": 0.991 } } }, { "id": "s_e4e81e29_43dc87", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BVILXL72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15543,18 +18050,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.7, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE1+open_coupler_SEREIP6", - "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.147, + "best_unitary": { + "max_rho": 1.147, + "islanded": false, + "reduces": false, + "n_over_after": 3, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.206, + "islanded": true, + "reduces": false, + "n_over_after": 3, "converged": true, - "true_max_rho": 0.993, - "id": "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE1", - "est_max_rho": 1.007 + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_SEREIP6", + "est_max_rho": 0.991 } } }, @@ -15575,23 +18094,30 @@ "MERLAL61RECOU" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_MERLAL61RECOU", + "disco_CHOLEL61RECOU", "open_coupler_MERLAP6" ], "best": { - "id": "open_coupler_MERLAP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_MERLAL61RECOU", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_f435dc", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — BXRE6L61CHAIN", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -15606,18 +18132,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.0, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_BAYETY631", - "load_shedding_BAYETY632", - "disco_CHARPL71ECHAL" - ], - "best": { - "id": "load_shedding_BAYETY631", - "family": "load_shedding", + "kind": "none", + "best_nonisl_max_rho": 0.96, + "best_unitary": { + "max_rho": 0.96, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { "max_rho": 0.993, - "reducing": true + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", + "est_max_rho": 0.943 } } }, @@ -15638,18 +18176,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "open_coupler_BXTO5P6_1", - "disco_BXTO5L61H.VIE" + "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -15670,18 +18213,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "disco_CAPELL71LONNY" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -15702,18 +18250,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 65.6, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_CAPELL71LONNY", + "open_coupler_BXTO5P6", "disco_BXTO5L62LATEN" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.656, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -15734,18 +18287,23 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 28.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_DARSEP6", - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL" + "disco_RASSUL61S.AIR", + "disco_RQROUL61S.AIR", + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_DARSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": false + "max_rho": 0.285, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_RASSUL61S.AIR", + "family": "line_disconnection" } } }, @@ -15766,18 +18324,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -15798,18 +18361,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -15830,17 +18398,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "disco_NANTEL61PUTEA" + "disco_CORMEL62NANTE", + "node_merging_CORMEP6" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -15861,18 +18434,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -15893,18 +18470,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -15925,18 +18506,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VERLHP6", "disco_DANTOL61VERLH", - "disco_DANTOL61TUILI" + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { - "id": "open_coupler_VERLHP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DANTOL61VERLH", + "family": "line_disconnection" } } }, @@ -15959,19 +18545,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.042, "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.099, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.042, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.048, - "id": "open_coupler_CHARPP7+load_shedding_GREPIY731", - "est_max_rho": 1.043 + "resolves": false, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 1.042 } } }, @@ -15994,19 +18591,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.042, "best_unitary": { + "max_rho": 1.044, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_CHARPP7", - "family": "open_coupling", - "max_rho": 1.099, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.042, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.049, - "id": "open_coupler_CHARPP7+load_shedding_GREPIY732", - "est_max_rho": 1.043 + "resolves": false, + "rank": 1, + "id": "open_coupler_CHARPP7+open_coupler_SSELOP7", + "est_max_rho": 1.042 } } }, @@ -16029,19 +18637,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.986, "best_unitary": { - "id": "open_coupler_MARMAP7", - "family": "open_coupling", - "max_rho": 1.076, - "reducing": false + "max_rho": 0.986, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 0.988, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.03, - "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", - "est_max_rho": 0.979 + "resolves": false, + "rank": 3, + "id": "node_merging_BAYETP6+open_coupler_RUEYRP6", + "est_max_rho": 1.012 } } }, @@ -16062,25 +18681,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "load_shedding_ROUSSY633" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_a20d00", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CHESNL71VLECH", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16094,18 +18718,21 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.7, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "disco_SEREIL71VIELM+disco_SARRYL61SEREI", - "disco_SEREIL71VIELM+disco_SARRYL61VIELM" + "disco_SEREIL71VIELM" ], "best": { + "max_rho": 0.767, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "est_max_rho": 0.946 + "resolves": true, + "id": "disco_SEREIL71VIELM", + "family": "line_disconnection" } } }, @@ -16126,18 +18753,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "load_shedding_ROUSSY633" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -16160,19 +18792,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.5, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "open_coupler_CZTRYP6+disco_DANTOL61TUILI", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_SEREIP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.945, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.996, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", - "est_max_rho": 0.946 - } + "resolves": true, + "rank": 5, + "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "est_max_rho": 0.948 + }, + "solving_pair_rank": 1 } }, { @@ -16194,18 +18833,24 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61TUILI", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.998, - "id": "open_coupler_SEREIP6+disco_DANTOL61TUILI", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.948 - } + }, + "solving_pair_rank": 2 } }, { @@ -16225,18 +18870,23 @@ "CIROLL62LOGES" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ + "disco_CIROLL62LOGES", "load_shedding_LOGESY641", - "load_shedding_LOGESY642", - "load_shedding_VLEJUY641" + "load_shedding_LOGESY642" ], "best": { - "id": "load_shedding_LOGESY641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL62LOGES", + "family": "line_disconnection" } } }, @@ -16257,18 +18907,23 @@ "CIROLL61LOGES" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LOGESP6", + "disco_CIROLL61LOGES", "load_shedding_LOGESY641", "load_shedding_LOGESY642" ], "best": { - "id": "open_coupler_LOGESP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CIROLL61LOGES", + "family": "line_disconnection" } } }, @@ -16289,18 +18944,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -16322,17 +18981,28 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 112.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.12, "best_unitary": { + "max_rho": 1.122, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "load_shedding_TUILIY632", - "family": "load_shedding", - "max_rho": 1.181, - "reducing": false + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.12, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.179, + "resolves": false, + "rank": 1, "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", "est_max_rho": 1.12 } @@ -16355,6 +19025,7 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -16362,10 +19033,14 @@ "disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -16387,25 +19062,30 @@ "CPNIEL61SELF2" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_PARISY633", - "load_shedding_PARISY632", - "load_shedding_PARISY631" + "disco_CPNIEL61PARIS", + "disco_CPNIEL61SELF2", + "disco_CPNIEL63SELF2" ], "best": { - "id": "load_shedding_PARISY633", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CPNIEL61PARIS", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_523f23", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CORMEL61PERRE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16419,17 +19099,29 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.5, "solution": { - "kind": "pair", - "actions": [ - "node_merging_CORMEP6+load_shedding_PUTEAY633", - "reco_CERGYL61ZLIE5+node_merging_CORMEP6", - "disco_NANTEL61PUTEA+load_shedding_PUTEAY633" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.025, + "best_unitary": { + "max_rho": 1.092, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "disco_NANTEL61PUTEA", + "family": "line_disconnection" + }, + "best_pair": { + "max_rho": 1.025, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.993, - "id": "node_merging_CORMEP6+load_shedding_PUTEAY633", + "resolves": false, + "rank": 3, + "id": "disco_NANTEL61PUTEA+load_shedding_PUTEAY633", "est_max_rho": 0.943 } } @@ -16453,17 +19145,23 @@ "CORMEL61PERRE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 37.3, "solution": { "kind": "unitary", "actions": [ "disco_ALSACL61PERRE", - "disco_ALSACL61PUTEA" + "disco_ALSACL61PUTEA", + "node_merging_CORMEP6" ], "best": { + "max_rho": 0.373, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_ALSACL61PERRE", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -16484,16 +19182,21 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_NANTEL61PUTEA" + "disco_CORMEL62NANTE" ], "best": { - "id": "disco_NANTEL61PUTEA", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -16514,17 +19217,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "disco_NANTEL61PUTEA" + "disco_CORMEL62NANTE", + "node_merging_CORMEP6" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -16545,18 +19253,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_M.SEIP7", - "open_coupler_SEREIP6", - "disco_ROUSSL61SEREI" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "node_merging_M.SEIP7", - "family": "node_merging", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -16577,25 +19290,30 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "disco_MOIRAL61ZP.IL", + "disco_CONF5L61CPNIE", "disco_CONF5L61ZP.IL", - "load_shedding_PARISY633" + "disco_MOIRAL61ZP.IL" ], "best": { - "id": "disco_MOIRAL61ZP.IL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c31d02", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61PARIS", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16609,26 +19327,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_CONF5Y611", - "family": "load_shedding", - "max_rho": 1.082, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_CONF5L61CPNIE" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.016, - "id": "load_shedding_CONF5Y611+load_shedding_CONF5Y612", - "est_max_rho": 0.965 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3f4713", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL61SELF2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16642,26 +19362,28 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_CONF5Y611", - "family": "load_shedding", - "max_rho": 1.082, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_CONF5L61CPNIE" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.016, - "id": "load_shedding_CONF5Y611+load_shedding_CONF5Y612", - "est_max_rho": 0.964 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c2556e", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — CPNIEL63SELF2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16675,19 +19397,21 @@ "CONF5L61CPNIE" ], "nActionsDiscovered": 11, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "load_shedding_CONF5Y611", - "family": "load_shedding", - "max_rho": 1.082, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_CONF5L61CPNIE" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.016, - "id": "load_shedding_CONF5Y611+load_shedding_CONF5Y612", - "est_max_rho": 0.964 + "resolves": true, + "id": "disco_CONF5L61CPNIE", + "family": "line_disconnection" } } }, @@ -16708,18 +19432,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -16740,18 +19469,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -16772,18 +19506,23 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_Q.SEIY631", - "load_shedding_Q.SEIY632", - "load_shedding_MTPELY631" + "disco_Q.SEIL61TAMAR", + "disco_Q.SEIL61SAUMA", + "open_coupler_MTPELP6" ], "best": { - "id": "load_shedding_Q.SEIY631", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_Q.SEIL61TAMAR", + "family": "line_disconnection" } } }, @@ -16804,25 +19543,30 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "load_shedding_Q.SEIY631", - "load_shedding_Q.SEIY632", - "load_shedding_MTPELY631" + "disco_Q.SEIL61TAMAR", + "disco_Q.SEIL61SAUMA", + "open_coupler_MTPELP6" ], "best": { - "id": "load_shedding_Q.SEIY631", - "family": "load_shedding", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_Q.SEIL61TAMAR", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_8240b3", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CSLLEL61E.BOT", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16837,25 +19581,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.9, "solution": { - "kind": "unitary", - "actions": [ - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL", - "disco_FEUILL61LAVER" - ], - "best": { - "id": "disco_DARSEL61FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": false + "kind": "none", + "best_nonisl_max_rho": 1.099, + "best_unitary": { + "max_rho": 1.099, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.313, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_DARSEP6+disco_FEUILL61PONTE", + "est_max_rho": 0.944 } } }, { "id": "s_e4e81e29_a42b1e", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CSLLEL61ESCAI", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16870,25 +19626,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.6, "solution": { - "kind": "unitary", - "actions": [ - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL", - "disco_FEUILL61LAVER" - ], - "best": { - "id": "disco_DARSEL61FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": false + "kind": "none", + "best_nonisl_max_rho": 1.096, + "best_unitary": { + "max_rho": 1.096, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.31, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_DARSEP6+disco_FEUILL61PONTE", + "est_max_rho": 0.944 } } }, { "id": "s_e4e81e29_27cf89", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CTAURL61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16902,18 +19670,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 99.0, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_JONQUP6", - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL" - ], - "best": { - "id": "open_coupler_JONQUP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 0.99, + "best_unitary": { + "max_rho": 0.99, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.313, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 6, + "id": "open_coupler_DARSEP6+disco_DURANL61ROGNA", + "est_max_rho": 0.944 } } }, @@ -16934,18 +19714,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -16966,25 +19751,32 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "pair", "actions": [ "open_coupler_VERLHP6+disco_LESQUL61VERLH", - "open_coupler_VERLHP6+disco_DONZAL61VERLH", - "disco_LESQUL61VERLH+disco_DONZAL71LESQU" + "open_coupler_RUEYRP7+disco_DONZAL71LESQU", + "open_coupler_VERLHP6+disco_DONZAL61VERLH" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, - "id": "open_coupler_P.SIMP6_1+open_coupler_P.SIMP6", - "est_max_rho": 2.479 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_VERLHP6+disco_LESQUL61VERLH", + "est_max_rho": 1.865 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_25b2bf", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CUBNEL71DONZA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -16998,16 +19790,28 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.8, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_VERLHP6+load_shedding_TUILIY632", - "open_coupler_VERLHP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.978, + "best_unitary": { + "max_rho": 1.048, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_TUILIY632", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.978, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.991, + "resolves": false, + "rank": 1, "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", "est_max_rho": 0.942 } @@ -17016,7 +19820,7 @@ { "id": "s_e4e81e29_9c5ba0", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — CUBNEL72DONZA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17030,16 +19834,28 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.0, "solution": { - "kind": "pair", - "actions": [ - "load_shedding_TUILIY632+load_shedding_TUILIY631", - "open_coupler_VERLHP6+load_shedding_TUILIY632", - "open_coupler_VERLHP6+load_shedding_TUILIY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.98, + "best_unitary": { + "max_rho": 1.05, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_TUILIY632", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 0.98, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.991, + "resolves": false, + "rank": 1, "id": "load_shedding_TUILIY632+load_shedding_TUILIY631", "est_max_rho": 0.942 } @@ -17062,18 +19878,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -17094,18 +19915,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -17126,18 +19952,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -17158,25 +19989,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3bf176", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL71GATI5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17191,25 +20027,37 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 99.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "open_coupler_MARMAP7+load_shedding_BAYETY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.991, + "best_unitary": { + "max_rho": 0.991, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "est_max_rho": 0.944 + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 1.004, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+disco_EGUZOL61MAURE", + "est_max_rho": 0.955 } } }, { "id": "s_e4e81e29_17cb98", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL71VERGE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17224,17 +20072,29 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61SSFEY+load_shedding_BAYETY632", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.981, + "best_unitary": { + "max_rho": 0.981, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 0.999, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", "est_max_rho": 0.944 } } @@ -17242,7 +20102,7 @@ { "id": "s_e4e81e29_f2bf6c", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL72GATI5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17257,25 +20117,37 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 99.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY632" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.991, + "best_unitary": { + "max_rho": 0.991, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "est_max_rho": 0.944 + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 1.004, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 6, + "id": "open_coupler_MARMAP7+disco_EGUZOL61MAURE", + "est_max_rho": 0.955 } } }, { "id": "s_e4e81e29_bd6579", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — DAMBRL72VERGE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17290,17 +20162,29 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.1, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", - "disco_EGUZOL61SSFEY+load_shedding_BAYETY632", - "disco_EGUZOL61MAURE+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.981, + "best_unitary": { + "max_rho": 0.981, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 0.999, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.994, - "id": "disco_EGUZOL61SSFEY+load_shedding_BAYETY631", + "resolves": false, + "rank": 5, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", "est_max_rho": 0.944 } } @@ -17323,17 +20207,23 @@ "ROGNAL61SSCHA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.0, "solution": { "kind": "unitary", "actions": [ + "disco_P.ORGL61RQROU", "load_shedding_P.ORG6ISCLE1", "disco_RQROUL61ZVILA" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.89, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_P.ORGL61RQROU", + "family": "line_disconnection" } } }, @@ -17354,18 +20244,23 @@ "CHOLEL61DISTR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_CHEV5P6", + "disco_CHOLEL61RECOU", "disco_CHOLEL61MAUGE", - "disco_CHOLEL61RECOU" + "open_coupler_CHEV5P6" ], "best": { - "id": "open_coupler_CHEV5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.818, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHOLEL61RECOU", + "family": "line_disconnection" } } }, @@ -17386,18 +20281,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -17426,17 +20326,28 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 114.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.149, "best_unitary": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 1.153, - "reducing": false + "max_rho": 1.149, + "islanded": false, + "reduces": false, + "n_over_after": 8, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.21, + "islanded": true, + "reduces": false, + "n_over_after": 9, "converged": true, - "true_max_rho": 1.044, + "resolves": false, + "rank": 1, "id": "load_shedding_P.ORG6ISCLE1+redispatch_SSEST6GROUPE2", "est_max_rho": 1.095 } @@ -17459,25 +20370,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 79.8, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.798, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_9147bf", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — EGUZOL61MOUS5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17492,20 +20406,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71SSV.O", - "family": "line_disconnection", - "max_rho": 1.003, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_CHARPP7+disco_CHARPL71SSV.O", + "reco_EGUZOY761+reco_EGUZOY772", + "open_coupler_CHARPP7+open_coupler_ECHALP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.096, - "id": "reco_EGUZOY761+reco_EGUZOY772", - "est_max_rho": 1.794 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_CHARPP7+disco_CHARPL71SSV.O", + "est_max_rho": 1.084 + }, + "solving_pair_rank": 1 } }, { @@ -17526,19 +20446,30 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 107.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.079, "best_unitary": { - "id": "open_coupler_MARMAP7", - "family": "open_coupling", - "max_rho": 1.209, - "reducing": false + "max_rho": 1.079, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_GODINP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.039, - "id": "open_coupler_MARMAP7+disco_GATELL61ZENCH", - "est_max_rho": 1.139 + "resolves": false, + "rank": 1, + "id": "open_coupler_MARMAP7+open_coupler_RUEYRP6", + "est_max_rho": 1.133 } } }, @@ -17560,17 +20491,28 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.097, "best_unitary": { + "max_rho": 1.127, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 1.186, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.097, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.155, + "resolves": false, + "rank": 1, "id": "open_coupler_MOLE P6+open_coupler_RUEYRP7", "est_max_rho": 1.097 } @@ -17593,18 +20535,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -17625,18 +20571,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "open_coupler_BXTO5P6_1", - "disco_BXTO5L61H.VIE" + "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", + "disco_CAPELL71LONNY" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -17657,18 +20608,23 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ARGIEL61SIERE", - "disco_ARGIEL61ETUPE" + "disco_ARGIEL61ETUPE", + "load_shedding_ARGIEY632" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ARGIEL61SIERE", + "family": "line_disconnection" } } }, @@ -17689,23 +20645,30 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 28.5, "solution": { "kind": "unitary", "actions": [ + "disco_RASSUL61S.AIR", + "disco_RQROUL61S.AIR", "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.285, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_RASSUL61S.AIR", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c445b6", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — FLAMAL72MENUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17725,16 +20688,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.1, "solution": { - "kind": "pair", - "actions": [ - "open_coupler_RQROUP6+load_shedding_TUILIY632", - "open_coupler_RQROUP6+load_shedding_TUILIY631", - "open_coupler_RQROUP6+disco_BREUIL61ZSSG7" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.151, + "best_unitary": { + "max_rho": 1.151, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.15, + "islanded": true, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 0.999, + "resolves": false, + "rank": 1, "id": "open_coupler_RQROUP6+load_shedding_TUILIY632", "est_max_rho": 1.15 } @@ -17743,7 +20718,7 @@ { "id": "s_e4e81e29_36bfed", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — FLEACL61SANIL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17757,18 +20732,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.2, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "load_shedding_DANTOY632", - "load_shedding_DANTOY633" + "load_shedding_DANTOY632+load_shedding_DANTOY633", + "disco_LESQUL61VERLH+load_shedding_DANTOY632", + "disco_LESQUL62VERLH+load_shedding_DANTOY632" ], "best": { - "id": "load_shedding_DANTOY632", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true - } + "max_rho": 0.892, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 1, + "id": "load_shedding_DANTOY632+load_shedding_DANTOY633", + "est_max_rho": 0.943 + }, + "solving_pair_rank": 1 } }, { @@ -17788,25 +20771,29 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "disco_DANTOL61TUILI", - "load_shedding_DANTOY632" + "disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_c5f106", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GARCHL61SSELO", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17822,26 +20809,32 @@ "TABARY762" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_NEMOUL61VLEMA", - "family": "line_disconnection", - "max_rho": 1.095, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_TABARP6+disco_TABARL61ZGLAC", + "disco_GIEN L61ZGIEN+disco_VLEMAL61ZGLAC", + "disco_GIEN L61ZGIEN+disco_NEMOUL61VLEMA" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.063, - "id": "disco_GIEN L61ZGIEN+disco_NEMOUL61VLEMA", - "est_max_rho": 2.209 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_TABARP6+disco_TABARL61ZGLAC", + "est_max_rho": 0.745 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_ea6086", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GATI5L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17857,20 +20850,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71ECHAL", - "family": "line_disconnection", - "max_rho": 1.075, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+disco_EGUZOL61MAURE", + "reco_EGUZOY761+reco_EGUZOY772", + "open_coupler_CHARPP7+disco_CHARPL71ECHAL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.056, - "id": "reco_EGUZOY772+disco_EGUZOL61MAURE", - "est_max_rho": 1.947 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+disco_EGUZOL61MAURE", + "est_max_rho": 1.797 + }, + "solving_pair_rank": 1 } }, { @@ -17890,25 +20889,30 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_MARMAP6", "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "open_coupler_MARMAP7" + "load_shedding_MOUS5Y642" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_40a62f", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GATI5L72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -17924,20 +20928,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_CHARPL71ECHAL", - "family": "line_disconnection", - "max_rho": 1.075, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+disco_EGUZOL61MAURE", + "reco_EGUZOY761+reco_EGUZOY772", + "open_coupler_CHARPP7+disco_CHARPL71ECHAL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.055, - "id": "reco_EGUZOY772+disco_EGUZOL61MAURE", - "est_max_rho": 1.947 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+disco_EGUZOL61MAURE", + "est_max_rho": 1.798 + }, + "solving_pair_rank": 1 } }, { @@ -17957,18 +20967,23 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ + "open_coupler_MARMAP6", "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "open_coupler_MARMAP7" + "load_shedding_MOUS5Y642" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -17993,17 +21008,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.8, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.048, "best_unitary": { + "max_rho": 1.054, + "islanded": false, + "reduces": false, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.11, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.048, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.077, + "resolves": false, + "rank": 1, "id": "open_coupler_VERFEP7+load_shedding_VERFEY631", "est_max_rho": 1.048 } @@ -18012,7 +21038,7 @@ { "id": "s_e4e81e29_81ed63", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GAUDIL71TAMAR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -18031,20 +21057,26 @@ "BAYETY761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_PEYROL61SAUMA", - "family": "line_disconnection", - "max_rho": 1.226, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", + "disco_Q.SEIL61SAUMA+disco_MTPELL61PEYRO", + "open_coupler_MTPELP6+disco_Q.SEIL61SAUMA" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.227, + "resolves": true, + "rank": 1, "id": "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", "est_max_rho": 0.773 - } + }, + "solving_pair_rank": 1 } }, { @@ -18068,17 +21100,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.111, "best_unitary": { - "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.225, - "reducing": false + "max_rho": 1.163, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "reco_GANGEL61VIRAD", + "family": "line_reconnection" }, "best_pair": { + "max_rho": 1.111, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.17, + "resolves": false, + "rank": 1, "id": "open_coupler_VERFEP7+disco_CAZARL71VERFE", "est_max_rho": 1.112 } @@ -18087,7 +21130,7 @@ { "id": "s_e4e81e29_3278f8", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — GAUDIL72TAMAR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -18106,20 +21149,26 @@ "BAYETY761" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_PEYROL61SAUMA", - "family": "line_disconnection", - "max_rho": 1.226, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", + "disco_Q.SEIL61SAUMA+disco_MTPELL61PEYRO", + "open_coupler_MTPELP6+disco_Q.SEIL61SAUMA" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.227, + "resolves": true, + "rank": 1, "id": "disco_Q.SEIL61SAUMA+disco_PEYROL61SAUMA", "est_max_rho": 0.773 - } + }, + "solving_pair_rank": 1 } }, { @@ -18139,18 +21188,23 @@ "PYMONL61VOUGL" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VOUGLP6", - "open_coupler_CPVANP6", - "disco_GEN.PL61VOUGL" + "disco_PYMONL61VOUGL", + "disco_CPVANL61PYMON", + "open_coupler_VOUGLP6" ], "best": { - "id": "open_coupler_VOUGLP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PYMONL61VOUGL", + "family": "line_disconnection" } } }, @@ -18171,18 +21225,23 @@ "PYMONL61VOUGL" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VOUGLP6", - "open_coupler_CPVANP6", - "disco_GEN.PL61VOUGL" + "disco_PYMONL61VOUGL", + "disco_CPVANL61PYMON", + "open_coupler_VOUGLP6" ], "best": { - "id": "open_coupler_VOUGLP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PYMONL61VOUGL", + "family": "line_disconnection" } } }, @@ -18203,16 +21262,21 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.9, "solution": { "kind": "unitary", "actions": [ "open_coupler_MOLE P6" ], "best": { + "max_rho": 0.949, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.999, - "reducing": true + "family": "open_coupling" } } }, @@ -18233,18 +21297,23 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "open_coupler_BREUIP7", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.63, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -18265,18 +21334,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "open_coupler_VERLHP6", - "disco_DANTOL61TUILI" + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -18298,19 +21372,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -18331,19 +21411,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -18364,19 +21450,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -18397,19 +21489,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ - "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_CHESNP6+disco_DANTOL61VERLH" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, - "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "resolves": true, + "rank": 3, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -18430,19 +21528,25 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.8, "solution": { "kind": "pair", "actions": [ - "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61VERLH", - "open_coupler_CHESNP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61TUILI", + "open_coupler_CHESNP6+disco_DANTOL61VERLH" ], "best": { + "max_rho": 0.948, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, - "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", + "resolves": true, + "rank": 3, + "id": "open_coupler_CHESNP6+disco_DANTOL61TUILI", "est_max_rho": 0.943 - } + }, + "solving_pair_rank": 1 } }, { @@ -18462,18 +21566,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -18495,17 +21604,28 @@ "PYMONL61VOUGL" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 96.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.966, "best_unitary": { - "id": "disco_SARRYL61SEREI", - "family": "line_disconnection", - "max_rho": 1.029, - "reducing": true + "max_rho": 0.966, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "open_coupler_BOISSP6_1", + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.97, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.021, + "resolves": false, + "rank": 2, "id": "disco_SARRYL61VIELM+load_shedding_CPVANY632", "est_max_rho": 0.97 } @@ -18528,18 +21648,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -18560,81 +21685,59 @@ "HARC7L61ROBI5" ], "nActionsDiscovered": 8, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ROBI5P6", "disco_HARC7L61ROBI5", - "disco_ROBI5L61ZROBI" - ], - "best": { - "id": "open_coupler_ROBI5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true - } - } - }, - { - "id": "s_e4e81e29_5a46c4", - "gridId": "grid_e4e81e29", - "difficulty": "easy", - "title": "January — Monday evening", - "label": "January — Monday evening — I.NAPL61LUTTE", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "I.NAPL61LUTTE", - "contingencyLabel": "I.NAPL61LUTTE", - "baselineMaxLoadingPct": 119.8, - "nOverloadedLines": 1, - "overloadedLines": [ - "CHAL7L61SIERE" - ], - "nActionsDiscovered": 4, - "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_FESSEP6" + "open_coupler_ROBI5P6", + "disco_ROBI5L61ZROBI" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_HARC7L61ROBI5", + "family": "line_disconnection" } } }, { - "id": "s_e4e81e29_08e87d", + "id": "s_e4e81e29_5a46c4", "gridId": "grid_e4e81e29", "difficulty": "easy", "title": "January — Monday evening", - "label": "January — Monday evening — I.NAPL61OTTMA", + "label": "January — Monday evening — I.NAPL61LUTTE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "I.NAPL61OTTMA", - "contingencyLabel": "I.NAPL61OTTMA", - "baselineMaxLoadingPct": 131.2, - "nOverloadedLines": 4, + "contingencyElementId": "I.NAPL61LUTTE", + "contingencyLabel": "I.NAPL61LUTTE", + "baselineMaxLoadingPct": 119.8, + "nOverloadedLines": 1, "overloadedLines": [ - "CHAL7L61FESSE", - "CHAL7L61SIERE", - "KEMBSL61OTTMA", - "KEMBSL61SIERE" + "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -18659,17 +21762,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.6, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.046, "best_unitary": { - "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.108, - "reducing": false + "max_rho": 1.046, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "reco_GANGEL61VIRAD", + "family": "line_reconnection" }, "best_pair": { + "max_rho": 1.046, + "islanded": false, + "reduces": false, + "n_over_after": 4, "converged": true, - "true_max_rho": 1.063, + "resolves": false, + "rank": 1, "id": "open_coupler_VERFEP7+load_shedding_VERFEY631", "est_max_rho": 1.046 } @@ -18696,17 +21810,28 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 100.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.0, "best_unitary": { + "max_rho": 1.0, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_VERFEP7", - "family": "open_coupling", - "max_rho": 1.012, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.137, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.197, + "resolves": false, + "rank": 6, "id": "open_coupler_VERFEP7+disco_AYRESL71GAUDI", "est_max_rho": 0.962 } @@ -18715,7 +21840,7 @@ { "id": "s_e4e81e29_bc4e0d", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — ISSOIL61LIGNA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -18731,20 +21856,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "node_merging_BAYETP6", - "family": "node_merging", - "max_rho": 1.041, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSELOP7+open_coupler_ECHALP7", + "open_coupler_SSELOP7+open_coupler_B.MONP7", + "node_merging_BAYETP6+open_coupler_SSELOP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.041, - "id": "node_merging_BAYETP6+open_coupler_SSELOP7", - "est_max_rho": 0.826 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSELOP7+open_coupler_ECHALP7", + "est_max_rho": 0.228 + }, + "solving_pair_rank": 1 } }, { @@ -18764,25 +21895,30 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_VERLHP6", - "open_coupler_VERFEP7", - "open_coupler_P.SIMP6_1" + "disco_DANTOL61VERLH", + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { - "id": "open_coupler_VERLHP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DANTOL61VERLH", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_6e3590", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — JONQUL61MTAG5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -18796,19 +21932,24 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 81.7, "solution": { - "kind": "unitary", + "kind": "pair", "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_RQROUP6" + "disco_DARSEL61RASSU+load_shedding_P.ORG6ISCLE2" ], "best": { - "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true - } + "max_rho": 0.817, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "rank": 6, + "id": "disco_DARSEL61RASSU+load_shedding_P.ORG6ISCLE2", + "est_max_rho": 0.944 + }, + "solving_pair_rank": 6 } }, { @@ -18828,17 +21969,28 @@ "BOISSL61ZJOUX" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.0, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.97, "best_unitary": { + "max_rho": 1.035, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_BOISSP6_1", - "family": "open_coupling", - "max_rho": 1.089, - "reducing": true + "family": "open_coupling" }, "best_pair": { + "max_rho": 0.97, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.021, + "resolves": false, + "rank": 1, "id": "open_coupler_BOISSP6_1+load_shedding_MACONY633", "est_max_rho": 0.971 } @@ -18862,16 +22014,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 25.3, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.253, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -18893,16 +22051,22 @@ "CHAL7L61SIERE" ], "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 25.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_FESSEP6" + "disco_CHAL7L61SIERE", + "disco_CHAL7L61FESSE" ], "best": { - "id": "open_coupler_FESSEP6", - "family": "open_coupling", - "max_rho": 0.992, - "reducing": true + "max_rho": 0.255, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CHAL7L61SIERE", + "family": "line_disconnection" } } }, @@ -18925,19 +22089,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 98.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.989, "best_unitary": { - "id": "open_coupler_MARMAP7", - "family": "open_coupling", - "max_rho": 1.077, - "reducing": false + "max_rho": 0.989, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 0.994, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.037, - "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", - "est_max_rho": 0.985 + "resolves": false, + "rank": 3, + "id": "node_merging_BAYETP6+open_coupler_RUEYRP6", + "est_max_rho": 1.014 } } }, @@ -18958,18 +22133,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -18990,18 +22170,23 @@ "PERTAL61ROYE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_PERTAP6", "disco_PERTAL61ROYE", - "disco_CARRIL61VALES" + "disco_VALESL61ZB.ME", + "disco_ROYE L61ZB.ME" ], "best": { - "id": "open_coupler_PERTAP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PERTAL61ROYE", + "family": "line_disconnection" } } }, @@ -19022,18 +22207,22 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 33.1, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "disco_RQROUL61S.AIR", + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.331, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_RQROUL61S.AIR", + "family": "line_disconnection" } } }, @@ -19054,18 +22243,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_FEUILL61PONTE", "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.822, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -19086,18 +22278,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_FEUILL61PONTE", "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.822, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -19118,25 +22313,28 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 82.2, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_FEUILL61PONTE", "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.822, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_161333", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — LIGNAL61RULHA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -19152,20 +22350,26 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_ISSOIP6", - "family": "open_coupling", - "max_rho": 1.106, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "open_coupler_SSELOP7+disco_CHARPL71SSV.O", + "open_coupler_SSELOP7+open_coupler_ECHALP7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.159, - "id": "open_coupler_CHARPP7+disco_CHARPL71SSV.O", - "est_max_rho": 1.07 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_SSELOP7+disco_CHARPL72SSV.O", + "est_max_rho": 0.764 + }, + "solving_pair_rank": 1 } }, { @@ -19185,18 +22389,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_CHESNL61ROUSS" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -19217,18 +22426,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "disco_COSSIL61COUBE" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -19249,18 +22463,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 76.3, "solution": { "kind": "unitary", "actions": [ - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL", - "disco_FEUILL61PONTE" + "open_coupler_RQROUP6" ], "best": { - "id": "disco_DARSEL62FEUIL", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.763, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -19281,18 +22498,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ - "disco_AUBUSL61SSFEY", - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642" + "open_coupler_MARMAP6" ], "best": { - "id": "disco_AUBUSL61SSFEY", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -19313,18 +22533,23 @@ "ATTAQL72WARAN" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 19.5, "solution": { "kind": "unitary", "actions": [ - "open_coupler_WARANP7", - "disco_ARGOEL71MANDA", - "disco_FRUGEL71MANDA" + "open_coupler_ATTAQP7", + "disco_ATTAQL72MANDA", + "open_coupler_WARANP7" ], "best": { - "id": "open_coupler_WARANP7", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.195, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_ATTAQP7", + "family": "open_coupling" } } }, @@ -19349,17 +22574,28 @@ "BAYETY761" ], "nActionsDiscovered": 10, + "bestAchievableLoadingPct": 102.5, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.025, "best_unitary": { + "max_rho": 1.077, + "islanded": false, + "reduces": true, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "load_shedding_MTLUCY633", - "family": "load_shedding", - "max_rho": 1.134, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.025, + "islanded": false, + "reduces": true, + "n_over_after": 3, "converged": true, - "true_max_rho": 1.072, + "resolves": false, + "rank": 1, "id": "load_shedding_MTLUCY633+load_shedding_EGUZOY643", "est_max_rho": 1.024 } @@ -19382,17 +22618,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 9.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.096, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -19413,17 +22653,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -19444,18 +22688,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.992, - "reducing": true + "family": "line_disconnection" } } }, @@ -19476,18 +22725,22 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "disco_DANTOL61TUILI", - "load_shedding_DANTOY632" + "disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -19508,18 +22761,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -19540,17 +22798,22 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.7, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "disco_CAPELL71LONNY" + "disco_CAPELL71LONNY", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.897, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CAPELL71LONNY", + "family": "line_disconnection" } } }, @@ -19571,18 +22834,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_NANTEL62PUTEA" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -19603,16 +22870,21 @@ "MEZE5L63PORCH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.7, "solution": { "kind": "unitary", "actions": [ "node_merging_CERGYP6" ], "best": { + "max_rho": 0.747, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -19633,18 +22905,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 12, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_NANTEL62PUTEA" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -19665,16 +22941,21 @@ "MEZE5L61PORCH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 74.6, "solution": { "kind": "unitary", "actions": [ "node_merging_CERGYP6" ], "best": { + "max_rho": 0.746, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_CERGYP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -19695,18 +22976,22 @@ "CORMEL62NANTE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_CORMEP6", - "open_coupler_CORMEP6", - "disco_BOULEL61NANTE" + "disco_CORMEL62NANTE", + "disco_NANTEL61PUTEA" ], "best": { - "id": "node_merging_CORMEP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_CORMEL62NANTE", + "family": "line_disconnection" } } }, @@ -19731,17 +23016,28 @@ "BAYETY761" ], "nActionsDiscovered": 17, + "bestAchievableLoadingPct": 104.2, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.042, "best_unitary": { + "max_rho": 1.07, + "islanded": false, + "reduces": true, + "n_over_after": 5, + "converged": true, + "resolves": false, "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 1.126, - "reducing": true + "family": "load_shedding" }, "best_pair": { + "max_rho": 1.042, + "islanded": false, + "reduces": true, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.03, + "resolves": false, + "rank": 1, "id": "load_shedding_MOUS5Y641+load_shedding_MOUS5Y642", "est_max_rho": 1.04 } @@ -19764,17 +23060,28 @@ "MORBRL72VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.4, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.024, "best_unitary": { + "max_rho": 1.049, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "disco_BOCTOL71MORBR", - "family": "line_disconnection", - "max_rho": 1.104, - "reducing": true + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.024, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.078, + "resolves": false, + "rank": 1, "id": "open_coupler_SAUS5P7+disco_BOCTOL71MORBR", "est_max_rho": 1.026 } @@ -19797,17 +23104,28 @@ "MORBRL71VLEVA" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.3, "solution": { "kind": "none", + "best_nonisl_max_rho": 0.973, "best_unitary": { + "max_rho": 1.048, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "disco_BOCTOL71MORBR", - "family": "line_disconnection", - "max_rho": 1.103, - "reducing": true + "family": "line_disconnection" }, "best_pair": { + "max_rho": 0.973, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.024, + "resolves": false, + "rank": 2, "id": "open_coupler_VLEVAP7+disco_BOCTOL71MORBR", "est_max_rho": 1.02 } @@ -19830,18 +23148,22 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 90.7, "solution": { "kind": "unitary", "actions": [ "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_RQROUP6" + "load_shedding_P.ORG6ISCLE2" ], "best": { + "max_rho": 0.907, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "family": "load_shedding" } } }, @@ -19866,17 +23188,28 @@ "BAYETY761" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 108.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.087, "best_unitary": { - "id": "reco_EGUZOY761", - "family": "line_reconnection", - "max_rho": 1.176, - "reducing": false + "max_rho": 1.087, + "islanded": false, + "reduces": true, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "node_merging_GODINP6", + "family": "node_merging" }, "best_pair": { + "max_rho": 1.11, + "islanded": false, + "reduces": false, + "n_over_after": 5, "converged": true, - "true_max_rho": 1.168, + "resolves": false, + "rank": 1, "id": "reco_EGUZOY761+load_shedding_VERLHY633", "est_max_rho": 1.111 } @@ -19885,7 +23218,7 @@ { "id": "s_e4e81e29_b01fc8", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — MTAG5L61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -19899,25 +23232,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 104.3, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_MOTT5P6", - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { - "id": "open_coupler_MOTT5P6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.043, + "best_unitary": { + "max_rho": 1.043, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.215, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "open_coupler_RQROUP6+disco_DARSEL61RASSU", + "est_max_rho": 0.944 } } }, { "id": "s_e4e81e29_3baec7", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — MTEZ5L71RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -19933,26 +23278,32 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_B.MONP7", - "family": "open_coupling", - "max_rho": 1.083, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "reco_EGUZOY761+open_coupler_MARMAP6", + "reco_EGUZOY772+open_coupler_MARMAP6", + "open_coupler_CHARPP7+disco_CHARPL71SSV.O" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.08, - "id": "reco_EGUZOY761+reco_EGUZOY772", - "est_max_rho": 1.851 - } + "resolves": true, + "rank": 1, + "id": "reco_EGUZOY761+open_coupler_MARMAP6", + "est_max_rho": 0.79 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_65b7d5", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — MTLUCL61MTVIC", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -19967,20 +23318,26 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 14, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "node_merging_GODINP6", - "family": "node_merging", - "max_rho": 1.38, - "reducing": true - }, - "best_pair": { + "kind": "pair", + "actions": [ + "node_merging_GODINP6+disco_GATELL61ZSSG7", + "node_merging_GODINP6+disco_BREUIL61ZENCH", + "node_merging_GODINP6+disco_BREUIL61ZSSG7" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.365, + "resolves": true, + "rank": 1, "id": "node_merging_GODINP6+disco_GATELL61ZSSG7", "est_max_rho": 0.595 - } + }, + "solving_pair_rank": 1 } }, { @@ -20001,18 +23358,23 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 43.8, "solution": { "kind": "unitary", "actions": [ - "disco_Q.SEIL61SAUMA", - "disco_FLOREL61SSVIN", - "disco_BALARL61FLORE" + "disco_PEYROL61SAUMA", + "open_coupler_MTPELP6", + "disco_MTPELL61PEYRO" ], "best": { - "id": "disco_Q.SEIL61SAUMA", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.438, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PEYROL61SAUMA", + "family": "line_disconnection" } } }, @@ -20034,18 +23396,23 @@ "Q.SEIL61TAMAR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 43.8, "solution": { "kind": "unitary", "actions": [ - "disco_Q.SEIL61SAUMA", - "disco_FLOREL61SSVIN", - "disco_BALARL61FLORE" + "disco_PEYROL61SAUMA", + "disco_MTPELL61PEYRO", + "disco_BALARL61MTPEL" ], "best": { - "id": "disco_Q.SEIL61SAUMA", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.438, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_PEYROL61SAUMA", + "family": "line_disconnection" } } }, @@ -20066,25 +23433,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", + "disco_ROUSSL61SEREI", "disco_CHESNL61ROUSS", - "disco_CZTRYL61MOISE" + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_a82125", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — O.CHAL61RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20099,19 +23471,21 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 89.8, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 1.016, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "open_coupler_RUEYRP7" + ], + "best": { + "max_rho": 0.898, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.01, - "id": "open_coupler_BREUIP7+disco_DANTOL61VERLH", - "est_max_rho": 0.959 + "resolves": true, + "id": "open_coupler_RUEYRP7", + "family": "open_coupling" } } }, @@ -20132,25 +23506,30 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", "disco_BXTO5L61H.VIE", - "disco_CAPELL61H.VIE" + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_3474b2", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — P.CORL71SSAL7", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20165,25 +23544,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.0, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_RQROUP6", - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.09, + "best_unitary": { + "max_rho": 1.09, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.991, - "reducing": true + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.255, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+disco_FEUILL61PONTE", + "est_max_rho": 0.941 } } }, { "id": "s_e4e81e29_431798", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — P.CORL72SSAL7", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20198,18 +23589,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 109.0, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_RQROUP6", - "disco_DARSEL61FEUIL", - "disco_DARSEL62FEUIL" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.09, + "best_unitary": { + "max_rho": 1.09, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.99, - "reducing": true + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.256, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+disco_FEUILL61PONTE", + "est_max_rho": 0.94 } } }, @@ -20230,18 +23633,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_V.BELL62ZV.BE", - "open_coupler_NOVIOP6", - "disco_NOVIOL61SSOU5" + "disco_NOVIOL61SSOU5", + "disco_P.GASL63SEINE", + "disco_P.GASL62ZBRIC" ], "best": { - "id": "reco_V.BELL62ZV.BE", - "family": "line_reconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, @@ -20262,18 +23670,23 @@ "NOVIOL61SSOU5" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "reco_V.BELL62ZV.BE", - "open_coupler_NOVIOP6", - "disco_NOVIOL61SSOU5" + "disco_NOVIOL61SSOU5", + "disco_P.GASL63SEINE", + "disco_P.GASL62ZBRIC" ], "best": { - "id": "reco_V.BELL62ZV.BE", - "family": "line_reconnection", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_NOVIOL61SSOU5", + "family": "line_disconnection" } } }, @@ -20294,25 +23707,30 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_29a9b4", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "medium", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20327,26 +23745,32 @@ "P.ORGY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "reco_TRI.PY76A", - "family": "line_reconnection", - "max_rho": 1.584, - "reducing": false - }, - "best_pair": { + "kind": "pair", + "actions": [ + "open_coupler_L.NEUP6+disco_COULAL71TAVEL", + "open_coupler_L.NEUP6+open_coupler_TRI.PP6", + "pst_tap_L.NEUL61L.NTD_inc2+disco_COULAL71TAVEL" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.584, - "id": "reco_TRI.PY76A+node_merging_TRI.PP6", - "est_max_rho": 2.704 - } + "resolves": true, + "rank": 1, + "id": "open_coupler_L.NEUP6+disco_COULAL71TAVEL", + "est_max_rho": 2.392 + }, + "solving_pair_rank": 1 } }, { "id": "s_e4e81e29_682401", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20360,18 +23784,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 106.9, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2", - "open_coupler_RQROUP6" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.069, + "best_unitary": { + "max_rho": 1.072, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.995, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.069, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_P.ORG6ISCLE1+redispatch_SSEST6GROUPE2", + "est_max_rho": 0.945 } } }, @@ -20392,18 +23828,21 @@ "DARSEL61RASSU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 80.2, "solution": { "kind": "unitary", "actions": [ - "open_coupler_LAVERP6", - "disco_DARSEL62FEUIL", - "disco_DARSEL61FEUIL" + "open_coupler_RQROUP6" ], "best": { - "id": "open_coupler_LAVERP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.802, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" } } }, @@ -20424,16 +23863,22 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.2, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.996, - "reducing": true + "max_rho": 0.632, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -20454,18 +23899,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "open_coupler_VERLHP6" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -20488,19 +23938,30 @@ "PONTEL62REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 108.3, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.083, "best_unitary": { + "max_rho": 1.093, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 1.15, - "reducing": false + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.083, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.086, - "id": "open_coupler_PONTEP6+open_coupler_RQROUP6", - "est_max_rho": 1.032 + "resolves": false, + "rank": 2, + "id": "open_coupler_MOTT5P6+open_coupler_RQROUP6", + "est_max_rho": 1.083 } } }, @@ -20523,26 +23984,37 @@ "PONTEL61REALT" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 117.9, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.179, "best_unitary": { + "max_rho": 1.22, + "islanded": false, + "reduces": false, + "n_over_after": 2, + "converged": true, + "resolves": false, "id": "disco_RQROUL61S.AIR", - "family": "line_disconnection", - "max_rho": 1.284, - "reducing": false + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.179, + "islanded": false, + "reduces": false, + "n_over_after": 2, "converged": true, - "true_max_rho": 1.166, - "id": "disco_P.ORGL61RQROU+load_shedding_P.ORG6ISCLE2", - "est_max_rho": 1.146 + "resolves": false, + "rank": 5, + "id": "open_coupler_REALTP6+disco_RQROUL61S.AIR", + "est_max_rho": 1.181 } } }, { "id": "s_e4e81e29_b9d93c", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — POUGEL61SSVIC", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20557,18 +24029,30 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 97.9, "solution": { - "kind": "pair", - "actions": [ - "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "disco_EGUZOL61MAURE+load_shedding_BAYETY632", - "open_coupler_MARMAP7+load_shedding_BAYETY631" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 0.979, + "best_unitary": { + "max_rho": 0.979, + "islanded": false, + "reduces": true, + "n_over_after": 1, "converged": true, - "true_max_rho": 0.998, - "id": "disco_EGUZOL61MAURE+load_shedding_BAYETY631", - "est_max_rho": 0.948 + "resolves": false, + "id": "node_merging_BAYETP6", + "family": "node_merging" + }, + "best_pair": { + "max_rho": 0.995, + "islanded": true, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_MARMAP7+load_shedding_BAYETY631", + "est_max_rho": 0.949 } } }, @@ -20589,25 +24073,30 @@ "T.DOML61VANDI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_REVIGP6", - "open_coupler_CXSSEP6", - "disco_T.DOML61VANDI" + "disco_T.DOML61VANDI", + "disco_REVIGL61T.DOM", + "open_coupler_REVIGP6" ], "best": { - "id": "open_coupler_REVIGP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_T.DOML61VANDI", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_090e7b", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — ROGNAL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20622,19 +24111,22 @@ "RASSUL61S.AIR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 23.9, "solution": { - "kind": "none", - "best_unitary": { - "id": "disco_DARSEL61RASSU", - "family": "line_disconnection", - "max_rho": 1.147, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_DARSEL61RASSU", + "open_coupler_RQROUP6" + ], + "best": { + "max_rho": 0.239, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.082, - "id": "disco_DARSEL61RASSU+load_shedding_RASSUY631", - "est_max_rho": 1.032 + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, @@ -20656,23 +24148,30 @@ "RASSUL61S.AIR" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 23.8, "solution": { "kind": "unitary", "actions": [ - "open_coupler_RQROUP6" + "disco_DARSEL61RASSU", + "disco_RASSUL61S.AIR", + "disco_RQROUL61S.AIR" ], "best": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.998, - "reducing": true + "max_rho": 0.238, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_DARSEL61RASSU", + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_4f46bb", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — RQROUL61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20686,18 +24185,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 115.5, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_RQROUP6", - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { - "id": "open_coupler_RQROUP6", - "family": "open_coupling", - "max_rho": 0.995, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.155, + "best_unitary": { + "max_rho": 1.173, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.155, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 5, + "id": "load_shedding_P.ORG6ISCLE2+open_coupler_LAVERP6", + "est_max_rho": 0.945 } } }, @@ -20718,18 +24229,21 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.6, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "disco_AUBUSL61SSFEY" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.496, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, @@ -20750,25 +24264,28 @@ "MARMAL61PAUDY" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 49.5, "solution": { "kind": "unitary", "actions": [ - "load_shedding_MOUS5Y641", - "load_shedding_MOUS5Y642", - "disco_AUBUSL61SSFEY" + "open_coupler_MARMAP6" ], "best": { - "id": "load_shedding_MOUS5Y641", - "family": "load_shedding", - "max_rho": 0.994, - "reducing": true + "max_rho": 0.495, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "open_coupler_MARMAP6", + "family": "open_coupling" } } }, { "id": "s_e4e81e29_8b20f7", "gridId": "grid_e4e81e29", - "difficulty": "hard", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — SAUS5L61VLEVA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20782,19 +24299,22 @@ "M.MORL61VLEVA" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { - "kind": "none", - "best_unitary": { - "id": "open_coupler_M.MORP6", - "family": "open_coupling", - "max_rho": 1.025, - "reducing": true - }, - "best_pair": { + "kind": "unitary", + "actions": [ + "disco_M.MORL61VLEVA", + "open_coupler_M.MORP6" + ], + "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 1.006, - "id": "open_coupler_M.MORP6+load_shedding_M.MOR6T611", - "est_max_rho": 1.009 + "resolves": true, + "id": "disco_M.MORL61VLEVA", + "family": "line_disconnection" } } }, @@ -20816,17 +24336,23 @@ "VLEVAY764" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 85.2, "solution": { "kind": "unitary", "actions": [ "load_shedding_M.MORY631", - "load_shedding_M.MORY632" + "load_shedding_M.MORY632", + "disco_M.MORL61VLEVA" ], "best": { + "max_rho": 0.852, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "load_shedding_M.MORY631", - "family": "load_shedding", - "max_rho": 0.993, - "reducing": true + "family": "load_shedding" } } }, @@ -20847,18 +24373,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "node_merging_M.SEIP7", - "open_coupler_SEREIP6", - "open_coupler_CHESNP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "node_merging_M.SEIP7", - "family": "node_merging", - "max_rho": 0.993, - "reducing": false + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -20879,18 +24410,23 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_SEREIP6", - "open_coupler_CHESNP6", - "open_coupler_CZTRYP6" + "disco_ROUSSL61SEREI", + "disco_CHESNL61ROUSS", + "disco_SEREIL71VIELM" ], "best": { - "id": "open_coupler_SEREIP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ROUSSL61SEREI", + "family": "line_disconnection" } } }, @@ -20911,6 +24447,7 @@ "SARRYL61VIELM" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ @@ -20918,17 +24455,21 @@ "disco_SARRYL61SEREI" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_SARRYL61VIELM", - "family": "line_disconnection", - "max_rho": 0.997, - "reducing": true + "family": "line_disconnection" } } }, { "id": "s_e4e81e29_dd1e44", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — SEREIL71VLECH", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -20942,18 +24483,21 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 78.0, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "disco_SEREIL71VIELM+disco_SARRYL61SEREI", - "disco_SEREIL71VIELM+disco_SARRYL61VIELM" + "disco_SEREIL71VIELM" ], "best": { + "max_rho": 0.78, + "islanded": false, + "reduces": true, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.996, - "id": "open_coupler_SEREIP6+disco_SEREIL71VIELM", - "est_max_rho": 0.946 + "resolves": true, + "id": "disco_SEREIL71VIELM", + "family": "line_disconnection" } } }, @@ -20974,18 +24518,23 @@ "BXTO5L61H.VIE" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_BXTO5P6", - "open_coupler_BXTO5P6_1", - "disco_BXTO5L61H.VIE" + "disco_BXTO5L61H.VIE", + "disco_CAPELL61H.VIE", + "open_coupler_BXTO5P6" ], "best": { - "id": "open_coupler_BXTO5P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_BXTO5L61H.VIE", + "family": "line_disconnection" } } }, @@ -21006,18 +24555,23 @@ "ARGIEL61SIERE" ], "nActionsDiscovered": 13, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ - "open_coupler_ETUPEP6", "disco_ARGIEL61SIERE", - "disco_ARGIEL61ETUPE" + "disco_ARGIEL61ETUPE", + "load_shedding_ARGIEY632" ], "best": { - "id": "open_coupler_ETUPEP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "disco_ARGIEL61SIERE", + "family": "line_disconnection" } } }, @@ -21040,25 +24594,31 @@ "BAYETY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 94.7, "solution": { "kind": "pair", "actions": [ - "open_coupler_SEREIP6+disco_DANTOL61VERLH", "open_coupler_CHESNP6+disco_DANTOL61VERLH", - "open_coupler_SEREIP6+disco_DANTOL61TUILI" + "open_coupler_CHESNP6+disco_DANTOL61TUILI" ], "best": { + "max_rho": 0.947, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.995, - "id": "open_coupler_SEREIP6+disco_DANTOL61VERLH", + "resolves": true, + "rank": 2, + "id": "open_coupler_CHESNP6+disco_DANTOL61VERLH", "est_max_rho": 0.946 - } + }, + "solving_pair_rank": 2 } }, { "id": "s_e4e81e29_544784", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — SSESTL61SSTUL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -21072,25 +24632,37 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 101.2, "solution": { - "kind": "unitary", - "actions": [ - "open_coupler_JONQUP6", - "disco_DURANL61REALT", - "load_shedding_P.ORG6ISCLE1" - ], - "best": { - "id": "open_coupler_JONQUP6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "kind": "none", + "best_nonisl_max_rho": 1.012, + "best_unitary": { + "max_rho": 1.012, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "id": "load_shedding_P.ORG6ISCLE1", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.304, + "islanded": false, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_JONQUP6+disco_DARSEL62FEUIL", + "est_max_rho": 0.943 } } }, { "id": "s_e4e81e29_224551", "gridId": "grid_e4e81e29", - "difficulty": "medium", + "difficulty": "easy", "title": "January — Monday evening", "label": "January — Monday evening — SSVICL61ZLACA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -21104,16 +24676,21 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.5, "solution": { - "kind": "pair", + "kind": "unitary", "actions": [ - "open_coupler_MOLE P6+load_shedding_MOLE Y641" + "node_merging_GODINP6" ], "best": { - "id": "open_coupler_MOLE P6+load_shedding_MOLE Y641", - "true_max_rho": 1.0, - "true_max_rho_exact": 0.9999994896574, - "converged": true + "max_rho": 0.635, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, @@ -21134,25 +24711,30 @@ "MOLE L61RUEYR" ], "nActionsDiscovered": 16, + "bestAchievableLoadingPct": 63.0, "solution": { "kind": "unitary", "actions": [ + "node_merging_GODINP6", "open_coupler_MOLE P6", - "open_coupler_BREUIP7", - "load_shedding_MOLE Y641" + "disco_BREUIL61P.CHA" ], "best": { - "id": "open_coupler_MOLE P6", - "family": "open_coupling", - "max_rho": 0.993, - "reducing": true + "max_rho": 0.63, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, + "id": "node_merging_GODINP6", + "family": "node_merging" } } }, { "id": "s_e4e81e29_9b960f", "gridId": "grid_e4e81e29", - "difficulty": "easy", + "difficulty": "hard", "title": "January — Monday evening", "label": "January — Monday evening — T.VICL61ZMENT", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", @@ -21166,17 +24748,30 @@ "P.ORGL61RQROU" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.1, "solution": { - "kind": "unitary", - "actions": [ - "load_shedding_P.ORG6ISCLE1", - "load_shedding_P.ORG6ISCLE2" - ], - "best": { + "kind": "none", + "best_nonisl_max_rho": 1.111, + "best_unitary": { + "max_rho": 1.013, + "islanded": true, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "load_shedding_P.ORG6ISCLE1", - "family": "load_shedding", - "max_rho": 0.999, - "reducing": true + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.009, + "islanded": true, + "reduces": true, + "n_over_after": 1, + "converged": true, + "resolves": false, + "rank": 4, + "id": "load_shedding_P.ORG6ISCLE2+redispatch_SSEST6GROUPE2", + "est_max_rho": 0.949 } } }, @@ -21204,18 +24799,29 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.1, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.111, "best_unitary": { - "id": "open_coupler_JONQUP6", - "family": "open_coupling", - "max_rho": 1.169, - "reducing": false + "max_rho": 1.111, + "islanded": false, + "reduces": false, + "n_over_after": 8, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 8, "converged": true, - "true_max_rho": 1.168, - "id": "redispatch_SSEST6GROUPE1+redispatch_SSEST6GROUPE2", + "resolves": false, + "rank": 2, + "id": "disco_DARSEL61RASSU+redispatch_SSEST6GROUPE1", "est_max_rho": 1.11 } } @@ -21244,19 +24850,30 @@ "TRI.PY761" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 111.3, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.113, "best_unitary": { - "id": "redispatch_SSEST6GROUPE1", - "family": "redispatch", - "max_rho": 1.17, - "reducing": false + "max_rho": 1.113, + "islanded": false, + "reduces": false, + "n_over_after": 8, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" }, "best_pair": { + "max_rho": 1.133, + "islanded": false, + "reduces": false, + "n_over_after": 8, "converged": true, - "true_max_rho": 1.17, - "id": "redispatch_SSEST6GROUPE1+redispatch_SSEST6GROUPE2", - "est_max_rho": 1.111 + "resolves": false, + "rank": 2, + "id": "disco_DARSEL61RASSU+redispatch_SSEST6GROUPE2", + "est_max_rho": 1.112 } } }, @@ -21277,19 +24894,26 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "pair", "actions": [ "open_coupler_VERLHP6+disco_LESQUL61VERLH", - "open_coupler_VERLHP6+disco_DONZAL61VERLH", - "disco_LESQUL61VERLH+disco_DONZAL71LESQU" + "open_coupler_RUEYRP7+disco_DONZAL71LESQU", + "open_coupler_VERLHP6+disco_DONZAL61VERLH" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": false, + "n_over_after": 0, "converged": true, - "true_max_rho": 0.993, + "resolves": true, + "rank": 1, "id": "open_coupler_VERLHP6+disco_LESQUL61VERLH", "est_max_rho": 1.88 - } + }, + "solving_pair_rank": 1 } }, { @@ -21309,18 +24933,22 @@ "VLEVAY769" ], "nActionsDiscovered": 7, + "bestAchievableLoadingPct": 91.8, "solution": { "kind": "unitary", "actions": [ "node_merging_VLEVAP6", - "open_coupler_VLEVAP7", - "load_shedding_VLEVA6T611" + "open_coupler_VLEVAP7" ], "best": { + "max_rho": 0.918, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_VLEVAP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -21341,18 +24969,22 @@ "VLEVAY769" ], "nActionsDiscovered": 7, + "bestAchievableLoadingPct": 91.8, "solution": { "kind": "unitary", "actions": [ "node_merging_VLEVAP6", - "open_coupler_VLEVAP7", - "load_shedding_VLEVA6T611" + "open_coupler_VLEVAP7" ], "best": { + "max_rho": 0.918, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "node_merging_VLEVAP6", - "family": "node_merging", - "max_rho": 0.993, - "reducing": true + "family": "node_merging" } } }, @@ -21373,18 +25005,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", "disco_DANTOL61TUILI", - "disco_LESQUL61VERLH" + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.994, - "reducing": true + "family": "line_disconnection" } } }, @@ -21405,18 +25042,23 @@ "DANTOL61VERLH" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 0.0, "solution": { "kind": "unitary", "actions": [ "disco_DANTOL61VERLH", - "open_coupler_VERLHP6", - "disco_DANTOL61TUILI" + "disco_DANTOL61TUILI", + "load_shedding_DANTOY632" ], "best": { + "max_rho": 0.0, + "islanded": false, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": true, "id": "disco_DANTOL61VERLH", - "family": "line_disconnection", - "max_rho": 0.993, - "reducing": true + "family": "line_disconnection" } } }, @@ -21438,17 +25080,28 @@ "ROUSSL61SEREI" ], "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 102.7, "solution": { "kind": "none", + "best_nonisl_max_rho": 1.027, "best_unitary": { + "max_rho": 1.028, + "islanded": false, + "reduces": false, + "n_over_after": 1, + "converged": true, + "resolves": false, "id": "disco_CHESNL61ROUSS", - "family": "line_disconnection", - "max_rho": 1.082, - "reducing": false + "family": "line_disconnection" }, "best_pair": { + "max_rho": 1.027, + "islanded": false, + "reduces": false, + "n_over_after": 1, "converged": true, - "true_max_rho": 1.081, + "resolves": false, + "rank": 3, "id": "disco_CHESNL61ROUSS+open_coupler_SEREIP7", "est_max_rho": 1.028 } diff --git a/frontend/src/game/rte7000Presets.test.ts b/frontend/src/game/rte7000Presets.test.ts index bf4a8a7b..c9ca06d8 100644 --- a/frontend/src/game/rte7000Presets.test.ts +++ b/frontend/src/game/rte7000Presets.test.ts @@ -31,12 +31,12 @@ describe('RTE7000 France THT scenario data', () => { for (const t of RTE7000_TIERS) expect(t.label).toBeTruthy(); }); - it('matches the graded database snapshot (656 = 453 easy / 79 medium / 124 hard)', () => { - expect(RTE7000_EASY.length).toBe(453); - expect(RTE7000_MEDIUM.length).toBe(79); - expect(RTE7000_HARD.length).toBe(124); + it('matches the graded database snapshot (647 = 457 easy / 80 medium / 110 hard)', () => { + expect(RTE7000_EASY.length).toBe(457); + expect(RTE7000_MEDIUM.length).toBe(80); + expect(RTE7000_HARD.length).toBe(110); const total = RTE7000_EASY.length + RTE7000_MEDIUM.length + RTE7000_HARD.length; - expect(total).toBe(656); + expect(total).toBe(647); }); it('every study is playable (network + actions + layout + contingency)', () => { diff --git a/frontend/src/game/rte7000Scenarios.json b/frontend/src/game/rte7000Scenarios.json index 90a5e269..93bd9b9f 100644 --- a/frontend/src/game/rte7000Scenarios.json +++ b/frontend/src/game/rte7000Scenarios.json @@ -11,6 +11,17 @@ "baselineMaxLoadingPct": 101.6, "description": "January — Monday evening. Loss of ARGIEL61SIERE drives a worst-case 101.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_4a4a4e", + "label": "January — Monday evening — AVALLL61VNOL", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "AVALLL61VNOL", + "contingencyLabel": "AVALLL61VNOL", + "baselineMaxLoadingPct": 102.7, + "description": "January — Monday evening. Loss of AVALLL61VNOL drives a worst-case 102.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_5597f4", "label": "January — Monday evening — AVOI5L71DISTR", @@ -143,17 +154,6 @@ "baselineMaxLoadingPct": 100.0, "description": "January — Monday evening. Loss of BXTO5L61H.VIE drives a worst-case 100.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5384e039_73ce12", - "label": "January — Monday evening — CANTEL73SAUCA", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CANTEL73SAUCA", - "contingencyLabel": "CANTEL73SAUCA", - "baselineMaxLoadingPct": 101.5, - "description": "January — Monday evening. Loss of CANTEL73SAUCA drives a worst-case 101.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5384e039_0e2657", "label": "January — Monday evening — CARRIL61MORU", @@ -319,6 +319,39 @@ "baselineMaxLoadingPct": 95.1, "description": "January — Monday evening. Loss of CPNIEL61MOIRA drives a worst-case 95.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_c31d02", + "label": "January — Monday evening — CPNIEL61PARIS", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "CPNIEL61PARIS", + "contingencyLabel": "CPNIEL61PARIS", + "baselineMaxLoadingPct": 104.8, + "description": "January — Monday evening. Loss of CPNIEL61PARIS drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5384e039_3f4713", + "label": "January — Monday evening — CPNIEL61SELF2", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "CPNIEL61SELF2", + "contingencyLabel": "CPNIEL61SELF2", + "baselineMaxLoadingPct": 104.8, + "description": "January — Monday evening. Loss of CPNIEL61SELF2 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5384e039_c2556e", + "label": "January — Monday evening — CPNIEL63SELF2", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "CPNIEL63SELF2", + "contingencyLabel": "CPNIEL63SELF2", + "baselineMaxLoadingPct": 104.8, + "description": "January — Monday evening. Loss of CPNIEL63SELF2 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_4680f7", "label": "January — Monday evening — CRENEL61FRONC", @@ -473,6 +506,17 @@ "baselineMaxLoadingPct": 99.8, "description": "January — Monday evening. Loss of FALLOL64ZFAN5 drives a worst-case 99.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_9598b8", + "label": "January — Monday evening — FEUILL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "FEUILL61SSCHA", + "contingencyLabel": "FEUILL61SSCHA", + "baselineMaxLoadingPct": 98.4, + "description": "January — Monday evening. Loss of FEUILL61SSCHA drives a worst-case 98.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_c445b6", "label": "January — Monday evening — FLAMAL72MENUE", @@ -506,6 +550,17 @@ "baselineMaxLoadingPct": 99.7, "description": "January — Monday evening. Loss of GALORL61MAUGE drives a worst-case 99.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_c5f106", + "label": "January — Monday evening — GARCHL61SSELO", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "GARCHL61SSELO", + "contingencyLabel": "GARCHL61SSELO", + "baselineMaxLoadingPct": 114.4, + "description": "January — Monday evening. Loss of GARCHL61SSELO drives a worst-case 114.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_ebc7e7", "label": "January — Monday evening — GARCHL61ZGIEN", @@ -517,6 +572,17 @@ "baselineMaxLoadingPct": 98.7, "description": "January — Monday evening. Loss of GARCHL61ZGIEN drives a worst-case 98.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_ea6086", + "label": "January — Monday evening — GATI5L71GAUGL", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "GATI5L71GAUGL", + "contingencyLabel": "GATI5L71GAUGL", + "baselineMaxLoadingPct": 115.7, + "description": "January — Monday evening. Loss of GATI5L71GAUGL drives a worst-case 115.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_ca9121", "label": "January — Monday evening — GATI5L71TABAR", @@ -616,17 +682,6 @@ "baselineMaxLoadingPct": 99.9, "description": "January — Monday evening. Loss of LINGOL61ROUMO drives a worst-case 99.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5384e039_56746e", - "label": "January — Monday evening — M.PONL65PONTE", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "M.PONL65PONTE", - "contingencyLabel": "M.PONL65PONTE", - "baselineMaxLoadingPct": 101.8, - "description": "January — Monday evening. Loss of M.PONL65PONTE drives a worst-case 101.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5384e039_c4857b", "label": "January — Monday evening — MAMBEL61PUSY", @@ -660,6 +715,17 @@ "baselineMaxLoadingPct": 124.1, "description": "January — Monday evening. Loss of MAROLL61REVIG drives a worst-case 124.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_e013a3", + "label": "January — Monday evening — MASTAL61P.SAM", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "MASTAL61P.SAM", + "contingencyLabel": "MASTAL61P.SAM", + "baselineMaxLoadingPct": 109.6, + "description": "January — Monday evening. Loss of MASTAL61P.SAM drives a worst-case 109.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_6b3e07", "label": "January — Monday evening — MAUBEL61P.SAM", @@ -935,17 +1001,6 @@ "baselineMaxLoadingPct": 110.9, "description": "January — Monday evening. Loss of VINCEL61ZG.HA drives a worst-case 110.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_721c95", - "label": "November — Monday evening — ALBERL71COCHE", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ALBERL71COCHE", - "contingencyLabel": "ALBERL71COCHE", - "baselineMaxLoadingPct": 118.9, - "description": "November — Monday evening. Loss of ALBERL71COCHE drives a worst-case 118.9% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_0d0b4d", "label": "November — Monday evening — ARGIEL61SIERE", @@ -1034,6 +1089,17 @@ "baselineMaxLoadingPct": 117.4, "description": "November — Monday evening. Loss of AUBE6L61SEINE drives a worst-case 117.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_1a1e0c", + "label": "November — Monday evening — AVALLL61J.VIL", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "AVALLL61J.VIL", + "contingencyLabel": "AVALLL61J.VIL", + "baselineMaxLoadingPct": 131.7, + "description": "November — Monday evening. Loss of AVALLL61J.VIL drives a worst-case 131.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_4a4a4e", "label": "November — Monday evening — AVALLL61VNOL", @@ -1353,6 +1419,17 @@ "baselineMaxLoadingPct": 104.0, "description": "November — Monday evening. Loss of CARRIL61TERRI drives a worst-case 104.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_7f1036", + "label": "November — Monday evening — CARRIL62TERRI", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "CARRIL62TERRI", + "contingencyLabel": "CARRIL62TERRI", + "baselineMaxLoadingPct": 124.1, + "description": "November — Monday evening. Loss of CARRIL62TERRI drives a worst-case 124.1% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_07d726", "label": "November — Monday evening — CBRY L71M.SEI", @@ -1485,17 +1562,6 @@ "baselineMaxLoadingPct": 99.3, "description": "November — Monday evening. Loss of COR.PL62ZKERL drives a worst-case 99.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_dee748", - "label": "November — Monday evening — COR.PL64CORD5", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "COR.PL64CORD5", - "contingencyLabel": "COR.PL64CORD5", - "baselineMaxLoadingPct": 109.1, - "description": "November — Monday evening. Loss of COR.PL64CORD5 drives a worst-case 109.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_61522a", "label": "November — Monday evening — CORMEL61NANTE", @@ -1716,28 +1782,6 @@ "baselineMaxLoadingPct": 115.2, "description": "November — Monday evening. Loss of ETUPEL61ZHIRS drives a worst-case 115.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_dd71e8", - "label": "November — Monday evening — F.FREL71M.SEI", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "F.FREL71M.SEI", - "contingencyLabel": "F.FREL71M.SEI", - "baselineMaxLoadingPct": 102.7, - "description": "November — Monday evening. Loss of F.FREL71M.SEI drives a worst-case 102.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_883903", - "label": "November — Monday evening — F.FREL71VESLE", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "F.FREL71VESLE", - "contingencyLabel": "F.FREL71VESLE", - "baselineMaxLoadingPct": 103.0, - "description": "November — Monday evening. Loss of F.FREL71VESLE drives a worst-case 103.0% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_d013b0", "label": "November — Monday evening — FRONCL61ZEPIZ", @@ -2002,17 +2046,6 @@ "baselineMaxLoadingPct": 107.4, "description": "November — Monday evening. Loss of I.NAPL61LUTTE drives a worst-case 107.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_08e87d", - "label": "November — Monday evening — I.NAPL61OTTMA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "I.NAPL61OTTMA", - "contingencyLabel": "I.NAPL61OTTMA", - "baselineMaxLoadingPct": 120.7, - "description": "November — Monday evening. Loss of I.NAPL61OTTMA drives a worst-case 120.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_0d4e25", "label": "November — Monday evening — ISSELL71VERFE", @@ -2046,6 +2079,17 @@ "baselineMaxLoadingPct": 95.4, "description": "November — Monday evening. Loss of ISSOIL61PRATC drives a worst-case 95.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_3065fe", + "label": "November — Monday evening — J.VILL61ZTONN", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "J.VILL61ZTONN", + "contingencyLabel": "J.VILL61ZTONN", + "baselineMaxLoadingPct": 130.4, + "description": "November — Monday evening. Loss of J.VILL61ZTONN drives a worst-case 130.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_330ecc", "label": "November — Monday evening — KEMBSL61OTTMA", @@ -2519,6 +2563,28 @@ "baselineMaxLoadingPct": 125.3, "description": "November — Monday evening. Loss of ROGNAL61RQROU drives a worst-case 125.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_a91fd1", + "label": "November — Monday evening — ROUMOL61ZSSCR", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ROUMOL61ZSSCR", + "contingencyLabel": "ROUMOL61ZSSCR", + "baselineMaxLoadingPct": 100.1, + "description": "November — Monday evening. Loss of ROUMOL61ZSSCR drives a worst-case 100.1% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_594cad", + "label": "November — Monday evening — ROUMOL61ZVA10", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ROUMOL61ZVA10", + "contingencyLabel": "ROUMOL61ZVA10", + "baselineMaxLoadingPct": 99.8, + "description": "November — Monday evening. Loss of ROUMOL61ZVA10 drives a worst-case 99.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_4f46bb", "label": "November — Monday evening — RQROUL61ZVILA", @@ -2563,6 +2629,17 @@ "baselineMaxLoadingPct": 101.8, "description": "November — Monday evening. Loss of SAUS5L71VLEVA drives a worst-case 101.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_52c6d8", + "label": "November — Monday evening — SEREIL61ZTONN", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "SEREIL61ZTONN", + "contingencyLabel": "SEREIL61ZTONN", + "baselineMaxLoadingPct": 146.2, + "description": "November — Monday evening. Loss of SEREIL61ZTONN drives a worst-case 146.2% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_fd09ea", "label": "November — Monday evening — SEREIL71VIELM", @@ -2673,28 +2750,6 @@ "baselineMaxLoadingPct": 98.5, "description": "November — Monday evening. Loss of SSVICL61ZS.CU drives a worst-case 98.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_00de85", - "label": "November — Monday evening — TAMARL71TAVEL", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "TAMARL71TAVEL", - "contingencyLabel": "TAMARL71TAVEL", - "baselineMaxLoadingPct": 109.3, - "description": "November — Monday evening. Loss of TAMARL71TAVEL drives a worst-case 109.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_edd29e", - "label": "November — Monday evening — TAMARL72TAVEL", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "TAMARL72TAVEL", - "contingencyLabel": "TAMARL72TAVEL", - "baselineMaxLoadingPct": 109.3, - "description": "November — Monday evening. Loss of TAMARL72TAVEL drives a worst-case 109.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_f7a8f8", "label": "November — Monday evening — TAVELL71TRI.P", @@ -2828,15 +2883,26 @@ "description": "March — Monday morning. Loss of ALOUEL61MALA6 drives a worst-case 96.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_c6819f", - "label": "March — Monday morning — AMFARL61RATIE", + "id": "s_437818d6_6d341c", + "label": "March — Monday morning — ALOUEL61PLAIS", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "AMFARL61RATIE", - "contingencyLabel": "AMFARL61RATIE", - "baselineMaxLoadingPct": 95.8, - "description": "March — Monday morning. Loss of AMFARL61RATIE drives a worst-case 95.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "ALOUEL61PLAIS", + "contingencyLabel": "ALOUEL61PLAIS", + "baselineMaxLoadingPct": 108.8, + "description": "March — Monday morning. Loss of ALOUEL61PLAIS drives a worst-case 108.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_437818d6_c6819f", + "label": "March — Monday morning — AMFARL61RATIE", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "AMFARL61RATIE", + "contingencyLabel": "AMFARL61RATIE", + "baselineMaxLoadingPct": 95.8, + "description": "March — Monday morning. Loss of AMFARL61RATIE drives a worst-case 95.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_437818d6_782e00", @@ -2915,6 +2981,28 @@ "baselineMaxLoadingPct": 105.5, "description": "March — Monday morning. Loss of B.CARL62T.VIC drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_437818d6_ce6f13", + "label": "March — Monday morning — BARNAL71ROUGE", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "BARNAL71ROUGE", + "contingencyLabel": "BARNAL71ROUGE", + "baselineMaxLoadingPct": 118.4, + "description": "March — Monday morning. Loss of BARNAL71ROUGE drives a worst-case 118.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_437818d6_a4b31e", + "label": "March — Monday morning — BARNAL72ROUGE", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "BARNAL72ROUGE", + "contingencyLabel": "BARNAL72ROUGE", + "baselineMaxLoadingPct": 118.2, + "description": "March — Monday morning. Loss of BARNAL72ROUGE drives a worst-case 118.2% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_437818d6_90d2d9", "label": "March — Monday morning — BIANCL61MOUGI", @@ -2926,17 +3014,6 @@ "baselineMaxLoadingPct": 96.1, "description": "March — Monday morning. Loss of BIANCL61MOUGI drives a worst-case 96.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_437818d6_84e485", - "label": "March — Monday morning — BOLL5L61TERRA", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "BOLL5L61TERRA", - "contingencyLabel": "BOLL5L61TERRA", - "baselineMaxLoadingPct": 129.0, - "description": "March — Monday morning. Loss of BOLL5L61TERRA drives a worst-case 129.0% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_437818d6_3ecf14", "label": "March — Monday morning — BONN6L61ORANG", @@ -2981,6 +3058,17 @@ "baselineMaxLoadingPct": 100.6, "description": "March — Monday morning. Loss of CHIN2L72G.AVO drives a worst-case 100.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_437818d6_5d8720", + "label": "March — Monday morning — CHOLEL61RECOU", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "CHOLEL61RECOU", + "contingencyLabel": "CHOLEL61RECOU", + "baselineMaxLoadingPct": 103.2, + "description": "March — Monday morning. Loss of CHOLEL61RECOU drives a worst-case 103.2% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_437818d6_e613ad", "label": "March — Monday morning — CHOLEL61V.SEV", @@ -3300,17 +3388,6 @@ "baselineMaxLoadingPct": 100.0, "description": "March — Monday morning. Loss of NIORTL62TDNIO drives a worst-case 100.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_437818d6_682401", - "label": "March — Monday morning — P.ORGL71TAVEL", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "P.ORGL71TAVEL", - "contingencyLabel": "P.ORGL71TAVEL", - "baselineMaxLoadingPct": 116.5, - "description": "March — Monday morning. Loss of P.ORGL71TAVEL drives a worst-case 116.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_437818d6_29bc69", "label": "March — Monday morning — P.SEPL61SANDO", @@ -3356,15 +3433,37 @@ "description": "March — Monday morning. Loss of REALTL71TAVEL drives a worst-case 104.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_c5ce55", - "label": "March — Monday morning — RQROUL61SSEST", + "id": "s_437818d6_b938e3", + "label": "March — Monday morning — REALTL72TAVEL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "RQROUL61SSEST", - "contingencyLabel": "RQROUL61SSEST", - "baselineMaxLoadingPct": 103.6, - "description": "March — Monday morning. Loss of RQROUL61SSEST drives a worst-case 103.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "REALTL72TAVEL", + "contingencyLabel": "REALTL72TAVEL", + "baselineMaxLoadingPct": 104.0, + "description": "March — Monday morning. Loss of REALTL72TAVEL drives a worst-case 104.0% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_437818d6_090e7b", + "label": "March — Monday morning — ROGNAL61RQROU", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "ROGNAL61RQROU", + "contingencyLabel": "ROGNAL61RQROU", + "baselineMaxLoadingPct": 125.5, + "description": "March — Monday morning. Loss of ROGNAL61RQROU drives a worst-case 125.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_437818d6_554e81", + "label": "March — Monday morning — SAINNL61YAINV", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "SAINNL61YAINV", + "contingencyLabel": "SAINNL61YAINV", + "baselineMaxLoadingPct": 109.1, + "description": "March — Monday morning. Loss of SAINNL61YAINV drives a worst-case 109.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_437818d6_8b20f7", @@ -3400,15 +3499,15 @@ "description": "March — Monday morning. Loss of SSAVOL61ZSAR6 drives a worst-case 99.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_544784", - "label": "March — Monday morning — SSESTL61SSTUL", + "id": "s_437818d6_c77cdf", + "label": "March — Monday morning — VAUPAL61YAINV", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "SSESTL61SSTUL", - "contingencyLabel": "SSESTL61SSTUL", - "baselineMaxLoadingPct": 103.5, - "description": "March — Monday morning. Loss of SSESTL61SSTUL drives a worst-case 103.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "VAUPAL61YAINV", + "contingencyLabel": "VAUPAL61YAINV", + "baselineMaxLoadingPct": 109.1, + "description": "March — Monday morning. Loss of VAUPAL61YAINV drives a worst-case 109.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_437818d6_532f3d", @@ -3707,17 +3806,6 @@ "baselineMaxLoadingPct": 110.2, "description": "January — Monday evening. Loss of BXLIEL61SIRMI drives a worst-case 110.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_f435dc", - "label": "January — Monday evening — BXRE6L61CHAIN", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BXRE6L61CHAIN", - "contingencyLabel": "BXRE6L61CHAIN", - "baselineMaxLoadingPct": 103.3, - "description": "January — Monday evening. Loss of BXRE6L61CHAIN drives a worst-case 103.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_e9f2f0", "label": "January — Monday evening — BXTO5L61SETIE", @@ -3839,6 +3927,17 @@ "baselineMaxLoadingPct": 103.8, "description": "January — Monday evening. Loss of CHESNL71M.SEI drives a worst-case 103.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_a20d00", + "label": "January — Monday evening — CHESNL71VLECH", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CHESNL71VLECH", + "contingencyLabel": "CHESNL71VLECH", + "baselineMaxLoadingPct": 124.7, + "description": "January — Monday evening. Loss of CHESNL71VLECH drives a worst-case 124.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_2ed476", "label": "January — Monday evening — CHESNL72M.SEI", @@ -3960,6 +4059,39 @@ "baselineMaxLoadingPct": 101.6, "description": "January — Monday evening. Loss of CPNIEL61MOIRA drives a worst-case 101.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_c31d02", + "label": "January — Monday evening — CPNIEL61PARIS", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CPNIEL61PARIS", + "contingencyLabel": "CPNIEL61PARIS", + "baselineMaxLoadingPct": 110.5, + "description": "January — Monday evening. Loss of CPNIEL61PARIS drives a worst-case 110.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_3f4713", + "label": "January — Monday evening — CPNIEL61SELF2", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CPNIEL61SELF2", + "contingencyLabel": "CPNIEL61SELF2", + "baselineMaxLoadingPct": 110.4, + "description": "January — Monday evening. Loss of CPNIEL61SELF2 drives a worst-case 110.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_c2556e", + "label": "January — Monday evening — CPNIEL63SELF2", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CPNIEL63SELF2", + "contingencyLabel": "CPNIEL63SELF2", + "baselineMaxLoadingPct": 110.4, + "description": "January — Monday evening. Loss of CPNIEL63SELF2 drives a worst-case 110.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_49ffbb", "label": "January — Monday evening — CRENEL71M.SEI", @@ -4004,39 +4136,6 @@ "baselineMaxLoadingPct": 100.8, "description": "January — Monday evening. Loss of CSLL8L61TAMAR drives a worst-case 100.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_8240b3", - "label": "January — Monday evening — CSLLEL61E.BOT", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CSLLEL61E.BOT", - "contingencyLabel": "CSLLEL61E.BOT", - "baselineMaxLoadingPct": 133.0, - "description": "January — Monday evening. Loss of CSLLEL61E.BOT drives a worst-case 133.0% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_a42b1e", - "label": "January — Monday evening — CSLLEL61ESCAI", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CSLLEL61ESCAI", - "contingencyLabel": "CSLLEL61ESCAI", - "baselineMaxLoadingPct": 132.6, - "description": "January — Monday evening. Loss of CSLLEL61ESCAI drives a worst-case 132.6% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_27cf89", - "label": "January — Monday evening — CTAURL61ZVILA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CTAURL61ZVILA", - "contingencyLabel": "CTAURL61ZVILA", - "baselineMaxLoadingPct": 132.6, - "description": "January — Monday evening. Loss of CTAURL61ZVILA drives a worst-case 132.6% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_f04cf0", "label": "January — Monday evening — CUBNEL61MTGUY", @@ -4180,17 +4279,6 @@ "baselineMaxLoadingPct": 144.1, "description": "January — Monday evening. Loss of FEUILL61SSCHA drives a worst-case 144.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_36bfed", - "label": "January — Monday evening — FLEACL61SANIL", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "FLEACL61SANIL", - "contingencyLabel": "FLEACL61SANIL", - "baselineMaxLoadingPct": 105.8, - "description": "January — Monday evening. Loss of FLEACL61SANIL drives a worst-case 105.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_ba53c5", "label": "January — Monday evening — G.RIVL61GUERS", @@ -4323,17 +4411,6 @@ "baselineMaxLoadingPct": 119.8, "description": "January — Monday evening. Loss of I.NAPL61LUTTE drives a worst-case 119.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_08e87d", - "label": "January — Monday evening — I.NAPL61OTTMA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "I.NAPL61OTTMA", - "contingencyLabel": "I.NAPL61OTTMA", - "baselineMaxLoadingPct": 131.2, - "description": "January — Monday evening. Loss of I.NAPL61OTTMA drives a worst-case 131.2% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_5ebae1", "label": "January — Monday evening — JALISL61LESQU", @@ -4345,17 +4422,6 @@ "baselineMaxLoadingPct": 98.8, "description": "January — Monday evening. Loss of JALISL61LESQU drives a worst-case 98.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_6e3590", - "label": "January — Monday evening — JONQUL61MTAG5", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "JONQUL61MTAG5", - "contingencyLabel": "JONQUL61MTAG5", - "baselineMaxLoadingPct": 135.3, - "description": "January — Monday evening. Loss of JONQUL61MTAG5 drives a worst-case 135.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_330ecc", "label": "January — Monday evening — KEMBSL61OTTMA", @@ -4631,17 +4697,6 @@ "baselineMaxLoadingPct": 135.6, "description": "January — Monday evening. Loss of MOUISL61TERRA drives a worst-case 135.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_b01fc8", - "label": "January — Monday evening — MTAG5L61ZVILA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "MTAG5L61ZVILA", - "contingencyLabel": "MTAG5L61ZVILA", - "baselineMaxLoadingPct": 138.0, - "description": "January — Monday evening. Loss of MTAG5L61ZVILA drives a worst-case 138.0% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_d6ca09", "label": "January — Monday evening — MTPELL61TAMAR", @@ -4675,6 +4730,17 @@ "baselineMaxLoadingPct": 101.3, "description": "January — Monday evening. Loss of NEMOUL61VLEMA drives a worst-case 101.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_a82125", + "label": "January — Monday evening — O.CHAL61RUEYR", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "O.CHAL61RUEYR", + "contingencyLabel": "O.CHAL61RUEYR", + "baselineMaxLoadingPct": 98.5, + "description": "January — Monday evening. Loss of O.CHAL61RUEYR drives a worst-case 98.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_7b4971", "label": "January — Monday evening — ORMESL61VEZIL", @@ -4686,28 +4752,6 @@ "baselineMaxLoadingPct": 99.9, "description": "January — Monday evening. Loss of ORMESL61VEZIL drives a worst-case 99.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_3474b2", - "label": "January — Monday evening — P.CORL71SSAL7", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "P.CORL71SSAL7", - "contingencyLabel": "P.CORL71SSAL7", - "baselineMaxLoadingPct": 132.8, - "description": "January — Monday evening. Loss of P.CORL71SSAL7 drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_431798", - "label": "January — Monday evening — P.CORL72SSAL7", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "P.CORL72SSAL7", - "contingencyLabel": "P.CORL72SSAL7", - "baselineMaxLoadingPct": 132.8, - "description": "January — Monday evening. Loss of P.CORL72SSAL7 drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_d6b9eb", "label": "January — Monday evening — P.GASL63ZFANA", @@ -4741,17 +4785,6 @@ "baselineMaxLoadingPct": 100.1, "description": "January — Monday evening. Loss of P.GASL71PENC5 drives a worst-case 100.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_682401", - "label": "January — Monday evening — P.ORGL71TAVEL", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "P.ORGL71TAVEL", - "contingencyLabel": "P.ORGL71TAVEL", - "baselineMaxLoadingPct": 145.7, - "description": "January — Monday evening. Loss of P.ORGL71TAVEL drives a worst-case 145.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_c139e1", "label": "January — Monday evening — PALUNL61SSTUL", @@ -4796,6 +4829,17 @@ "baselineMaxLoadingPct": 105.1, "description": "January — Monday evening. Loss of REVIGL71VIGY drives a worst-case 105.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_090e7b", + "label": "January — Monday evening — ROGNAL61RQROU", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "ROGNAL61RQROU", + "contingencyLabel": "ROGNAL61RQROU", + "baselineMaxLoadingPct": 151.8, + "description": "January — Monday evening. Loss of ROGNAL61RQROU drives a worst-case 151.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_f87211", "label": "January — Monday evening — ROGNAL61SSCHA", @@ -4807,17 +4851,6 @@ "baselineMaxLoadingPct": 149.9, "description": "January — Monday evening. Loss of ROGNAL61SSCHA drives a worst-case 149.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_4f46bb", - "label": "January — Monday evening — RQROUL61ZVILA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "RQROUL61ZVILA", - "contingencyLabel": "RQROUL61ZVILA", - "baselineMaxLoadingPct": 148.0, - "description": "January — Monday evening. Loss of RQROUL61ZVILA drives a worst-case 148.0% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_40d9d2", "label": "January — Monday evening — RUEYRL61SARRA", @@ -4840,6 +4873,17 @@ "baselineMaxLoadingPct": 102.5, "description": "January — Monday evening. Loss of RUEYRL61ZCOUE drives a worst-case 102.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_8b20f7", + "label": "January — Monday evening — SAUS5L61VLEVA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "SAUS5L61VLEVA", + "contingencyLabel": "SAUS5L61VLEVA", + "baselineMaxLoadingPct": 121.2, + "description": "January — Monday evening. Loss of SAUS5L61VLEVA drives a worst-case 121.2% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_bf524b", "label": "January — Monday evening — SAUS5L71VLEVA", @@ -4884,6 +4928,17 @@ "baselineMaxLoadingPct": 106.0, "description": "January — Monday evening. Loss of SEREIL71VIELM drives a worst-case 106.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_dd1e44", + "label": "January — Monday evening — SEREIL71VLECH", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "SEREIL71VLECH", + "contingencyLabel": "SEREIL71VLECH", + "baselineMaxLoadingPct": 125.1, + "description": "January — Monday evening. Loss of SEREIL71VLECH drives a worst-case 125.1% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_6e8a05", "label": "January — Monday evening — SETIEL61ZCP.M", @@ -4907,15 +4962,15 @@ "description": "January — Monday evening. Loss of SIEREL61ZHIRS drives a worst-case 98.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_544784", - "label": "January — Monday evening — SSESTL61SSTUL", + "id": "s_e4e81e29_224551", + "label": "January — Monday evening — SSVICL61ZLACA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "SSESTL61SSTUL", - "contingencyLabel": "SSESTL61SSTUL", - "baselineMaxLoadingPct": 134.3, - "description": "January — Monday evening. Loss of SSESTL61SSTUL drives a worst-case 134.3% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "SSVICL61ZLACA", + "contingencyLabel": "SSVICL61ZLACA", + "baselineMaxLoadingPct": 99.1, + "description": "January — Monday evening. Loss of SSVICL61ZLACA drives a worst-case 99.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_c75d87", @@ -4928,17 +4983,6 @@ "baselineMaxLoadingPct": 95.3, "description": "January — Monday evening. Loss of SSVICL61ZMIOL drives a worst-case 95.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_9b960f", - "label": "January — Monday evening — T.VICL61ZMENT", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "T.VICL61ZMENT", - "contingencyLabel": "T.VICL61ZMENT", - "baselineMaxLoadingPct": 136.3, - "description": "January — Monday evening. Loss of T.VICL61ZMENT drives a worst-case 136.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_29af68", "label": "January — Monday evening — VAIR6L61VAIRE", @@ -4986,37 +5030,37 @@ ], "medium": [ { - "id": "s_5384e039_c31d02", - "label": "January — Monday evening — CPNIEL61PARIS", + "id": "s_5384e039_1a1e0c", + "label": "January — Monday evening — AVALLL61J.VIL", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CPNIEL61PARIS", - "contingencyLabel": "CPNIEL61PARIS", - "baselineMaxLoadingPct": 104.8, - "description": "January — Monday evening. Loss of CPNIEL61PARIS drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "AVALLL61J.VIL", + "contingencyLabel": "AVALLL61J.VIL", + "baselineMaxLoadingPct": 114.1, + "description": "January — Monday evening. Loss of AVALLL61J.VIL drives a worst-case 114.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_3f4713", - "label": "January — Monday evening — CPNIEL61SELF2", + "id": "s_5384e039_84e485", + "label": "January — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CPNIEL61SELF2", - "contingencyLabel": "CPNIEL61SELF2", - "baselineMaxLoadingPct": 104.8, - "description": "January — Monday evening. Loss of CPNIEL61SELF2 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOLL5L61TERRA", + "contingencyLabel": "BOLL5L61TERRA", + "baselineMaxLoadingPct": 147.4, + "description": "January — Monday evening. Loss of BOLL5L61TERRA drives a worst-case 147.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_c2556e", - "label": "January — Monday evening — CPNIEL63SELF2", + "id": "s_5384e039_149ed1", + "label": "January — Monday evening — CHESNL61NEMOU", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CPNIEL63SELF2", - "contingencyLabel": "CPNIEL63SELF2", - "baselineMaxLoadingPct": 104.8, - "description": "January — Monday evening. Loss of CPNIEL63SELF2 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "CHESNL61NEMOU", + "contingencyLabel": "CHESNL61NEMOU", + "baselineMaxLoadingPct": 144.8, + "description": "January — Monday evening. Loss of CHESNL61NEMOU drives a worst-case 144.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5384e039_dfb6fc", @@ -5029,6 +5073,39 @@ "baselineMaxLoadingPct": 106.7, "description": "January — Monday evening. Loss of CRENEL71REVIG drives a worst-case 106.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5384e039_ac739f", + "label": "January — Monday evening — CUBNEL61ZSS11", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "CUBNEL61ZSS11", + "contingencyLabel": "CUBNEL61ZSS11", + "baselineMaxLoadingPct": 104.5, + "description": "January — Monday evening. Loss of CUBNEL61ZSS11 drives a worst-case 104.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5384e039_313e74", + "label": "January — Monday evening — DONZAL71GOLF5", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "DONZAL71GOLF5", + "contingencyLabel": "DONZAL71GOLF5", + "baselineMaxLoadingPct": 101.5, + "description": "January — Monday evening. Loss of DONZAL71GOLF5 drives a worst-case 101.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5384e039_5a16f9", + "label": "January — Monday evening — DONZAL72GOLF5", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "DONZAL72GOLF5", + "contingencyLabel": "DONZAL72GOLF5", + "baselineMaxLoadingPct": 101.5, + "description": "January — Monday evening. Loss of DONZAL72GOLF5 drives a worst-case 101.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5384e039_b4be07", "label": "January — Monday evening — HOUDRL71VINCE", @@ -5041,81 +5118,92 @@ "description": "January — Monday evening. Loss of HOUDRL71VINCE drives a worst-case 108.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_782e00", - "label": "November — Monday evening — ARDOIL61MOTT5", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ARDOIL61MOTT5", - "contingencyLabel": "ARDOIL61MOTT5", - "baselineMaxLoadingPct": 120.8, - "description": "November — Monday evening. Loss of ARDOIL61MOTT5 drives a worst-case 120.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_1a1e0c", - "label": "November — Monday evening — AVALLL61J.VIL", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "AVALLL61J.VIL", - "contingencyLabel": "AVALLL61J.VIL", - "baselineMaxLoadingPct": 131.7, - "description": "November — Monday evening. Loss of AVALLL61J.VIL drives a worst-case 131.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5384e039_3065fe", + "label": "January — Monday evening — J.VILL61ZTONN", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "J.VILL61ZTONN", + "contingencyLabel": "J.VILL61ZTONN", + "baselineMaxLoadingPct": 113.0, + "description": "January — Monday evening. Loss of J.VILL61ZTONN drives a worst-case 113.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_f0456c", - "label": "November — Monday evening — AVIGNL61MOTT5", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "AVIGNL61MOTT5", - "contingencyLabel": "AVIGNL61MOTT5", - "baselineMaxLoadingPct": 121.8, - "description": "November — Monday evening. Loss of AVIGNL61MOTT5 drives a worst-case 121.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5384e039_14bf53", + "label": "January — Monday evening — LAVERL61SEPTE", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "LAVERL61SEPTE", + "contingencyLabel": "LAVERL61SEPTE", + "baselineMaxLoadingPct": 115.1, + "description": "January — Monday evening. Loss of LAVERL61SEPTE drives a worst-case 115.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_3adaf4", - "label": "November — Monday evening — BOCTOL71N.SE1", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "BOCTOL71N.SE1", - "contingencyLabel": "BOCTOL71N.SE1", - "baselineMaxLoadingPct": 119.6, - "description": "November — Monday evening. Loss of BOCTOL71N.SE1 drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5384e039_29a9b4", + "label": "January — Monday evening — P.ORGL61RQROU", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "P.ORGL61RQROU", + "contingencyLabel": "P.ORGL61RQROU", + "baselineMaxLoadingPct": 133.2, + "description": "January — Monday evening. Loss of P.ORGL61RQROU drives a worst-case 133.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_353f4a", - "label": "November — Monday evening — BOCTOL72N.SE2", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "BOCTOL72N.SE2", - "contingencyLabel": "BOCTOL72N.SE2", - "baselineMaxLoadingPct": 119.6, - "description": "November — Monday evening. Loss of BOCTOL72N.SE2 drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5384e039_682401", + "label": "January — Monday evening — P.ORGL71TAVEL", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "P.ORGL71TAVEL", + "contingencyLabel": "P.ORGL71TAVEL", + "baselineMaxLoadingPct": 115.8, + "description": "January — Monday evening. Loss of P.ORGL71TAVEL drives a worst-case 115.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_be2272", - "label": "November — Monday evening — BVIL7L71GAUGL", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "BVIL7L71GAUGL", - "contingencyLabel": "BVIL7L71GAUGL", - "baselineMaxLoadingPct": 119.7, - "description": "November — Monday evening. Loss of BVIL7L71GAUGL drives a worst-case 119.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5384e039_6d8ce0", + "label": "January — Monday evening — PONTEL61REALT", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "PONTEL61REALT", + "contingencyLabel": "PONTEL61REALT", + "baselineMaxLoadingPct": 122.9, + "description": "January — Monday evening. Loss of PONTEL61REALT drives a worst-case 122.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_43dc87", - "label": "November — Monday evening — BVILXL72GAUGL", + "id": "s_5384e039_7d0521", + "label": "January — Monday evening — PONTEL62REALT", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "PONTEL62REALT", + "contingencyLabel": "PONTEL62REALT", + "baselineMaxLoadingPct": 123.0, + "description": "January — Monday evening. Loss of PONTEL62REALT drives a worst-case 123.0% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5384e039_52c6d8", + "label": "January — Monday evening — SEREIL61ZTONN", + "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", + "contingencyElementId": "SEREIL61ZTONN", + "contingencyLabel": "SEREIL61ZTONN", + "baselineMaxLoadingPct": 132.6, + "description": "January — Monday evening. Loss of SEREIL61ZTONN drives a worst-case 132.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_84e485", + "label": "November — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "BVILXL72GAUGL", - "contingencyLabel": "BVILXL72GAUGL", - "baselineMaxLoadingPct": 119.7, - "description": "November — Monday evening. Loss of BVILXL72GAUGL drives a worst-case 119.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOLL5L61TERRA", + "contingencyLabel": "BOLL5L61TERRA", + "baselineMaxLoadingPct": 146.5, + "description": "November — Monday evening. Loss of BOLL5L61TERRA drives a worst-case 146.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_38eff7", @@ -5128,17 +5216,6 @@ "baselineMaxLoadingPct": 102.5, "description": "November — Monday evening. Loss of CAPELL71MASTA drives a worst-case 102.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_7f1036", - "label": "November — Monday evening — CARRIL62TERRI", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "CARRIL62TERRI", - "contingencyLabel": "CARRIL62TERRI", - "baselineMaxLoadingPct": 124.1, - "description": "November — Monday evening. Loss of CARRIL62TERRI drives a worst-case 124.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_25840f", "label": "November — Monday evening — CATG1L71VIGY", @@ -5173,37 +5250,26 @@ "description": "November — Monday evening. Loss of CHEV5L61ZBAST drives a worst-case 120.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_b3a56c", - "label": "November — Monday evening — CHOO1L71LONNY", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "CHOO1L71LONNY", - "contingencyLabel": "CHOO1L71LONNY", - "baselineMaxLoadingPct": 119.6, - "description": "November — Monday evening. Loss of CHOO1L71LONNY drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_6f8087", - "label": "November — Monday evening — CHOO2L72LONNY", + "id": "s_5fc376c7_8fb65d", + "label": "November — Monday evening — COR.PL61ZBAST", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "CHOO2L72LONNY", - "contingencyLabel": "CHOO2L72LONNY", - "baselineMaxLoadingPct": 119.6, - "description": "November — Monday evening. Loss of CHOO2L72LONNY drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "COR.PL61ZBAST", + "contingencyLabel": "COR.PL61ZBAST", + "baselineMaxLoadingPct": 136.4, + "description": "November — Monday evening. Loss of COR.PL61ZBAST drives a worst-case 136.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_312f77", - "label": "November — Monday evening — D.BURL72TABAR", + "id": "s_5fc376c7_ac739f", + "label": "November — Monday evening — CUBNEL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "D.BURL72TABAR", - "contingencyLabel": "D.BURL72TABAR", - "baselineMaxLoadingPct": 118.8, - "description": "November — Monday evening. Loss of D.BURL72TABAR drives a worst-case 118.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "CUBNEL61ZSS11", + "contingencyLabel": "CUBNEL61ZSS11", + "baselineMaxLoadingPct": 125.0, + "description": "November — Monday evening. Loss of CUBNEL61ZSS11 drives a worst-case 125.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_350b00", @@ -5227,6 +5293,28 @@ "baselineMaxLoadingPct": 136.8, "description": "November — Monday evening. Loss of ECHALL61RIVIE drives a worst-case 136.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_dd71e8", + "label": "November — Monday evening — F.FREL71M.SEI", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "F.FREL71M.SEI", + "contingencyLabel": "F.FREL71M.SEI", + "baselineMaxLoadingPct": 102.7, + "description": "November — Monday evening. Loss of F.FREL71M.SEI drives a worst-case 102.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_883903", + "label": "November — Monday evening — F.FREL71VESLE", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "F.FREL71VESLE", + "contingencyLabel": "F.FREL71VESLE", + "baselineMaxLoadingPct": 103.0, + "description": "November — Monday evening. Loss of F.FREL71VESLE drives a worst-case 103.0% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_fce567", "label": "November — Monday evening — GRAV5L72WARAN", @@ -5271,17 +5359,6 @@ "baselineMaxLoadingPct": 118.7, "description": "November — Monday evening. Loss of GRAV5L75WARAN drives a worst-case 118.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_3065fe", - "label": "November — Monday evening — J.VILL61ZTONN", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "J.VILL61ZTONN", - "contingencyLabel": "J.VILL61ZTONN", - "baselineMaxLoadingPct": 130.4, - "description": "November — Monday evening. Loss of J.VILL61ZTONN drives a worst-case 130.4% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_d06cb6", "label": "November — Monday evening — MASTAL61PERIZ", @@ -5294,191 +5371,158 @@ "description": "November — Monday evening. Loss of MASTAL61PERIZ drives a worst-case 112.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_3474b2", - "label": "November — Monday evening — P.CORL71SSAL7", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "P.CORL71SSAL7", - "contingencyLabel": "P.CORL71SSAL7", - "baselineMaxLoadingPct": 119.4, - "description": "November — Monday evening. Loss of P.CORL71SSAL7 drives a worst-case 119.4% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_431798", - "label": "November — Monday evening — P.CORL72SSAL7", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "P.CORL72SSAL7", - "contingencyLabel": "P.CORL72SSAL7", - "baselineMaxLoadingPct": 119.4, - "description": "November — Monday evening. Loss of P.CORL72SSAL7 drives a worst-case 119.4% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_a91fd1", - "label": "November — Monday evening — ROUMOL61ZSSCR", + "id": "s_5fc376c7_29a9b4", + "label": "November — Monday evening — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ROUMOL61ZSSCR", - "contingencyLabel": "ROUMOL61ZSSCR", - "baselineMaxLoadingPct": 100.1, - "description": "November — Monday evening. Loss of ROUMOL61ZSSCR drives a worst-case 100.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.ORGL61RQROU", + "contingencyLabel": "P.ORGL61RQROU", + "baselineMaxLoadingPct": 168.6, + "description": "November — Monday evening. Loss of P.ORGL61RQROU drives a worst-case 168.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_594cad", - "label": "November — Monday evening — ROUMOL61ZVA10", + "id": "s_5fc376c7_00de85", + "label": "November — Monday evening — TAMARL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ROUMOL61ZVA10", - "contingencyLabel": "ROUMOL61ZVA10", - "baselineMaxLoadingPct": 99.8, - "description": "November — Monday evening. Loss of ROUMOL61ZVA10 drives a worst-case 99.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "TAMARL71TAVEL", + "contingencyLabel": "TAMARL71TAVEL", + "baselineMaxLoadingPct": 109.3, + "description": "November — Monday evening. Loss of TAMARL71TAVEL drives a worst-case 109.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_52c6d8", - "label": "November — Monday evening — SEREIL61ZTONN", + "id": "s_5fc376c7_edd29e", + "label": "November — Monday evening — TAMARL72TAVEL", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "SEREIL61ZTONN", - "contingencyLabel": "SEREIL61ZTONN", - "baselineMaxLoadingPct": 146.2, - "description": "November — Monday evening. Loss of SEREIL61ZTONN drives a worst-case 146.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "TAMARL72TAVEL", + "contingencyLabel": "TAMARL72TAVEL", + "baselineMaxLoadingPct": 109.3, + "description": "November — Monday evening. Loss of TAMARL72TAVEL drives a worst-case 109.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_301e35", - "label": "November — Monday evening — SSEA2L72VERGE", + "id": "s_5fc376c7_f7ae0b", + "label": "November — Monday evening — TUILIL61ZSS11", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "SSEA2L72VERGE", - "contingencyLabel": "SSEA2L72VERGE", - "baselineMaxLoadingPct": 118.8, - "description": "November — Monday evening. Loss of SSEA2L72VERGE drives a worst-case 118.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "TUILIL61ZSS11", + "contingencyLabel": "TUILIL61ZSS11", + "baselineMaxLoadingPct": 109.2, + "description": "November — Monday evening. Loss of TUILIL61ZSS11 drives a worst-case 109.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_6d341c", - "label": "March — Monday morning — ALOUEL61PLAIS", + "id": "s_437818d6_6b287c", + "label": "March — Monday morning — DARSEL61RASSU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "ALOUEL61PLAIS", - "contingencyLabel": "ALOUEL61PLAIS", - "baselineMaxLoadingPct": 108.8, - "description": "March — Monday morning. Loss of ALOUEL61PLAIS drives a worst-case 108.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "DARSEL61RASSU", + "contingencyLabel": "DARSEL61RASSU", + "baselineMaxLoadingPct": 120.7, + "description": "March — Monday morning. Loss of DARSEL61RASSU drives a worst-case 120.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_ce6f13", - "label": "March — Monday morning — BARNAL71ROUGE", + "id": "s_437818d6_14bf53", + "label": "March — Monday morning — LAVERL61SEPTE", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "BARNAL71ROUGE", - "contingencyLabel": "BARNAL71ROUGE", - "baselineMaxLoadingPct": 118.4, - "description": "March — Monday morning. Loss of BARNAL71ROUGE drives a worst-case 118.4% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "LAVERL61SEPTE", + "contingencyLabel": "LAVERL61SEPTE", + "baselineMaxLoadingPct": 136.1, + "description": "March — Monday morning. Loss of LAVERL61SEPTE drives a worst-case 136.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_a4b31e", - "label": "March — Monday morning — BARNAL72ROUGE", + "id": "s_437818d6_c4860a", + "label": "March — Monday morning — LINGOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "BARNAL72ROUGE", - "contingencyLabel": "BARNAL72ROUGE", - "baselineMaxLoadingPct": 118.2, - "description": "March — Monday morning. Loss of BARNAL72ROUGE drives a worst-case 118.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "LINGOL61ZVA10", + "contingencyLabel": "LINGOL61ZVA10", + "baselineMaxLoadingPct": 105.5, + "description": "March — Monday morning. Loss of LINGOL61ZVA10 drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_5d8720", - "label": "March — Monday morning — CHOLEL61RECOU", + "id": "s_437818d6_29a9b4", + "label": "March — Monday morning — P.ORGL61RQROU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "CHOLEL61RECOU", - "contingencyLabel": "CHOLEL61RECOU", - "baselineMaxLoadingPct": 103.2, - "description": "March — Monday morning. Loss of CHOLEL61RECOU drives a worst-case 103.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.ORGL61RQROU", + "contingencyLabel": "P.ORGL61RQROU", + "baselineMaxLoadingPct": 126.9, + "description": "March — Monday morning. Loss of P.ORGL61RQROU drives a worst-case 126.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_d25bab", - "label": "March — Monday morning — LAVERL61P.BOU", + "id": "s_437818d6_6d8ce0", + "label": "March — Monday morning — PONTEL61REALT", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "LAVERL61P.BOU", - "contingencyLabel": "LAVERL61P.BOU", - "baselineMaxLoadingPct": 109.7, - "description": "March — Monday morning. Loss of LAVERL61P.BOU drives a worst-case 109.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "PONTEL61REALT", + "contingencyLabel": "PONTEL61REALT", + "baselineMaxLoadingPct": 145.5, + "description": "March — Monday morning. Loss of PONTEL61REALT drives a worst-case 145.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_769a3f", - "label": "March — Monday morning — LAVERL61PONTE", + "id": "s_437818d6_7d0521", + "label": "March — Monday morning — PONTEL62REALT", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "LAVERL61PONTE", - "contingencyLabel": "LAVERL61PONTE", - "baselineMaxLoadingPct": 125.1, - "description": "March — Monday morning. Loss of LAVERL61PONTE drives a worst-case 125.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "PONTEL62REALT", + "contingencyLabel": "PONTEL62REALT", + "baselineMaxLoadingPct": 145.5, + "description": "March — Monday morning. Loss of PONTEL62REALT drives a worst-case 145.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_14bf53", - "label": "March — Monday morning — LAVERL61SEPTE", + "id": "s_437818d6_13bc5a", + "label": "March — Monday morning — RASSUL61S.AIR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "LAVERL61SEPTE", - "contingencyLabel": "LAVERL61SEPTE", - "baselineMaxLoadingPct": 136.1, - "description": "March — Monday morning. Loss of LAVERL61SEPTE drives a worst-case 136.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "RASSUL61S.AIR", + "contingencyLabel": "RASSUL61S.AIR", + "baselineMaxLoadingPct": 116.6, + "description": "March — Monday morning. Loss of RASSUL61S.AIR drives a worst-case 116.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_b938e3", - "label": "March — Monday morning — REALTL72TAVEL", + "id": "s_437818d6_a91fd1", + "label": "March — Monday morning — ROUMOL61ZSSCR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "REALTL72TAVEL", - "contingencyLabel": "REALTL72TAVEL", - "baselineMaxLoadingPct": 104.0, - "description": "March — Monday morning. Loss of REALTL72TAVEL drives a worst-case 104.0% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "ROUMOL61ZSSCR", + "contingencyLabel": "ROUMOL61ZSSCR", + "baselineMaxLoadingPct": 105.2, + "description": "March — Monday morning. Loss of ROUMOL61ZSSCR drives a worst-case 105.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_554e81", - "label": "March — Monday morning — SAINNL61YAINV", + "id": "s_437818d6_594cad", + "label": "March — Monday morning — ROUMOL61ZVA10", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "SAINNL61YAINV", - "contingencyLabel": "SAINNL61YAINV", - "baselineMaxLoadingPct": 109.1, - "description": "March — Monday morning. Loss of SAINNL61YAINV drives a worst-case 109.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "ROUMOL61ZVA10", + "contingencyLabel": "ROUMOL61ZVA10", + "baselineMaxLoadingPct": 105.5, + "description": "March — Monday morning. Loss of ROUMOL61ZVA10 drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_c77cdf", - "label": "March — Monday morning — VAUPAL61YAINV", + "id": "s_437818d6_c1d62c", + "label": "March — Monday morning — RQROUL61S.AIR", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "VAUPAL61YAINV", - "contingencyLabel": "VAUPAL61YAINV", - "baselineMaxLoadingPct": 109.1, - "description": "March — Monday morning. Loss of VAUPAL61YAINV drives a worst-case 109.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_56172b", - "label": "January — Monday evening — AUBUSL62MOLE", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "AUBUSL62MOLE", - "contingencyLabel": "AUBUSL62MOLE", - "baselineMaxLoadingPct": 103.8, - "description": "January — Monday evening. Loss of AUBUSL62MOLE drives a worst-case 103.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "RQROUL61S.AIR", + "contingencyLabel": "RQROUL61S.AIR", + "baselineMaxLoadingPct": 115.8, + "description": "March — Monday morning. Loss of RQROUL61S.AIR drives a worst-case 115.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_7e4387", @@ -5525,103 +5569,92 @@ "description": "January — Monday evening. Loss of AVOI5L74CHINX drives a worst-case 103.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_a1525a", - "label": "January — Monday evening — BARNAL71PALUE", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BARNAL71PALUE", - "contingencyLabel": "BARNAL71PALUE", - "baselineMaxLoadingPct": 132.7, - "description": "January — Monday evening. Loss of BARNAL71PALUE drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_9d94a2", - "label": "January — Monday evening — BARNAL72PALUE", + "id": "s_e4e81e29_51df4e", + "label": "January — Monday evening — BAYETL61VOLVI", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BARNAL72PALUE", - "contingencyLabel": "BARNAL72PALUE", - "baselineMaxLoadingPct": 132.8, - "description": "January — Monday evening. Loss of BARNAL72PALUE drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BAYETL61VOLVI", + "contingencyLabel": "BAYETL61VOLVI", + "baselineMaxLoadingPct": 113.1, + "description": "January — Monday evening. Loss of BAYETL61VOLVI drives a worst-case 113.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_aee889", - "label": "January — Monday evening — BARNAL73PALUE", + "id": "s_e4e81e29_281812", + "label": "January — Monday evening — BAYETL71MARMA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BARNAL73PALUE", - "contingencyLabel": "BARNAL73PALUE", - "baselineMaxLoadingPct": 132.8, - "description": "January — Monday evening. Loss of BARNAL73PALUE drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BAYETL71MARMA", + "contingencyLabel": "BAYETL71MARMA", + "baselineMaxLoadingPct": 102.5, + "description": "January — Monday evening. Loss of BAYETL71MARMA drives a worst-case 102.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_6c6200", - "label": "January — Monday evening — BARNAL74PALUE", + "id": "s_e4e81e29_2188da", + "label": "January — Monday evening — BAYETL72MARMA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BARNAL74PALUE", - "contingencyLabel": "BARNAL74PALUE", - "baselineMaxLoadingPct": 132.8, - "description": "January — Monday evening. Loss of BARNAL74PALUE drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BAYETL72MARMA", + "contingencyLabel": "BAYETL72MARMA", + "baselineMaxLoadingPct": 102.5, + "description": "January — Monday evening. Loss of BAYETL72MARMA drives a worst-case 102.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_3adaf4", - "label": "January — Monday evening — BOCTOL71N.SE1", + "id": "s_e4e81e29_117f52", + "label": "January — Monday evening — BLAYAL72BRAUD", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BOCTOL71N.SE1", - "contingencyLabel": "BOCTOL71N.SE1", - "baselineMaxLoadingPct": 132.7, - "description": "January — Monday evening. Loss of BOCTOL71N.SE1 drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BLAYAL72BRAUD", + "contingencyLabel": "BLAYAL72BRAUD", + "baselineMaxLoadingPct": 106.9, + "description": "January — Monday evening. Loss of BLAYAL72BRAUD drives a worst-case 106.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_353f4a", - "label": "January — Monday evening — BOCTOL72N.SE2", + "id": "s_e4e81e29_369fbd", + "label": "January — Monday evening — BLAYAL74BRAUD", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BOCTOL72N.SE2", - "contingencyLabel": "BOCTOL72N.SE2", - "baselineMaxLoadingPct": 132.7, - "description": "January — Monday evening. Loss of BOCTOL72N.SE2 drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BLAYAL74BRAUD", + "contingencyLabel": "BLAYAL74BRAUD", + "baselineMaxLoadingPct": 105.5, + "description": "January — Monday evening. Loss of BLAYAL74BRAUD drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_be2272", - "label": "January — Monday evening — BVIL7L71GAUGL", + "id": "s_e4e81e29_84e485", + "label": "January — Monday evening — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BVIL7L71GAUGL", - "contingencyLabel": "BVIL7L71GAUGL", - "baselineMaxLoadingPct": 132.7, - "description": "January — Monday evening. Loss of BVIL7L71GAUGL drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOLL5L61TERRA", + "contingencyLabel": "BOLL5L61TERRA", + "baselineMaxLoadingPct": 172.6, + "description": "January — Monday evening. Loss of BOLL5L61TERRA drives a worst-case 172.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_43dc87", - "label": "January — Monday evening — BVILXL72GAUGL", + "id": "s_e4e81e29_5a3fb3", + "label": "January — Monday evening — BORT L62MOLE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BVILXL72GAUGL", - "contingencyLabel": "BVILXL72GAUGL", - "baselineMaxLoadingPct": 132.7, - "description": "January — Monday evening. Loss of BVILXL72GAUGL drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BORT L62MOLE", + "contingencyLabel": "BORT L62MOLE", + "baselineMaxLoadingPct": 106.2, + "description": "January — Monday evening. Loss of BORT L62MOLE drives a worst-case 106.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_a20d00", - "label": "January — Monday evening — CHESNL71VLECH", + "id": "s_e4e81e29_3539e9", + "label": "January — Monday evening — BREUIL71RUEYR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CHESNL71VLECH", - "contingencyLabel": "CHESNL71VLECH", - "baselineMaxLoadingPct": 124.7, - "description": "January — Monday evening. Loss of CHESNL71VLECH drives a worst-case 124.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BREUIL71RUEYR", + "contingencyLabel": "BREUIL71RUEYR", + "baselineMaxLoadingPct": 113.5, + "description": "January — Monday evening. Loss of BREUIL71RUEYR drives a worst-case 113.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_b10b23", @@ -5645,17 +5678,6 @@ "baselineMaxLoadingPct": 103.2, "description": "January — Monday evening. Loss of CHIN2L72G.AVO drives a worst-case 103.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_523f23", - "label": "January — Monday evening — CORMEL61PERRE", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CORMEL61PERRE", - "contingencyLabel": "CORMEL61PERRE", - "baselineMaxLoadingPct": 129.9, - "description": "January — Monday evening. Loss of CORMEL61PERRE drives a worst-case 129.9% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_ac739f", "label": "January — Monday evening — CUBNEL61ZSS11", @@ -5668,81 +5690,81 @@ "description": "January — Monday evening. Loss of CUBNEL61ZSS11 drives a worst-case 129.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_25b2bf", - "label": "January — Monday evening — CUBNEL71DONZA", + "id": "s_e4e81e29_9147bf", + "label": "January — Monday evening — EGUZOL61MOUS5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CUBNEL71DONZA", - "contingencyLabel": "CUBNEL71DONZA", - "baselineMaxLoadingPct": 111.9, - "description": "January — Monday evening. Loss of CUBNEL71DONZA drives a worst-case 111.9% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "EGUZOL61MOUS5", + "contingencyLabel": "EGUZOL61MOUS5", + "baselineMaxLoadingPct": 102.2, + "description": "January — Monday evening. Loss of EGUZOL61MOUS5 drives a worst-case 102.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_9c5ba0", - "label": "January — Monday evening — CUBNEL72DONZA", + "id": "s_e4e81e29_36bfed", + "label": "January — Monday evening — FLEACL61SANIL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CUBNEL72DONZA", - "contingencyLabel": "CUBNEL72DONZA", - "baselineMaxLoadingPct": 112.1, - "description": "January — Monday evening. Loss of CUBNEL72DONZA drives a worst-case 112.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "FLEACL61SANIL", + "contingencyLabel": "FLEACL61SANIL", + "baselineMaxLoadingPct": 105.8, + "description": "January — Monday evening. Loss of FLEACL61SANIL drives a worst-case 105.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_3bf176", - "label": "January — Monday evening — DAMBRL71GATI5", + "id": "s_e4e81e29_c5f106", + "label": "January — Monday evening — GARCHL61SSELO", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "DAMBRL71GATI5", - "contingencyLabel": "DAMBRL71GATI5", - "baselineMaxLoadingPct": 104.8, - "description": "January — Monday evening. Loss of DAMBRL71GATI5 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "GARCHL61SSELO", + "contingencyLabel": "GARCHL61SSELO", + "baselineMaxLoadingPct": 111.1, + "description": "January — Monday evening. Loss of GARCHL61SSELO drives a worst-case 111.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_17cb98", - "label": "January — Monday evening — DAMBRL71VERGE", + "id": "s_e4e81e29_ea6086", + "label": "January — Monday evening — GATI5L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "DAMBRL71VERGE", - "contingencyLabel": "DAMBRL71VERGE", - "baselineMaxLoadingPct": 103.7, - "description": "January — Monday evening. Loss of DAMBRL71VERGE drives a worst-case 103.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "GATI5L71GAUGL", + "contingencyLabel": "GATI5L71GAUGL", + "baselineMaxLoadingPct": 103.1, + "description": "January — Monday evening. Loss of GATI5L71GAUGL drives a worst-case 103.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_f2bf6c", - "label": "January — Monday evening — DAMBRL72GATI5", + "id": "s_e4e81e29_40a62f", + "label": "January — Monday evening — GATI5L72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "DAMBRL72GATI5", - "contingencyLabel": "DAMBRL72GATI5", - "baselineMaxLoadingPct": 104.8, - "description": "January — Monday evening. Loss of DAMBRL72GATI5 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "GATI5L72GAUGL", + "contingencyLabel": "GATI5L72GAUGL", + "baselineMaxLoadingPct": 103.1, + "description": "January — Monday evening. Loss of GATI5L72GAUGL drives a worst-case 103.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_bd6579", - "label": "January — Monday evening — DAMBRL72VERGE", + "id": "s_e4e81e29_81ed63", + "label": "January — Monday evening — GAUDIL71TAMAR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "DAMBRL72VERGE", - "contingencyLabel": "DAMBRL72VERGE", - "baselineMaxLoadingPct": 103.7, - "description": "January — Monday evening. Loss of DAMBRL72VERGE drives a worst-case 103.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_c445b6", - "label": "January — Monday evening — FLAMAL72MENUE", + "contingencyElementId": "GAUDIL71TAMAR", + "contingencyLabel": "GAUDIL71TAMAR", + "baselineMaxLoadingPct": 120.6, + "description": "January — Monday evening. Loss of GAUDIL71TAMAR drives a worst-case 120.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_3278f8", + "label": "January — Monday evening — GAUDIL72TAMAR", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "FLAMAL72MENUE", - "contingencyLabel": "FLAMAL72MENUE", - "baselineMaxLoadingPct": 132.9, - "description": "January — Monday evening. Loss of FLAMAL72MENUE drives a worst-case 132.9% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "GAUDIL72TAMAR", + "contingencyLabel": "GAUDIL72TAMAR", + "baselineMaxLoadingPct": 120.6, + "description": "January — Monday evening. Loss of GAUDIL72TAMAR drives a worst-case 120.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_9b4826", @@ -5800,26 +5822,70 @@ "description": "January — Monday evening. Loss of GRAV5L76WARAN drives a worst-case 101.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_b9d93c", - "label": "January — Monday evening — POUGEL61SSVIC", + "id": "s_e4e81e29_bc4e0d", + "label": "January — Monday evening — ISSOIL61LIGNA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "POUGEL61SSVIC", - "contingencyLabel": "POUGEL61SSVIC", - "baselineMaxLoadingPct": 103.6, - "description": "January — Monday evening. Loss of POUGEL61SSVIC drives a worst-case 103.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "ISSOIL61LIGNA", + "contingencyLabel": "ISSOIL61LIGNA", + "baselineMaxLoadingPct": 103.5, + "description": "January — Monday evening. Loss of ISSOIL61LIGNA drives a worst-case 103.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_dd1e44", - "label": "January — Monday evening — SEREIL71VLECH", + "id": "s_e4e81e29_6e3590", + "label": "January — Monday evening — JONQUL61MTAG5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "SEREIL71VLECH", - "contingencyLabel": "SEREIL71VLECH", - "baselineMaxLoadingPct": 125.1, - "description": "January — Monday evening. Loss of SEREIL71VLECH drives a worst-case 125.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "JONQUL61MTAG5", + "contingencyLabel": "JONQUL61MTAG5", + "baselineMaxLoadingPct": 135.3, + "description": "January — Monday evening. Loss of JONQUL61MTAG5 drives a worst-case 135.3% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_161333", + "label": "January — Monday evening — LIGNAL61RULHA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "LIGNAL61RULHA", + "contingencyLabel": "LIGNAL61RULHA", + "baselineMaxLoadingPct": 114.1, + "description": "January — Monday evening. Loss of LIGNAL61RULHA drives a worst-case 114.1% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_3baec7", + "label": "January — Monday evening — MTEZ5L71RUEYR", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "MTEZ5L71RUEYR", + "contingencyLabel": "MTEZ5L71RUEYR", + "baselineMaxLoadingPct": 103.5, + "description": "January — Monday evening. Loss of MTEZ5L71RUEYR drives a worst-case 103.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_65b7d5", + "label": "January — Monday evening — MTLUCL61MTVIC", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "MTLUCL61MTVIC", + "contingencyLabel": "MTLUCL61MTVIC", + "baselineMaxLoadingPct": 137.5, + "description": "January — Monday evening. Loss of MTLUCL61MTVIC drives a worst-case 137.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_29a9b4", + "label": "January — Monday evening — P.ORGL61RQROU", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "P.ORGL61RQROU", + "contingencyLabel": "P.ORGL61RQROU", + "baselineMaxLoadingPct": 162.4, + "description": "January — Monday evening. Loss of P.ORGL61RQROU drives a worst-case 162.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_e97cc5", @@ -5832,17 +5898,6 @@ "baselineMaxLoadingPct": 101.0, "description": "January — Monday evening. Loss of SSEA2L71VERGE drives a worst-case 101.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_224551", - "label": "January — Monday evening — SSVICL61ZLACA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "SSVICL61ZLACA", - "contingencyLabel": "SSVICL61ZLACA", - "baselineMaxLoadingPct": 99.1, - "description": "January — Monday evening. Loss of SSVICL61ZLACA drives a worst-case 99.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_f7ae0b", "label": "January — Monday evening — TUILIL61ZSS11", @@ -5856,61 +5911,6 @@ } ], "hard": [ - { - "id": "s_5384e039_1a1e0c", - "label": "January — Monday evening — AVALLL61J.VIL", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "AVALLL61J.VIL", - "contingencyLabel": "AVALLL61J.VIL", - "baselineMaxLoadingPct": 114.1, - "description": "January — Monday evening. Loss of AVALLL61J.VIL drives a worst-case 114.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_4a4a4e", - "label": "January — Monday evening — AVALLL61VNOL", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "AVALLL61VNOL", - "contingencyLabel": "AVALLL61VNOL", - "baselineMaxLoadingPct": 102.7, - "description": "January — Monday evening. Loss of AVALLL61VNOL drives a worst-case 102.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_84e485", - "label": "January — Monday evening — BOLL5L61TERRA", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "BOLL5L61TERRA", - "contingencyLabel": "BOLL5L61TERRA", - "baselineMaxLoadingPct": 147.4, - "description": "January — Monday evening. Loss of BOLL5L61TERRA drives a worst-case 147.4% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_149ed1", - "label": "January — Monday evening — CHESNL61NEMOU", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CHESNL61NEMOU", - "contingencyLabel": "CHESNL61NEMOU", - "baselineMaxLoadingPct": 144.8, - "description": "January — Monday evening. Loss of CHESNL61NEMOU drives a worst-case 144.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_ac739f", - "label": "January — Monday evening — CUBNEL61ZSS11", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "CUBNEL61ZSS11", - "contingencyLabel": "CUBNEL61ZSS11", - "baselineMaxLoadingPct": 104.5, - "description": "January — Monday evening. Loss of CUBNEL61ZSS11 drives a worst-case 104.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5384e039_6b287c", "label": "January — Monday evening — DARSEL61RASSU", @@ -5922,61 +5922,6 @@ "baselineMaxLoadingPct": 101.8, "description": "January — Monday evening. Loss of DARSEL61RASSU drives a worst-case 101.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5384e039_313e74", - "label": "January — Monday evening — DONZAL71GOLF5", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "DONZAL71GOLF5", - "contingencyLabel": "DONZAL71GOLF5", - "baselineMaxLoadingPct": 101.5, - "description": "January — Monday evening. Loss of DONZAL71GOLF5 drives a worst-case 101.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_5a16f9", - "label": "January — Monday evening — DONZAL72GOLF5", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "DONZAL72GOLF5", - "contingencyLabel": "DONZAL72GOLF5", - "baselineMaxLoadingPct": 101.5, - "description": "January — Monday evening. Loss of DONZAL72GOLF5 drives a worst-case 101.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_9598b8", - "label": "January — Monday evening — FEUILL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "FEUILL61SSCHA", - "contingencyLabel": "FEUILL61SSCHA", - "baselineMaxLoadingPct": 98.4, - "description": "January — Monday evening. Loss of FEUILL61SSCHA drives a worst-case 98.4% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_c5f106", - "label": "January — Monday evening — GARCHL61SSELO", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "GARCHL61SSELO", - "contingencyLabel": "GARCHL61SSELO", - "baselineMaxLoadingPct": 114.4, - "description": "January — Monday evening. Loss of GARCHL61SSELO drives a worst-case 114.4% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_ea6086", - "label": "January — Monday evening — GATI5L71GAUGL", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "GATI5L71GAUGL", - "contingencyLabel": "GATI5L71GAUGL", - "baselineMaxLoadingPct": 115.7, - "description": "January — Monday evening. Loss of GATI5L71GAUGL drives a worst-case 115.7% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5384e039_569bd5", "label": "January — Monday evening — GAUDIL71RUEYR", @@ -5988,17 +5933,6 @@ "baselineMaxLoadingPct": 116.8, "description": "January — Monday evening. Loss of GAUDIL71RUEYR drives a worst-case 116.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5384e039_3065fe", - "label": "January — Monday evening — J.VILL61ZTONN", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "J.VILL61ZTONN", - "contingencyLabel": "J.VILL61ZTONN", - "baselineMaxLoadingPct": 113.0, - "description": "January — Monday evening. Loss of J.VILL61ZTONN drives a worst-case 113.0% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5384e039_769a3f", "label": "January — Monday evening — LAVERL61PONTE", @@ -6011,15 +5945,15 @@ "description": "January — Monday evening. Loss of LAVERL61PONTE drives a worst-case 108.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_14bf53", - "label": "January — Monday evening — LAVERL61SEPTE", + "id": "s_5384e039_56746e", + "label": "January — Monday evening — M.PONL65PONTE", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "LAVERL61SEPTE", - "contingencyLabel": "LAVERL61SEPTE", - "baselineMaxLoadingPct": 115.1, - "description": "January — Monday evening. Loss of LAVERL61SEPTE drives a worst-case 115.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "M.PONL65PONTE", + "contingencyLabel": "M.PONL65PONTE", + "baselineMaxLoadingPct": 101.8, + "description": "January — Monday evening. Loss of M.PONL65PONTE drives a worst-case 101.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5384e039_91f681", @@ -6033,81 +5967,48 @@ "description": "January — Monday evening. Loss of MAMBEL71SIERE drives a worst-case 114.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_e013a3", - "label": "January — Monday evening — MASTAL61P.SAM", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "MASTAL61P.SAM", - "contingencyLabel": "MASTAL61P.SAM", - "baselineMaxLoadingPct": 109.6, - "description": "January — Monday evening. Loss of MASTAL61P.SAM drives a worst-case 109.6% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_29a9b4", - "label": "January — Monday evening — P.ORGL61RQROU", + "id": "s_5384e039_f87211", + "label": "January — Monday evening — ROGNAL61SSCHA", "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "P.ORGL61RQROU", - "contingencyLabel": "P.ORGL61RQROU", - "baselineMaxLoadingPct": 133.2, - "description": "January — Monday evening. Loss of P.ORGL61RQROU drives a worst-case 133.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "ROGNAL61SSCHA", + "contingencyLabel": "ROGNAL61SSCHA", + "baselineMaxLoadingPct": 103.6, + "description": "January — Monday evening. Loss of ROGNAL61SSCHA drives a worst-case 103.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_682401", - "label": "January — Monday evening — P.ORGL71TAVEL", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "P.ORGL71TAVEL", - "contingencyLabel": "P.ORGL71TAVEL", - "baselineMaxLoadingPct": 115.8, - "description": "January — Monday evening. Loss of P.ORGL71TAVEL drives a worst-case 115.8% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_6d8ce0", - "label": "January — Monday evening — PONTEL61REALT", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "PONTEL61REALT", - "contingencyLabel": "PONTEL61REALT", - "baselineMaxLoadingPct": 122.9, - "description": "January — Monday evening. Loss of PONTEL61REALT drives a worst-case 122.9% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5384e039_7d0521", - "label": "January — Monday evening — PONTEL62REALT", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "PONTEL62REALT", - "contingencyLabel": "PONTEL62REALT", - "baselineMaxLoadingPct": 123.0, - "description": "January — Monday evening. Loss of PONTEL62REALT drives a worst-case 123.0% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5fc376c7_721c95", + "label": "November — Monday evening — ALBERL71COCHE", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ALBERL71COCHE", + "contingencyLabel": "ALBERL71COCHE", + "baselineMaxLoadingPct": 118.9, + "description": "November — Monday evening. Loss of ALBERL71COCHE drives a worst-case 118.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_f87211", - "label": "January — Monday evening — ROGNAL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "ROGNAL61SSCHA", - "contingencyLabel": "ROGNAL61SSCHA", - "baselineMaxLoadingPct": 103.6, - "description": "January — Monday evening. Loss of ROGNAL61SSCHA drives a worst-case 103.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5fc376c7_782e00", + "label": "November — Monday evening — ARDOIL61MOTT5", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ARDOIL61MOTT5", + "contingencyLabel": "ARDOIL61MOTT5", + "baselineMaxLoadingPct": 120.8, + "description": "November — Monday evening. Loss of ARDOIL61MOTT5 drives a worst-case 120.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5384e039_52c6d8", - "label": "January — Monday evening — SEREIL61ZTONN", - "networkPath": "data/rte7000_tht/grids/grid_5384e039/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5384e039/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5384e039/grid_layout.json", - "contingencyElementId": "SEREIL61ZTONN", - "contingencyLabel": "SEREIL61ZTONN", - "baselineMaxLoadingPct": 132.6, - "description": "January — Monday evening. Loss of SEREIL61ZTONN drives a worst-case 132.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "id": "s_5fc376c7_f0456c", + "label": "November — Monday evening — AVIGNL61MOTT5", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "AVIGNL61MOTT5", + "contingencyLabel": "AVIGNL61MOTT5", + "baselineMaxLoadingPct": 121.8, + "description": "November — Monday evening. Loss of AVIGNL61MOTT5 drives a worst-case 121.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_bc68bd", @@ -6209,15 +6110,48 @@ "description": "November — Monday evening. Loss of BLAYAL73BRAUD drives a worst-case 119.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_84e485", - "label": "November — Monday evening — BOLL5L61TERRA", + "id": "s_5fc376c7_3adaf4", + "label": "November — Monday evening — BOCTOL71N.SE1", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "BOLL5L61TERRA", - "contingencyLabel": "BOLL5L61TERRA", - "baselineMaxLoadingPct": 146.5, - "description": "November — Monday evening. Loss of BOLL5L61TERRA drives a worst-case 146.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOCTOL71N.SE1", + "contingencyLabel": "BOCTOL71N.SE1", + "baselineMaxLoadingPct": 119.6, + "description": "November — Monday evening. Loss of BOCTOL71N.SE1 drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_353f4a", + "label": "November — Monday evening — BOCTOL72N.SE2", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "BOCTOL72N.SE2", + "contingencyLabel": "BOCTOL72N.SE2", + "baselineMaxLoadingPct": 119.6, + "description": "November — Monday evening. Loss of BOCTOL72N.SE2 drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_be2272", + "label": "November — Monday evening — BVIL7L71GAUGL", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "BVIL7L71GAUGL", + "contingencyLabel": "BVIL7L71GAUGL", + "baselineMaxLoadingPct": 119.7, + "description": "November — Monday evening. Loss of BVIL7L71GAUGL drives a worst-case 119.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_43dc87", + "label": "November — Monday evening — BVILXL72GAUGL", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "BVILXL72GAUGL", + "contingencyLabel": "BVILXL72GAUGL", + "baselineMaxLoadingPct": 119.7, + "description": "November — Monday evening. Loss of BVILXL72GAUGL drives a worst-case 119.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_90a393", @@ -6231,15 +6165,37 @@ "description": "November — Monday evening. Loss of CHIN2L72G.AVO drives a worst-case 118.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_8fb65d", - "label": "November — Monday evening — COR.PL61ZBAST", + "id": "s_5fc376c7_b3a56c", + "label": "November — Monday evening — CHOO1L71LONNY", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "COR.PL61ZBAST", - "contingencyLabel": "COR.PL61ZBAST", - "baselineMaxLoadingPct": 136.4, - "description": "November — Monday evening. Loss of COR.PL61ZBAST drives a worst-case 136.4% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "CHOO1L71LONNY", + "contingencyLabel": "CHOO1L71LONNY", + "baselineMaxLoadingPct": 119.6, + "description": "November — Monday evening. Loss of CHOO1L71LONNY drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_6f8087", + "label": "November — Monday evening — CHOO2L72LONNY", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "CHOO2L72LONNY", + "contingencyLabel": "CHOO2L72LONNY", + "baselineMaxLoadingPct": 119.6, + "description": "November — Monday evening. Loss of CHOO2L72LONNY drives a worst-case 119.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_dee748", + "label": "November — Monday evening — COR.PL64CORD5", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "COR.PL64CORD5", + "contingencyLabel": "COR.PL64CORD5", + "baselineMaxLoadingPct": 109.1, + "description": "November — Monday evening. Loss of COR.PL64CORD5 drives a worst-case 109.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_8f4124", @@ -6253,15 +6209,15 @@ "description": "November — Monday evening. Loss of COR.PL65CORD5 drives a worst-case 118.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_ac739f", - "label": "November — Monday evening — CUBNEL61ZSS11", + "id": "s_5fc376c7_312f77", + "label": "November — Monday evening — D.BURL72TABAR", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "CUBNEL61ZSS11", - "contingencyLabel": "CUBNEL61ZSS11", - "baselineMaxLoadingPct": 125.0, - "description": "November — Monday evening. Loss of CUBNEL61ZSS11 drives a worst-case 125.0% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "D.BURL72TABAR", + "contingencyLabel": "D.BURL72TABAR", + "baselineMaxLoadingPct": 118.8, + "description": "November — Monday evening. Loss of D.BURL72TABAR drives a worst-case 118.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_f2bf6c", @@ -6274,17 +6230,6 @@ "baselineMaxLoadingPct": 108.6, "description": "November — Monday evening. Loss of DAMBRL72GATI5 drives a worst-case 108.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_6b287c", - "label": "November — Monday evening — DARSEL61RASSU", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "DARSEL61RASSU", - "contingencyLabel": "DARSEL61RASSU", - "baselineMaxLoadingPct": 127.5, - "description": "November — Monday evening. Loss of DARSEL61RASSU drives a worst-case 127.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_313e74", "label": "November — Monday evening — DONZAL71GOLF5", @@ -6296,17 +6241,6 @@ "baselineMaxLoadingPct": 120.0, "description": "November — Monday evening. Loss of DONZAL71GOLF5 drives a worst-case 120.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_9598b8", - "label": "November — Monday evening — FEUILL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "FEUILL61SSCHA", - "contingencyLabel": "FEUILL61SSCHA", - "baselineMaxLoadingPct": 159.2, - "description": "November — Monday evening. Loss of FEUILL61SSCHA drives a worst-case 159.2% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_0cb001", "label": "November — Monday evening — FLAMAL71MENUE", @@ -6329,6 +6263,17 @@ "baselineMaxLoadingPct": 119.7, "description": "November — Monday evening. Loss of FLAMAL72MENUE drives a worst-case 119.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_08e87d", + "label": "November — Monday evening — I.NAPL61OTTMA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "I.NAPL61OTTMA", + "contingencyLabel": "I.NAPL61OTTMA", + "baselineMaxLoadingPct": 120.7, + "description": "November — Monday evening. Loss of I.NAPL61OTTMA drives a worst-case 120.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_769a3f", "label": "November — Monday evening — LAVERL61PONTE", @@ -6340,39 +6285,6 @@ "baselineMaxLoadingPct": 124.4, "description": "November — Monday evening. Loss of LAVERL61PONTE drives a worst-case 124.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_0563a4", - "label": "November — Monday evening — LAVERL61SELF3", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL61SELF3", - "contingencyLabel": "LAVERL61SELF3", - "baselineMaxLoadingPct": 164.3, - "description": "November — Monday evening. Loss of LAVERL61SELF3 drives a worst-case 164.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_14bf53", - "label": "November — Monday evening — LAVERL61SEPTE", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL61SEPTE", - "contingencyLabel": "LAVERL61SEPTE", - "baselineMaxLoadingPct": 164.3, - "description": "November — Monday evening. Loss of LAVERL61SEPTE drives a worst-case 164.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_5fc376c7_4e6e75", - "label": "November — Monday evening — LAVERL62SELF3", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "LAVERL62SELF3", - "contingencyLabel": "LAVERL62SELF3", - "baselineMaxLoadingPct": 164.3, - "description": "November — Monday evening. Loss of LAVERL62SELF3 drives a worst-case 164.3% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_91f681", "label": "November — Monday evening — MAMBEL71SIERE", @@ -6385,15 +6297,26 @@ "description": "November — Monday evening. Loss of MAMBEL71SIERE drives a worst-case 130.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_29a9b4", - "label": "November — Monday evening — P.ORGL61RQROU", + "id": "s_5fc376c7_3474b2", + "label": "November — Monday evening — P.CORL71SSAL7", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "P.ORGL61RQROU", - "contingencyLabel": "P.ORGL61RQROU", - "baselineMaxLoadingPct": 168.6, - "description": "November — Monday evening. Loss of P.ORGL61RQROU drives a worst-case 168.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.CORL71SSAL7", + "contingencyLabel": "P.CORL71SSAL7", + "baselineMaxLoadingPct": 119.4, + "description": "November — Monday evening. Loss of P.CORL71SSAL7 drives a worst-case 119.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_431798", + "label": "November — Monday evening — P.CORL72SSAL7", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "P.CORL72SSAL7", + "contingencyLabel": "P.CORL72SSAL7", + "baselineMaxLoadingPct": 119.4, + "description": "November — Monday evening. Loss of P.CORL72SSAL7 drives a worst-case 119.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_5fc376c7_682401", @@ -6439,17 +6362,6 @@ "baselineMaxLoadingPct": 136.8, "description": "November — Monday evening. Loss of REVIGL71VIGY drives a worst-case 136.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_5fc376c7_f87211", - "label": "November — Monday evening — ROGNAL61SSCHA", - "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "ROGNAL61SSCHA", - "contingencyLabel": "ROGNAL61SSCHA", - "baselineMaxLoadingPct": 169.5, - "description": "November — Monday evening. Loss of ROGNAL61SSCHA drives a worst-case 169.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_5fc376c7_c1d62c", "label": "November — Monday evening — RQROUL61S.AIR", @@ -6462,37 +6374,37 @@ "description": "November — Monday evening. Loss of RQROUL61S.AIR drives a worst-case 114.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_5fc376c7_f7ae0b", - "label": "November — Monday evening — TUILIL61ZSS11", + "id": "s_5fc376c7_301e35", + "label": "November — Monday evening — SSEA2L72VERGE", "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", - "contingencyElementId": "TUILIL61ZSS11", - "contingencyLabel": "TUILIL61ZSS11", - "baselineMaxLoadingPct": 109.2, - "description": "November — Monday evening. Loss of TUILIL61ZSS11 drives a worst-case 109.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "SSEA2L72VERGE", + "contingencyLabel": "SSEA2L72VERGE", + "baselineMaxLoadingPct": 118.8, + "description": "November — Monday evening. Loss of SSEA2L72VERGE drives a worst-case 118.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_9e7813", - "label": "March — Monday morning — CHAN5L71VLERB", + "id": "s_437818d6_84e485", + "label": "March — Monday morning — BOLL5L61TERRA", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "CHAN5L71VLERB", - "contingencyLabel": "CHAN5L71VLERB", - "baselineMaxLoadingPct": 105.3, - "description": "March — Monday morning. Loss of CHAN5L71VLERB drives a worst-case 105.3% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOLL5L61TERRA", + "contingencyLabel": "BOLL5L61TERRA", + "baselineMaxLoadingPct": 129.0, + "description": "March — Monday morning. Loss of BOLL5L61TERRA drives a worst-case 129.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_6b287c", - "label": "March — Monday morning — DARSEL61RASSU", + "id": "s_437818d6_9e7813", + "label": "March — Monday morning — CHAN5L71VLERB", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "DARSEL61RASSU", - "contingencyLabel": "DARSEL61RASSU", - "baselineMaxLoadingPct": 120.7, - "description": "March — Monday morning. Loss of DARSEL61RASSU drives a worst-case 120.7% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "CHAN5L71VLERB", + "contingencyLabel": "CHAN5L71VLERB", + "baselineMaxLoadingPct": 105.3, + "description": "March — Monday morning. Loss of CHAN5L71VLERB drives a worst-case 105.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_437818d6_9598b8", @@ -6517,70 +6429,26 @@ "description": "March — Monday morning. Loss of FLAMAL71MENUE drives a worst-case 99.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_c4860a", - "label": "March — Monday morning — LINGOL61ZVA10", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "LINGOL61ZVA10", - "contingencyLabel": "LINGOL61ZVA10", - "baselineMaxLoadingPct": 105.5, - "description": "March — Monday morning. Loss of LINGOL61ZVA10 drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_437818d6_29a9b4", - "label": "March — Monday morning — P.ORGL61RQROU", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "P.ORGL61RQROU", - "contingencyLabel": "P.ORGL61RQROU", - "baselineMaxLoadingPct": 126.9, - "description": "March — Monday morning. Loss of P.ORGL61RQROU drives a worst-case 126.9% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_437818d6_6d8ce0", - "label": "March — Monday morning — PONTEL61REALT", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "PONTEL61REALT", - "contingencyLabel": "PONTEL61REALT", - "baselineMaxLoadingPct": 145.5, - "description": "March — Monday morning. Loss of PONTEL61REALT drives a worst-case 145.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_437818d6_7d0521", - "label": "March — Monday morning — PONTEL62REALT", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "PONTEL62REALT", - "contingencyLabel": "PONTEL62REALT", - "baselineMaxLoadingPct": 145.5, - "description": "March — Monday morning. Loss of PONTEL62REALT drives a worst-case 145.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_437818d6_13bc5a", - "label": "March — Monday morning — RASSUL61S.AIR", + "id": "s_437818d6_d25bab", + "label": "March — Monday morning — LAVERL61P.BOU", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "RASSUL61S.AIR", - "contingencyLabel": "RASSUL61S.AIR", - "baselineMaxLoadingPct": 116.6, - "description": "March — Monday morning. Loss of RASSUL61S.AIR drives a worst-case 116.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "LAVERL61P.BOU", + "contingencyLabel": "LAVERL61P.BOU", + "baselineMaxLoadingPct": 109.7, + "description": "March — Monday morning. Loss of LAVERL61P.BOU drives a worst-case 109.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_090e7b", - "label": "March — Monday morning — ROGNAL61RQROU", + "id": "s_437818d6_682401", + "label": "March — Monday morning — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "ROGNAL61RQROU", - "contingencyLabel": "ROGNAL61RQROU", - "baselineMaxLoadingPct": 125.5, - "description": "March — Monday morning. Loss of ROGNAL61RQROU drives a worst-case 125.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.ORGL71TAVEL", + "contingencyLabel": "P.ORGL71TAVEL", + "baselineMaxLoadingPct": 116.5, + "description": "March — Monday morning. Loss of P.ORGL71TAVEL drives a worst-case 116.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_437818d6_f87211", @@ -6594,37 +6462,26 @@ "description": "March — Monday morning. Loss of ROGNAL61SSCHA drives a worst-case 126.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_a91fd1", - "label": "March — Monday morning — ROUMOL61ZSSCR", - "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "ROUMOL61ZSSCR", - "contingencyLabel": "ROUMOL61ZSSCR", - "baselineMaxLoadingPct": 105.2, - "description": "March — Monday morning. Loss of ROUMOL61ZSSCR drives a worst-case 105.2% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_437818d6_594cad", - "label": "March — Monday morning — ROUMOL61ZVA10", + "id": "s_437818d6_c5ce55", + "label": "March — Monday morning — RQROUL61SSEST", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "ROUMOL61ZVA10", - "contingencyLabel": "ROUMOL61ZVA10", - "baselineMaxLoadingPct": 105.5, - "description": "March — Monday morning. Loss of ROUMOL61ZVA10 drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "RQROUL61SSEST", + "contingencyLabel": "RQROUL61SSEST", + "baselineMaxLoadingPct": 103.6, + "description": "March — Monday morning. Loss of RQROUL61SSEST drives a worst-case 103.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_437818d6_c1d62c", - "label": "March — Monday morning — RQROUL61S.AIR", + "id": "s_437818d6_544784", + "label": "March — Monday morning — SSESTL61SSTUL", "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", - "contingencyElementId": "RQROUL61S.AIR", - "contingencyLabel": "RQROUL61S.AIR", - "baselineMaxLoadingPct": 115.8, - "description": "March — Monday morning. Loss of RQROUL61S.AIR drives a worst-case 115.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "SSESTL61SSTUL", + "contingencyLabel": "SSESTL61SSTUL", + "baselineMaxLoadingPct": 103.5, + "description": "March — Monday morning. Loss of SSESTL61SSTUL drives a worst-case 103.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_437818d6_60b73f", @@ -6637,6 +6494,61 @@ "baselineMaxLoadingPct": 105.8, "description": "March — Monday morning. Loss of VERGEL71VLERB drives a worst-case 105.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_56172b", + "label": "January — Monday evening — AUBUSL62MOLE", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "AUBUSL62MOLE", + "contingencyLabel": "AUBUSL62MOLE", + "baselineMaxLoadingPct": 103.8, + "description": "January — Monday evening. Loss of AUBUSL62MOLE drives a worst-case 103.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_a1525a", + "label": "January — Monday evening — BARNAL71PALUE", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "BARNAL71PALUE", + "contingencyLabel": "BARNAL71PALUE", + "baselineMaxLoadingPct": 132.7, + "description": "January — Monday evening. Loss of BARNAL71PALUE drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_9d94a2", + "label": "January — Monday evening — BARNAL72PALUE", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "BARNAL72PALUE", + "contingencyLabel": "BARNAL72PALUE", + "baselineMaxLoadingPct": 132.8, + "description": "January — Monday evening. Loss of BARNAL72PALUE drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_aee889", + "label": "January — Monday evening — BARNAL73PALUE", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "BARNAL73PALUE", + "contingencyLabel": "BARNAL73PALUE", + "baselineMaxLoadingPct": 132.8, + "description": "January — Monday evening. Loss of BARNAL73PALUE drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_6c6200", + "label": "January — Monday evening — BARNAL74PALUE", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "BARNAL74PALUE", + "contingencyLabel": "BARNAL74PALUE", + "baselineMaxLoadingPct": 132.8, + "description": "January — Monday evening. Loss of BARNAL74PALUE drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_d8e88a", "label": "January — Monday evening — BAYETL61MTVIC", @@ -6648,17 +6560,6 @@ "baselineMaxLoadingPct": 146.6, "description": "January — Monday evening. Loss of BAYETL61MTVIC drives a worst-case 146.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_51df4e", - "label": "January — Monday evening — BAYETL61VOLVI", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BAYETL61VOLVI", - "contingencyLabel": "BAYETL61VOLVI", - "baselineMaxLoadingPct": 113.1, - "description": "January — Monday evening. Loss of BAYETL61VOLVI drives a worst-case 113.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_7f1f96", "label": "January — Monday evening — BAYETL71GREPI", @@ -6670,17 +6571,6 @@ "baselineMaxLoadingPct": 114.9, "description": "January — Monday evening. Loss of BAYETL71GREPI drives a worst-case 114.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_281812", - "label": "January — Monday evening — BAYETL71MARMA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BAYETL71MARMA", - "contingencyLabel": "BAYETL71MARMA", - "baselineMaxLoadingPct": 102.5, - "description": "January — Monday evening. Loss of BAYETL71MARMA drives a worst-case 102.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_c52c47", "label": "January — Monday evening — BAYETL72GREPI", @@ -6693,37 +6583,26 @@ "description": "January — Monday evening. Loss of BAYETL72GREPI drives a worst-case 115.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_2188da", - "label": "January — Monday evening — BAYETL72MARMA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BAYETL72MARMA", - "contingencyLabel": "BAYETL72MARMA", - "baselineMaxLoadingPct": 102.5, - "description": "January — Monday evening. Loss of BAYETL72MARMA drives a worst-case 102.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_117f52", - "label": "January — Monday evening — BLAYAL72BRAUD", + "id": "s_e4e81e29_3adaf4", + "label": "January — Monday evening — BOCTOL71N.SE1", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BLAYAL72BRAUD", - "contingencyLabel": "BLAYAL72BRAUD", - "baselineMaxLoadingPct": 106.9, - "description": "January — Monday evening. Loss of BLAYAL72BRAUD drives a worst-case 106.9% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOCTOL71N.SE1", + "contingencyLabel": "BOCTOL71N.SE1", + "baselineMaxLoadingPct": 132.7, + "description": "January — Monday evening. Loss of BOCTOL71N.SE1 drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_369fbd", - "label": "January — Monday evening — BLAYAL74BRAUD", + "id": "s_e4e81e29_353f4a", + "label": "January — Monday evening — BOCTOL72N.SE2", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BLAYAL74BRAUD", - "contingencyLabel": "BLAYAL74BRAUD", - "baselineMaxLoadingPct": 105.5, - "description": "January — Monday evening. Loss of BLAYAL74BRAUD drives a worst-case 105.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BOCTOL72N.SE2", + "contingencyLabel": "BOCTOL72N.SE2", + "baselineMaxLoadingPct": 132.7, + "description": "January — Monday evening. Loss of BOCTOL72N.SE2 drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_663986", @@ -6737,37 +6616,37 @@ "description": "January — Monday evening. Loss of BOISSL61ZJOUX drives a worst-case 140.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_84e485", - "label": "January — Monday evening — BOLL5L61TERRA", + "id": "s_e4e81e29_be2272", + "label": "January — Monday evening — BVIL7L71GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BOLL5L61TERRA", - "contingencyLabel": "BOLL5L61TERRA", - "baselineMaxLoadingPct": 172.6, - "description": "January — Monday evening. Loss of BOLL5L61TERRA drives a worst-case 172.6% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BVIL7L71GAUGL", + "contingencyLabel": "BVIL7L71GAUGL", + "baselineMaxLoadingPct": 132.7, + "description": "January — Monday evening. Loss of BVIL7L71GAUGL drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_5a3fb3", - "label": "January — Monday evening — BORT L62MOLE", + "id": "s_e4e81e29_43dc87", + "label": "January — Monday evening — BVILXL72GAUGL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BORT L62MOLE", - "contingencyLabel": "BORT L62MOLE", - "baselineMaxLoadingPct": 106.2, - "description": "January — Monday evening. Loss of BORT L62MOLE drives a worst-case 106.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BVILXL72GAUGL", + "contingencyLabel": "BVILXL72GAUGL", + "baselineMaxLoadingPct": 132.7, + "description": "January — Monday evening. Loss of BVILXL72GAUGL drives a worst-case 132.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_3539e9", - "label": "January — Monday evening — BREUIL71RUEYR", + "id": "s_e4e81e29_f435dc", + "label": "January — Monday evening — BXRE6L61CHAIN", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "BREUIL71RUEYR", - "contingencyLabel": "BREUIL71RUEYR", - "baselineMaxLoadingPct": 113.5, - "description": "January — Monday evening. Loss of BREUIL71RUEYR drives a worst-case 113.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "BXRE6L61CHAIN", + "contingencyLabel": "BXRE6L61CHAIN", + "baselineMaxLoadingPct": 103.3, + "description": "January — Monday evening. Loss of BXRE6L61CHAIN drives a worst-case 103.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_b0ec78", @@ -6781,70 +6660,147 @@ "description": "January — Monday evening. Loss of CHARPL71GREPI drives a worst-case 118.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_43f30c", - "label": "January — Monday evening — CHARPL72GREPI", + "id": "s_e4e81e29_43f30c", + "label": "January — Monday evening — CHARPL72GREPI", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CHARPL72GREPI", + "contingencyLabel": "CHARPL72GREPI", + "baselineMaxLoadingPct": 118.3, + "description": "January — Monday evening. Loss of CHARPL72GREPI drives a worst-case 118.3% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_2e99fd", + "label": "January — Monday evening — CHASTL61ZDONZ", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CHASTL61ZDONZ", + "contingencyLabel": "CHASTL61ZDONZ", + "baselineMaxLoadingPct": 104.4, + "description": "January — Monday evening. Loss of CHASTL61ZDONZ drives a worst-case 104.4% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_4e9665", + "label": "January — Monday evening — COLAYL61DONZA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "COLAYL61DONZA", + "contingencyLabel": "COLAYL61DONZA", + "baselineMaxLoadingPct": 117.1, + "description": "January — Monday evening. Loss of COLAYL61DONZA drives a worst-case 117.1% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_523f23", + "label": "January — Monday evening — CORMEL61PERRE", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CORMEL61PERRE", + "contingencyLabel": "CORMEL61PERRE", + "baselineMaxLoadingPct": 129.9, + "description": "January — Monday evening. Loss of CORMEL61PERRE drives a worst-case 129.9% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_8240b3", + "label": "January — Monday evening — CSLLEL61E.BOT", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CSLLEL61E.BOT", + "contingencyLabel": "CSLLEL61E.BOT", + "baselineMaxLoadingPct": 133.0, + "description": "January — Monday evening. Loss of CSLLEL61E.BOT drives a worst-case 133.0% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_a42b1e", + "label": "January — Monday evening — CSLLEL61ESCAI", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CSLLEL61ESCAI", + "contingencyLabel": "CSLLEL61ESCAI", + "baselineMaxLoadingPct": 132.6, + "description": "January — Monday evening. Loss of CSLLEL61ESCAI drives a worst-case 132.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_27cf89", + "label": "January — Monday evening — CTAURL61ZVILA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "CTAURL61ZVILA", + "contingencyLabel": "CTAURL61ZVILA", + "baselineMaxLoadingPct": 132.6, + "description": "January — Monday evening. Loss of CTAURL61ZVILA drives a worst-case 132.6% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_25b2bf", + "label": "January — Monday evening — CUBNEL71DONZA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CHARPL72GREPI", - "contingencyLabel": "CHARPL72GREPI", - "baselineMaxLoadingPct": 118.3, - "description": "January — Monday evening. Loss of CHARPL72GREPI drives a worst-case 118.3% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "CUBNEL71DONZA", + "contingencyLabel": "CUBNEL71DONZA", + "baselineMaxLoadingPct": 111.9, + "description": "January — Monday evening. Loss of CUBNEL71DONZA drives a worst-case 111.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_2e99fd", - "label": "January — Monday evening — CHASTL61ZDONZ", + "id": "s_e4e81e29_9c5ba0", + "label": "January — Monday evening — CUBNEL72DONZA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CHASTL61ZDONZ", - "contingencyLabel": "CHASTL61ZDONZ", - "baselineMaxLoadingPct": 104.4, - "description": "January — Monday evening. Loss of CHASTL61ZDONZ drives a worst-case 104.4% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "CUBNEL72DONZA", + "contingencyLabel": "CUBNEL72DONZA", + "baselineMaxLoadingPct": 112.1, + "description": "January — Monday evening. Loss of CUBNEL72DONZA drives a worst-case 112.1% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_4e9665", - "label": "January — Monday evening — COLAYL61DONZA", + "id": "s_e4e81e29_3bf176", + "label": "January — Monday evening — DAMBRL71GATI5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "COLAYL61DONZA", - "contingencyLabel": "COLAYL61DONZA", - "baselineMaxLoadingPct": 117.1, - "description": "January — Monday evening. Loss of COLAYL61DONZA drives a worst-case 117.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "DAMBRL71GATI5", + "contingencyLabel": "DAMBRL71GATI5", + "baselineMaxLoadingPct": 104.8, + "description": "January — Monday evening. Loss of DAMBRL71GATI5 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_c31d02", - "label": "January — Monday evening — CPNIEL61PARIS", + "id": "s_e4e81e29_17cb98", + "label": "January — Monday evening — DAMBRL71VERGE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CPNIEL61PARIS", - "contingencyLabel": "CPNIEL61PARIS", - "baselineMaxLoadingPct": 110.5, - "description": "January — Monday evening. Loss of CPNIEL61PARIS drives a worst-case 110.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "DAMBRL71VERGE", + "contingencyLabel": "DAMBRL71VERGE", + "baselineMaxLoadingPct": 103.7, + "description": "January — Monday evening. Loss of DAMBRL71VERGE drives a worst-case 103.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_3f4713", - "label": "January — Monday evening — CPNIEL61SELF2", + "id": "s_e4e81e29_f2bf6c", + "label": "January — Monday evening — DAMBRL72GATI5", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CPNIEL61SELF2", - "contingencyLabel": "CPNIEL61SELF2", - "baselineMaxLoadingPct": 110.4, - "description": "January — Monday evening. Loss of CPNIEL61SELF2 drives a worst-case 110.4% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "DAMBRL72GATI5", + "contingencyLabel": "DAMBRL72GATI5", + "baselineMaxLoadingPct": 104.8, + "description": "January — Monday evening. Loss of DAMBRL72GATI5 drives a worst-case 104.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_c2556e", - "label": "January — Monday evening — CPNIEL63SELF2", + "id": "s_e4e81e29_bd6579", + "label": "January — Monday evening — DAMBRL72VERGE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "CPNIEL63SELF2", - "contingencyLabel": "CPNIEL63SELF2", - "baselineMaxLoadingPct": 110.4, - "description": "January — Monday evening. Loss of CPNIEL63SELF2 drives a worst-case 110.4% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "DAMBRL72VERGE", + "contingencyLabel": "DAMBRL72VERGE", + "baselineMaxLoadingPct": 103.7, + "description": "January — Monday evening. Loss of DAMBRL72VERGE drives a worst-case 103.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_5a16f9", @@ -6857,17 +6813,6 @@ "baselineMaxLoadingPct": 132.5, "description": "January — Monday evening. Loss of DONZAL72GOLF5 drives a worst-case 132.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_9147bf", - "label": "January — Monday evening — EGUZOL61MOUS5", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "EGUZOL61MOUS5", - "contingencyLabel": "EGUZOL61MOUS5", - "baselineMaxLoadingPct": 102.2, - "description": "January — Monday evening. Loss of EGUZOL61MOUS5 drives a worst-case 102.2% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_84a7e2", "label": "January — Monday evening — EGUZOL61MTLUC", @@ -6891,37 +6836,15 @@ "description": "January — Monday evening. Loss of EGUZOL71RUEYR drives a worst-case 116.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_c5f106", - "label": "January — Monday evening — GARCHL61SSELO", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "GARCHL61SSELO", - "contingencyLabel": "GARCHL61SSELO", - "baselineMaxLoadingPct": 111.1, - "description": "January — Monday evening. Loss of GARCHL61SSELO drives a worst-case 111.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_ea6086", - "label": "January — Monday evening — GATI5L71GAUGL", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "GATI5L71GAUGL", - "contingencyLabel": "GATI5L71GAUGL", - "baselineMaxLoadingPct": 103.1, - "description": "January — Monday evening. Loss of GATI5L71GAUGL drives a worst-case 103.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, - { - "id": "s_e4e81e29_40a62f", - "label": "January — Monday evening — GATI5L72GAUGL", + "id": "s_e4e81e29_c445b6", + "label": "January — Monday evening — FLAMAL72MENUE", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "GATI5L72GAUGL", - "contingencyLabel": "GATI5L72GAUGL", - "baselineMaxLoadingPct": 103.1, - "description": "January — Monday evening. Loss of GATI5L72GAUGL drives a worst-case 103.1% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "FLAMAL72MENUE", + "contingencyLabel": "FLAMAL72MENUE", + "baselineMaxLoadingPct": 132.9, + "description": "January — Monday evening. Loss of FLAMAL72MENUE drives a worst-case 132.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_d0dd66", @@ -6934,17 +6857,6 @@ "baselineMaxLoadingPct": 110.5, "description": "January — Monday evening. Loss of GAUDIL71ISSEL drives a worst-case 110.5% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_81ed63", - "label": "January — Monday evening — GAUDIL71TAMAR", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "GAUDIL71TAMAR", - "contingencyLabel": "GAUDIL71TAMAR", - "baselineMaxLoadingPct": 120.6, - "description": "January — Monday evening. Loss of GAUDIL71TAMAR drives a worst-case 120.6% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_50cb18", "label": "January — Monday evening — GAUDIL72ISSEL", @@ -6956,17 +6868,6 @@ "baselineMaxLoadingPct": 120.9, "description": "January — Monday evening. Loss of GAUDIL72ISSEL drives a worst-case 120.9% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_3278f8", - "label": "January — Monday evening — GAUDIL72TAMAR", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "GAUDIL72TAMAR", - "contingencyLabel": "GAUDIL72TAMAR", - "baselineMaxLoadingPct": 120.6, - "description": "January — Monday evening. Loss of GAUDIL72TAMAR drives a worst-case 120.6% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_e7488d", "label": "January — Monday evening — GROSNL71SSV.O", @@ -7000,17 +6901,6 @@ "baselineMaxLoadingPct": 119.2, "description": "January — Monday evening. Loss of ISSELL72VERFE drives a worst-case 119.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_bc4e0d", - "label": "January — Monday evening — ISSOIL61LIGNA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "ISSOIL61LIGNA", - "contingencyLabel": "ISSOIL61LIGNA", - "baselineMaxLoadingPct": 103.5, - "description": "January — Monday evening. Loss of ISSOIL61LIGNA drives a worst-case 103.5% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_ac2ea0", "label": "January — Monday evening — JOUX L61MEUNI", @@ -7033,17 +6923,6 @@ "baselineMaxLoadingPct": 104.7, "description": "January — Monday evening. Loss of L.CE2L61ZTALA drives a worst-case 104.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, - { - "id": "s_e4e81e29_161333", - "label": "January — Monday evening — LIGNAL61RULHA", - "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", - "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", - "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "LIGNAL61RULHA", - "contingencyLabel": "LIGNAL61RULHA", - "baselineMaxLoadingPct": 114.1, - "description": "January — Monday evening. Loss of LIGNAL61RULHA drives a worst-case 114.1% line loading. Bring every monitored line back under the 95% monitoring limit." - }, { "id": "s_e4e81e29_0c5462", "label": "January — Monday evening — MARMAL61PAUDY", @@ -7100,48 +6979,48 @@ "description": "January — Monday evening. Loss of MOUS5L61PAUDY drives a worst-case 113.2% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_3baec7", - "label": "January — Monday evening — MTEZ5L71RUEYR", + "id": "s_e4e81e29_b01fc8", + "label": "January — Monday evening — MTAG5L61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "MTEZ5L71RUEYR", - "contingencyLabel": "MTEZ5L71RUEYR", - "baselineMaxLoadingPct": 103.5, - "description": "January — Monday evening. Loss of MTEZ5L71RUEYR drives a worst-case 103.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "MTAG5L61ZVILA", + "contingencyLabel": "MTAG5L61ZVILA", + "baselineMaxLoadingPct": 138.0, + "description": "January — Monday evening. Loss of MTAG5L61ZVILA drives a worst-case 138.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_65b7d5", - "label": "January — Monday evening — MTLUCL61MTVIC", + "id": "s_e4e81e29_3474b2", + "label": "January — Monday evening — P.CORL71SSAL7", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "MTLUCL61MTVIC", - "contingencyLabel": "MTLUCL61MTVIC", - "baselineMaxLoadingPct": 137.5, - "description": "January — Monday evening. Loss of MTLUCL61MTVIC drives a worst-case 137.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.CORL71SSAL7", + "contingencyLabel": "P.CORL71SSAL7", + "baselineMaxLoadingPct": 132.8, + "description": "January — Monday evening. Loss of P.CORL71SSAL7 drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_a82125", - "label": "January — Monday evening — O.CHAL61RUEYR", + "id": "s_e4e81e29_431798", + "label": "January — Monday evening — P.CORL72SSAL7", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "O.CHAL61RUEYR", - "contingencyLabel": "O.CHAL61RUEYR", - "baselineMaxLoadingPct": 98.5, - "description": "January — Monday evening. Loss of O.CHAL61RUEYR drives a worst-case 98.5% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.CORL72SSAL7", + "contingencyLabel": "P.CORL72SSAL7", + "baselineMaxLoadingPct": 132.8, + "description": "January — Monday evening. Loss of P.CORL72SSAL7 drives a worst-case 132.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_29a9b4", - "label": "January — Monday evening — P.ORGL61RQROU", + "id": "s_e4e81e29_682401", + "label": "January — Monday evening — P.ORGL71TAVEL", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "P.ORGL61RQROU", - "contingencyLabel": "P.ORGL61RQROU", - "baselineMaxLoadingPct": 162.4, - "description": "January — Monday evening. Loss of P.ORGL61RQROU drives a worst-case 162.4% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "P.ORGL71TAVEL", + "contingencyLabel": "P.ORGL71TAVEL", + "baselineMaxLoadingPct": 145.7, + "description": "January — Monday evening. Loss of P.ORGL71TAVEL drives a worst-case 145.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_6d8ce0", @@ -7166,26 +7045,48 @@ "description": "January — Monday evening. Loss of PONTEL62REALT drives a worst-case 141.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_090e7b", - "label": "January — Monday evening — ROGNAL61RQROU", + "id": "s_e4e81e29_b9d93c", + "label": "January — Monday evening — POUGEL61SSVIC", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "ROGNAL61RQROU", - "contingencyLabel": "ROGNAL61RQROU", - "baselineMaxLoadingPct": 151.8, - "description": "January — Monday evening. Loss of ROGNAL61RQROU drives a worst-case 151.8% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "POUGEL61SSVIC", + "contingencyLabel": "POUGEL61SSVIC", + "baselineMaxLoadingPct": 103.6, + "description": "January — Monday evening. Loss of POUGEL61SSVIC drives a worst-case 103.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, { - "id": "s_e4e81e29_8b20f7", - "label": "January — Monday evening — SAUS5L61VLEVA", + "id": "s_e4e81e29_4f46bb", + "label": "January — Monday evening — RQROUL61ZVILA", "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", - "contingencyElementId": "SAUS5L61VLEVA", - "contingencyLabel": "SAUS5L61VLEVA", - "baselineMaxLoadingPct": 121.2, - "description": "January — Monday evening. Loss of SAUS5L61VLEVA drives a worst-case 121.2% line loading. Bring every monitored line back under the 95% monitoring limit." + "contingencyElementId": "RQROUL61ZVILA", + "contingencyLabel": "RQROUL61ZVILA", + "baselineMaxLoadingPct": 148.0, + "description": "January — Monday evening. Loss of RQROUL61ZVILA drives a worst-case 148.0% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_544784", + "label": "January — Monday evening — SSESTL61SSTUL", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "SSESTL61SSTUL", + "contingencyLabel": "SSESTL61SSTUL", + "baselineMaxLoadingPct": 134.3, + "description": "January — Monday evening. Loss of SSESTL61SSTUL drives a worst-case 134.3% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_e4e81e29_9b960f", + "label": "January — Monday evening — T.VICL61ZMENT", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "T.VICL61ZMENT", + "contingencyLabel": "T.VICL61ZMENT", + "baselineMaxLoadingPct": 136.3, + "description": "January — Monday evening. Loss of T.VICL61ZMENT drives a worst-case 136.3% line loading. Bring every monitored line back under the 95% monitoring limit." }, { "id": "s_e4e81e29_00de85", diff --git a/scripts/game_mode/test_rte7000_game_mode.py b/scripts/game_mode/test_rte7000_game_mode.py index 6f33e5c8..c1c293af 100644 --- a/scripts/game_mode/test_rte7000_game_mode.py +++ b/scripts/game_mode/test_rte7000_game_mode.py @@ -120,7 +120,7 @@ def test_frontend_json_matches_the_graded_database(): for d in DIFFICULTIES: assert len(fe[d]) == len(db_by_diff[d]), f"{d} count drift DB vs frontend JSON" assert {s["id"] for s in fe[d]} == {s["id"] for s in db_by_diff[d]} - assert sum(len(fe[d]) for d in DIFFICULTIES) == db["n_scenarios"] == 656 + assert sum(len(fe[d]) for d in DIFFICULTIES) == db["n_scenarios"] == 647 def test_scenarios_reference_existing_grid_assets(): From 44d5f07918583556264ce88eaed679256e5cc52d Mon Sep 17 00:00:00 2001 From: marota Date: Thu, 23 Jul 2026 07:02:59 +0000 Subject: [PATCH 3/3] =?UTF-8?q?Keep=20all=20converging=20THT=20cases=20?= =?UTF-8?q?=E2=80=94=20drop=20the=20loading-ceiling=20removal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per review: the hard cases that stay above 100% still converge and produce real remedial actions (they're just genuinely hard), so they belong in the game rather than being culled. Remove the 120% best-achievable ceiling; a case is now excluded only if NO action converges at all (none exist in this dataset). Re-adds the 8 previously-dropped hard cases (e.g. ROGNAL61SSCHA). DB: 655 scenarios — easy 457 / medium 80 / hard 118. Regenerates scenarios.json, per-grid graded_contingencies.json and the frontend JSON; networks untouched. Signed-off-by: marota --- .../grid_437818d6/graded_contingencies.json | 46 ++- .../grid_5384e039/graded_contingencies.json | 1 - .../grid_5fc376c7/graded_contingencies.json | 296 +++++++++++++- .../grid_e4e81e29/graded_contingencies.json | 38 +- data/rte7000_tht/scenarios.json | 384 +++++++++++++++++- frontend/src/game/rte7000Presets.test.ts | 6 +- frontend/src/game/rte7000Scenarios.json | 88 ++++ scripts/game_mode/test_rte7000_game_mode.py | 2 +- 8 files changed, 849 insertions(+), 12 deletions(-) diff --git a/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json b/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json index 3524f827..a4694271 100644 --- a/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_437818d6/graded_contingencies.json @@ -3,7 +3,6 @@ "period_title": "March — Monday morning", "monitoring_factor": 0.95, "threshold_pct": 95.0, - "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_437818d6_a71150", @@ -1768,6 +1767,51 @@ } } }, + { + "id": "s_437818d6_769a3f", + "gridId": "grid_437818d6", + "difficulty": "hard", + "title": "March — Monday morning", + "label": "March — Monday morning — LAVERL61PONTE", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "LAVERL61PONTE", + "contingencyLabel": "LAVERL61PONTE", + "baselineMaxLoadingPct": 125.1, + "nOverloadedLines": 2, + "overloadedLines": [ + "PONTEL61REALT", + "PONTEL62REALT" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 120.0, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.2, + "best_unitary": { + "max_rho": 1.226, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_SEPTEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.2, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 1, + "id": "open_coupler_SEPTEP6+disco_DURANL61REALT", + "est_max_rho": 1.201 + } + } + }, { "id": "s_437818d6_14bf53", "gridId": "grid_437818d6", diff --git a/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json b/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json index 234eb4a9..c076aac5 100644 --- a/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_5384e039/graded_contingencies.json @@ -3,7 +3,6 @@ "period_title": "January — Monday evening", "monitoring_factor": 0.95, "threshold_pct": 95.0, - "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_5384e039_0d0b4d", diff --git a/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json b/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json index 174532fd..ef56b623 100644 --- a/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_5fc376c7/graded_contingencies.json @@ -3,7 +3,6 @@ "period_title": "November — Monday evening", "monitoring_factor": 0.95, "threshold_pct": 95.0, - "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_5fc376c7_721c95", @@ -3730,6 +3729,56 @@ } } }, + { + "id": "s_5fc376c7_6b287c", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — DARSEL61RASSU", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "DARSEL61RASSU", + "contingencyLabel": "DARSEL61RASSU", + "baselineMaxLoadingPct": 127.5, + "nOverloadedLines": 7, + "overloadedLines": [ + "FEUILL61SSCHA", + "LAVERL61SELF3", + "LAVERL61SEPTE", + "LAVERL62SELF3", + "ROGNAL61SSCHA", + "P.ORGY761", + "TRI.PY76A" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 125.3, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.253, + "best_unitary": { + "max_rho": 1.263, + "islanded": false, + "reduces": false, + "n_over_after": 7, + "converged": true, + "resolves": false, + "id": "load_shedding_ROGNAY632", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.253, + "islanded": false, + "reduces": false, + "n_over_after": 7, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_ROGNAY632+redispatch_SSCHA6GROUPE2", + "est_max_rho": 1.253 + } + } + }, { "id": "s_5fc376c7_0f4fa2", "gridId": "grid_5fc376c7", @@ -4194,6 +4243,55 @@ "solving_pair_rank": 3 } }, + { + "id": "s_5fc376c7_9598b8", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — FEUILL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "FEUILL61SSCHA", + "contingencyLabel": "FEUILL61SSCHA", + "baselineMaxLoadingPct": 159.2, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "LAVERL61SELF3", + "LAVERL61SEPTE", + "LAVERL62SELF3", + "RASSUL61S.AIR", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 144.2, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.442, + "best_unitary": { + "max_rho": 1.456, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.442, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", + "est_max_rho": 1.453 + } + } + }, { "id": "s_5fc376c7_0cb001", "gridId": "grid_5fc376c7", @@ -5749,6 +5847,153 @@ } } }, + { + "id": "s_5fc376c7_0563a4", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — LAVERL61SELF3", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL61SELF3", + "contingencyLabel": "LAVERL61SELF3", + "baselineMaxLoadingPct": 164.3, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "FEUILL61SSCHA", + "P.ORGL61RQROU", + "RASSUL61S.AIR", + "ROGNAL61SSCHA", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 151.7, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.517, + "best_unitary": { + "max_rho": 1.554, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "load_shedding_RASSUY631", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.517, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "rank": 1, + "id": "disco_DARSEL62FEUIL+load_shedding_RASSUY631", + "est_max_rho": 1.517 + } + } + }, + { + "id": "s_5fc376c7_14bf53", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — LAVERL61SEPTE", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL61SEPTE", + "contingencyLabel": "LAVERL61SEPTE", + "baselineMaxLoadingPct": 164.3, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "FEUILL61SSCHA", + "P.ORGL61RQROU", + "RASSUL61S.AIR", + "ROGNAL61SSCHA", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 151.7, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.517, + "best_unitary": { + "max_rho": 1.554, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "load_shedding_RASSUY631", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.517, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "rank": 1, + "id": "disco_DARSEL62FEUIL+load_shedding_RASSUY631", + "est_max_rho": 1.517 + } + } + }, + { + "id": "s_5fc376c7_4e6e75", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — LAVERL62SELF3", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL62SELF3", + "contingencyLabel": "LAVERL62SELF3", + "baselineMaxLoadingPct": 164.3, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "FEUILL61SSCHA", + "P.ORGL61RQROU", + "RASSUL61S.AIR", + "ROGNAL61SSCHA", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 151.7, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.517, + "best_unitary": { + "max_rho": 1.554, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "load_shedding_RASSUY631", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.517, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "rank": 1, + "id": "disco_DARSEL62FEUIL+load_shedding_RASSUY631", + "est_max_rho": 1.517 + } + } + }, { "id": "s_5fc376c7_41fc9d", "gridId": "grid_5fc376c7", @@ -7558,6 +7803,55 @@ } } }, + { + "id": "s_5fc376c7_f87211", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — ROGNAL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ROGNAL61SSCHA", + "contingencyLabel": "ROGNAL61SSCHA", + "baselineMaxLoadingPct": 169.5, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "LAVERL61SELF3", + "LAVERL61SEPTE", + "LAVERL62SELF3", + "RASSUL61S.AIR", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 153.1, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.531, + "best_unitary": { + "max_rho": 1.552, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.531, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", + "est_max_rho": 1.548 + } + } + }, { "id": "s_5fc376c7_a91fd1", "gridId": "grid_5fc376c7", diff --git a/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json b/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json index b6558326..db4f9971 100644 --- a/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json +++ b/data/rte7000_tht/grids/grid_e4e81e29/graded_contingencies.json @@ -3,7 +3,6 @@ "period_title": "January — Monday evening", "monitoring_factor": 0.95, "threshold_pct": 95.0, - "remove_ceiling_pct": 120.0, "scenarios": [ { "id": "s_e4e81e29_6d341c", @@ -5645,6 +5644,43 @@ } } }, + { + "id": "s_e4e81e29_08e87d", + "gridId": "grid_e4e81e29", + "difficulty": "hard", + "title": "January — Monday evening", + "label": "January — Monday evening — I.NAPL61OTTMA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "I.NAPL61OTTMA", + "contingencyLabel": "I.NAPL61OTTMA", + "baselineMaxLoadingPct": 131.2, + "nOverloadedLines": 4, + "overloadedLines": [ + "CHAL7L61FESSE", + "CHAL7L61SIERE", + "KEMBSL61OTTMA", + "KEMBSL61SIERE" + ], + "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 130.9, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.309, + "best_unitary": { + "max_rho": 0.288, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, + "id": "open_coupler_FESSEP6", + "family": "open_coupling" + }, + "best_pair": null + } + }, { "id": "s_e4e81e29_0d4e25", "gridId": "grid_e4e81e29", diff --git a/data/rte7000_tht/scenarios.json b/data/rte7000_tht/scenarios.json index 0b5880f8..329a5289 100644 --- a/data/rte7000_tht/scenarios.json +++ b/data/rte7000_tht/scenarios.json @@ -1,15 +1,14 @@ { "grid_family": "RTE7000 France THT", - "description": "Difficulty-graded N-1 scenarios on reconstructed RTE7000 France THT (>=200 kV) operating points. Non-antenna only. Difficulty is the expert recommender's solvability at the 95% monitoring factor, judged by a REAL simulation of each action/combination (islanding-rejecting; pre-existing N-state overloads not caused by the contingency are ignored): EASY = a suggested unitary action truly resolves; MEDIUM = no unitary resolves but a first-identified combination does; HARD = neither. Unplayable cases (no action brings the worst line below 120%) are excluded.", + "description": "Difficulty-graded N-1 scenarios on reconstructed RTE7000 France THT (>=200 kV) operating points. Non-antenna only. Difficulty is the expert recommender's solvability at the 95% monitoring factor, judged by a REAL simulation of each action/combination (islanding-rejecting; pre-existing N-state overloads not caused by the contingency are ignored): EASY = a suggested unitary action truly resolves; MEDIUM = no unitary resolves but a first-identified combination does; HARD = neither. Only cases where no action converges at all are excluded.", "monitoring_factor": 0.95, "threshold_pct": 95.0, - "remove_ceiling_pct": 120.0, "counts": { "easy": 457, "medium": 80, - "hard": 110 + "hard": 118 }, - "n_scenarios": 647, + "n_scenarios": 655, "difficulties": [ "easy", "medium", @@ -7977,6 +7976,56 @@ } } }, + { + "id": "s_5fc376c7_6b287c", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — DARSEL61RASSU", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "DARSEL61RASSU", + "contingencyLabel": "DARSEL61RASSU", + "baselineMaxLoadingPct": 127.5, + "nOverloadedLines": 7, + "overloadedLines": [ + "FEUILL61SSCHA", + "LAVERL61SELF3", + "LAVERL61SEPTE", + "LAVERL62SELF3", + "ROGNAL61SSCHA", + "P.ORGY761", + "TRI.PY76A" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 125.3, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.253, + "best_unitary": { + "max_rho": 1.263, + "islanded": false, + "reduces": false, + "n_over_after": 7, + "converged": true, + "resolves": false, + "id": "load_shedding_ROGNAY632", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.253, + "islanded": false, + "reduces": false, + "n_over_after": 7, + "converged": true, + "resolves": false, + "rank": 1, + "id": "load_shedding_ROGNAY632+redispatch_SSCHA6GROUPE2", + "est_max_rho": 1.253 + } + } + }, { "id": "s_5fc376c7_0f4fa2", "gridId": "grid_5fc376c7", @@ -8441,6 +8490,55 @@ "solving_pair_rank": 3 } }, + { + "id": "s_5fc376c7_9598b8", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — FEUILL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "FEUILL61SSCHA", + "contingencyLabel": "FEUILL61SSCHA", + "baselineMaxLoadingPct": 159.2, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "LAVERL61SELF3", + "LAVERL61SEPTE", + "LAVERL62SELF3", + "RASSUL61S.AIR", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 144.2, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.442, + "best_unitary": { + "max_rho": 1.456, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.442, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "rank": 5, + "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", + "est_max_rho": 1.453 + } + } + }, { "id": "s_5fc376c7_0cb001", "gridId": "grid_5fc376c7", @@ -9996,6 +10094,153 @@ } } }, + { + "id": "s_5fc376c7_0563a4", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — LAVERL61SELF3", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL61SELF3", + "contingencyLabel": "LAVERL61SELF3", + "baselineMaxLoadingPct": 164.3, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "FEUILL61SSCHA", + "P.ORGL61RQROU", + "RASSUL61S.AIR", + "ROGNAL61SSCHA", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 151.7, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.517, + "best_unitary": { + "max_rho": 1.554, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "load_shedding_RASSUY631", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.517, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "rank": 1, + "id": "disco_DARSEL62FEUIL+load_shedding_RASSUY631", + "est_max_rho": 1.517 + } + } + }, + { + "id": "s_5fc376c7_14bf53", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — LAVERL61SEPTE", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL61SEPTE", + "contingencyLabel": "LAVERL61SEPTE", + "baselineMaxLoadingPct": 164.3, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "FEUILL61SSCHA", + "P.ORGL61RQROU", + "RASSUL61S.AIR", + "ROGNAL61SSCHA", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 151.7, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.517, + "best_unitary": { + "max_rho": 1.554, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "load_shedding_RASSUY631", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.517, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "rank": 1, + "id": "disco_DARSEL62FEUIL+load_shedding_RASSUY631", + "est_max_rho": 1.517 + } + } + }, + { + "id": "s_5fc376c7_4e6e75", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — LAVERL62SELF3", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL62SELF3", + "contingencyLabel": "LAVERL62SELF3", + "baselineMaxLoadingPct": 164.3, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "FEUILL61SSCHA", + "P.ORGL61RQROU", + "RASSUL61S.AIR", + "ROGNAL61SSCHA", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 151.7, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.517, + "best_unitary": { + "max_rho": 1.554, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "id": "load_shedding_RASSUY631", + "family": "load_shedding" + }, + "best_pair": { + "max_rho": 1.517, + "islanded": false, + "reduces": false, + "n_over_after": 6, + "converged": true, + "resolves": false, + "rank": 1, + "id": "disco_DARSEL62FEUIL+load_shedding_RASSUY631", + "est_max_rho": 1.517 + } + } + }, { "id": "s_5fc376c7_41fc9d", "gridId": "grid_5fc376c7", @@ -11805,6 +12050,55 @@ } } }, + { + "id": "s_5fc376c7_f87211", + "gridId": "grid_5fc376c7", + "difficulty": "hard", + "title": "November — Monday evening", + "label": "November — Monday evening — ROGNAL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ROGNAL61SSCHA", + "contingencyLabel": "ROGNAL61SSCHA", + "baselineMaxLoadingPct": 169.5, + "nOverloadedLines": 6, + "overloadedLines": [ + "DARSEL61RASSU", + "LAVERL61SELF3", + "LAVERL61SEPTE", + "LAVERL62SELF3", + "RASSUL61S.AIR", + "RQROUL61S.AIR" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 153.1, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.531, + "best_unitary": { + "max_rho": 1.552, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "id": "open_coupler_RQROUP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.531, + "islanded": false, + "reduces": false, + "n_over_after": 4, + "converged": true, + "resolves": false, + "rank": 3, + "id": "open_coupler_RQROUP6+open_coupler_ROGNAP6", + "est_max_rho": 1.548 + } + } + }, { "id": "s_5fc376c7_a91fd1", "gridId": "grid_5fc376c7", @@ -14767,6 +15061,51 @@ } } }, + { + "id": "s_437818d6_769a3f", + "gridId": "grid_437818d6", + "difficulty": "hard", + "title": "March — Monday morning", + "label": "March — Monday morning — LAVERL61PONTE", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "LAVERL61PONTE", + "contingencyLabel": "LAVERL61PONTE", + "baselineMaxLoadingPct": 125.1, + "nOverloadedLines": 2, + "overloadedLines": [ + "PONTEL61REALT", + "PONTEL62REALT" + ], + "nActionsDiscovered": 15, + "bestAchievableLoadingPct": 120.0, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.2, + "best_unitary": { + "max_rho": 1.226, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "id": "open_coupler_SEPTEP6", + "family": "open_coupling" + }, + "best_pair": { + "max_rho": 1.2, + "islanded": false, + "reduces": true, + "n_over_after": 2, + "converged": true, + "resolves": false, + "rank": 1, + "id": "open_coupler_SEPTEP6+disco_DURANL61REALT", + "est_max_rho": 1.201 + } + } + }, { "id": "s_437818d6_14bf53", "gridId": "grid_437818d6", @@ -21741,6 +22080,43 @@ } } }, + { + "id": "s_e4e81e29_08e87d", + "gridId": "grid_e4e81e29", + "difficulty": "hard", + "title": "January — Monday evening", + "label": "January — Monday evening — I.NAPL61OTTMA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "I.NAPL61OTTMA", + "contingencyLabel": "I.NAPL61OTTMA", + "baselineMaxLoadingPct": 131.2, + "nOverloadedLines": 4, + "overloadedLines": [ + "CHAL7L61FESSE", + "CHAL7L61SIERE", + "KEMBSL61OTTMA", + "KEMBSL61SIERE" + ], + "nActionsDiscovered": 4, + "bestAchievableLoadingPct": 130.9, + "solution": { + "kind": "none", + "best_nonisl_max_rho": 1.309, + "best_unitary": { + "max_rho": 0.288, + "islanded": true, + "reduces": true, + "n_over_after": 0, + "converged": true, + "resolves": false, + "id": "open_coupler_FESSEP6", + "family": "open_coupling" + }, + "best_pair": null + } + }, { "id": "s_e4e81e29_0d4e25", "gridId": "grid_e4e81e29", diff --git a/frontend/src/game/rte7000Presets.test.ts b/frontend/src/game/rte7000Presets.test.ts index c9ca06d8..9533b60f 100644 --- a/frontend/src/game/rte7000Presets.test.ts +++ b/frontend/src/game/rte7000Presets.test.ts @@ -31,12 +31,12 @@ describe('RTE7000 France THT scenario data', () => { for (const t of RTE7000_TIERS) expect(t.label).toBeTruthy(); }); - it('matches the graded database snapshot (647 = 457 easy / 80 medium / 110 hard)', () => { + it('matches the graded database snapshot (655 = 457 easy / 80 medium / 118 hard)', () => { expect(RTE7000_EASY.length).toBe(457); expect(RTE7000_MEDIUM.length).toBe(80); - expect(RTE7000_HARD.length).toBe(110); + expect(RTE7000_HARD.length).toBe(118); const total = RTE7000_EASY.length + RTE7000_MEDIUM.length + RTE7000_HARD.length; - expect(total).toBe(647); + expect(total).toBe(655); }); it('every study is playable (network + actions + layout + contingency)', () => { diff --git a/frontend/src/game/rte7000Scenarios.json b/frontend/src/game/rte7000Scenarios.json index 93bd9b9f..7c9ce24b 100644 --- a/frontend/src/game/rte7000Scenarios.json +++ b/frontend/src/game/rte7000Scenarios.json @@ -6230,6 +6230,17 @@ "baselineMaxLoadingPct": 108.6, "description": "November — Monday evening. Loss of DAMBRL72GATI5 drives a worst-case 108.6% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_6b287c", + "label": "November — Monday evening — DARSEL61RASSU", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "DARSEL61RASSU", + "contingencyLabel": "DARSEL61RASSU", + "baselineMaxLoadingPct": 127.5, + "description": "November — Monday evening. Loss of DARSEL61RASSU drives a worst-case 127.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_313e74", "label": "November — Monday evening — DONZAL71GOLF5", @@ -6241,6 +6252,17 @@ "baselineMaxLoadingPct": 120.0, "description": "November — Monday evening. Loss of DONZAL71GOLF5 drives a worst-case 120.0% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_9598b8", + "label": "November — Monday evening — FEUILL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "FEUILL61SSCHA", + "contingencyLabel": "FEUILL61SSCHA", + "baselineMaxLoadingPct": 159.2, + "description": "November — Monday evening. Loss of FEUILL61SSCHA drives a worst-case 159.2% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_0cb001", "label": "November — Monday evening — FLAMAL71MENUE", @@ -6285,6 +6307,39 @@ "baselineMaxLoadingPct": 124.4, "description": "November — Monday evening. Loss of LAVERL61PONTE drives a worst-case 124.4% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_0563a4", + "label": "November — Monday evening — LAVERL61SELF3", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL61SELF3", + "contingencyLabel": "LAVERL61SELF3", + "baselineMaxLoadingPct": 164.3, + "description": "November — Monday evening. Loss of LAVERL61SELF3 drives a worst-case 164.3% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_14bf53", + "label": "November — Monday evening — LAVERL61SEPTE", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL61SEPTE", + "contingencyLabel": "LAVERL61SEPTE", + "baselineMaxLoadingPct": 164.3, + "description": "November — Monday evening. Loss of LAVERL61SEPTE drives a worst-case 164.3% line loading. Bring every monitored line back under the 95% monitoring limit." + }, + { + "id": "s_5fc376c7_4e6e75", + "label": "November — Monday evening — LAVERL62SELF3", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "LAVERL62SELF3", + "contingencyLabel": "LAVERL62SELF3", + "baselineMaxLoadingPct": 164.3, + "description": "November — Monday evening. Loss of LAVERL62SELF3 drives a worst-case 164.3% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_91f681", "label": "November — Monday evening — MAMBEL71SIERE", @@ -6362,6 +6417,17 @@ "baselineMaxLoadingPct": 136.8, "description": "November — Monday evening. Loss of REVIGL71VIGY drives a worst-case 136.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_5fc376c7_f87211", + "label": "November — Monday evening — ROGNAL61SSCHA", + "networkPath": "data/rte7000_tht/grids/grid_5fc376c7/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_5fc376c7/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_5fc376c7/grid_layout.json", + "contingencyElementId": "ROGNAL61SSCHA", + "contingencyLabel": "ROGNAL61SSCHA", + "baselineMaxLoadingPct": 169.5, + "description": "November — Monday evening. Loss of ROGNAL61SSCHA drives a worst-case 169.5% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_5fc376c7_c1d62c", "label": "November — Monday evening — RQROUL61S.AIR", @@ -6439,6 +6505,17 @@ "baselineMaxLoadingPct": 109.7, "description": "March — Monday morning. Loss of LAVERL61P.BOU drives a worst-case 109.7% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_437818d6_769a3f", + "label": "March — Monday morning — LAVERL61PONTE", + "networkPath": "data/rte7000_tht/grids/grid_437818d6/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_437818d6/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_437818d6/grid_layout.json", + "contingencyElementId": "LAVERL61PONTE", + "contingencyLabel": "LAVERL61PONTE", + "baselineMaxLoadingPct": 125.1, + "description": "March — Monday morning. Loss of LAVERL61PONTE drives a worst-case 125.1% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_437818d6_682401", "label": "March — Monday morning — P.ORGL71TAVEL", @@ -6879,6 +6956,17 @@ "baselineMaxLoadingPct": 98.8, "description": "January — Monday evening. Loss of GROSNL71SSV.O drives a worst-case 98.8% line loading. Bring every monitored line back under the 95% monitoring limit." }, + { + "id": "s_e4e81e29_08e87d", + "label": "January — Monday evening — I.NAPL61OTTMA", + "networkPath": "data/rte7000_tht/grids/grid_e4e81e29/network.xiidm", + "actionFilePath": "data/rte7000_tht/grids/grid_e4e81e29/actions.json", + "layoutPath": "data/rte7000_tht/grids/grid_e4e81e29/grid_layout.json", + "contingencyElementId": "I.NAPL61OTTMA", + "contingencyLabel": "I.NAPL61OTTMA", + "baselineMaxLoadingPct": 131.2, + "description": "January — Monday evening. Loss of I.NAPL61OTTMA drives a worst-case 131.2% line loading. Bring every monitored line back under the 95% monitoring limit." + }, { "id": "s_e4e81e29_0d4e25", "label": "January — Monday evening — ISSELL71VERFE", diff --git a/scripts/game_mode/test_rte7000_game_mode.py b/scripts/game_mode/test_rte7000_game_mode.py index c1c293af..8d2b563f 100644 --- a/scripts/game_mode/test_rte7000_game_mode.py +++ b/scripts/game_mode/test_rte7000_game_mode.py @@ -120,7 +120,7 @@ def test_frontend_json_matches_the_graded_database(): for d in DIFFICULTIES: assert len(fe[d]) == len(db_by_diff[d]), f"{d} count drift DB vs frontend JSON" assert {s["id"] for s in fe[d]} == {s["id"] for s in db_by_diff[d]} - assert sum(len(fe[d]) for d in DIFFICULTIES) == db["n_scenarios"] == 647 + assert sum(len(fe[d]) for d in DIFFICULTIES) == db["n_scenarios"] == 655 def test_scenarios_reference_existing_grid_assets():