From f55a82b1a90318b3dffafb63c655f91b5159ca01 Mon Sep 17 00:00:00 2001 From: CARON Alice Date: Mon, 25 Nov 2024 14:26:29 +0100 Subject: [PATCH 1/3] Complete docs about available security analysis remedial actions Signed-off-by: CARON Alice --- docs/simulation/security/index.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/docs/simulation/security/index.md b/docs/simulation/security/index.md index 8209612700c..0cae59ed915 100644 --- a/docs/simulation/security/index.md +++ b/docs/simulation/security/index.md @@ -58,17 +58,19 @@ connected to a given bus bar section. Remedial actions are actions that are applied when limit violations occur. Supported actions are: -- Open or close a switch -- Open or close a terminal -- Change the tap of a tap changer (phase or ratio) -- Change the active and/or reactive power of a load (by setting the values, or defining changes in value or percentage) -- Change the section of a shunt compensator -- Change the regulation status of a tap changer -- Change `targetP`, `targetQ`, regulation status and `targetV` of a generator -- Change the regulation mode of a static var compensator and its associated set point. -- Enabled or disabled AC emulation for HVDC line (with the possibility to change `P0` and `droop` for AC emulation and +- `LoadAction` Change the relative of absolute `P0` and/or `Q0` of a load +- `DanglingLineAction` Change the relative of absolute `P0` and/or `Q0` of a dangling line +- `SwitchAction` Open or close a switch +- `TerminalsConnectionAction` Open or close a terminal +- Change the tap of a tap changer (phase `PhaseTapChangerTapPositionAction` or ratio `RatioTapChangerTapPositionAction`) +- `PercentChangeLoadAction` Change the active and/or reactive power of a load (by setting the values, or defining changes in value or percentage) +- `ShuntCompensatorPositionAction` Change the section of a shunt compensator +- Change the regulation status of a tap changer (phase `PhaseTapChangerRegulationAction` or ratio `RatioTapChangerRegulationAction`) +- `GeneratorAction` Change `targetP`, `targetQ`, regulation status and `targetV` of a generator +- `StaticVarCompensatorAction` Change the regulation mode of a static var compensator and its associated set point. +- `HvdcAction` Enabled or disabled AC emulation for HVDC line (with the possibility to change `P0` and `droop` for AC emulation and active power set point and converter mode for set point operating mode) -- Change the interchange target of an area by specifying a new interchange target in MW. +- `AreaInterchangeTargetAction` Change the interchange target of an area by specifying a new interchange target in MW. Remedial actions can be *preventive* or *curative*: @@ -77,6 +79,8 @@ Remedial actions can be *preventive* or *curative*: - curative: these actions are implemented after a violation occurs, for example, if the flow of the monitored line is greater than `100%`. +Note: you can find the current list of remedial actions implemented in the PowSyBl Open Load Flow security analysis provider in the [PowSyBl Open Load Flow documentation](inv:powsyblopenloadflow:*:*#security/inputs). + ### Conditions Actions are applied if a condition is met. The conditions can be diversified and extended in the future: From c6c6d6e619b29fbef53674da4551c12eca074974 Mon Sep 17 00:00:00 2001 From: CARON Alice Date: Tue, 14 Jan 2025 09:40:12 +0100 Subject: [PATCH 2/3] List doc about remedial actions in an array Signed-off-by: CARON Alice --- docs/simulation/security/index.md | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/docs/simulation/security/index.md b/docs/simulation/security/index.md index 0cae59ed915..4ab5f0c8f56 100644 --- a/docs/simulation/security/index.md +++ b/docs/simulation/security/index.md @@ -58,19 +58,22 @@ connected to a given bus bar section. Remedial actions are actions that are applied when limit violations occur. Supported actions are: -- `LoadAction` Change the relative of absolute `P0` and/or `Q0` of a load -- `DanglingLineAction` Change the relative of absolute `P0` and/or `Q0` of a dangling line -- `SwitchAction` Open or close a switch -- `TerminalsConnectionAction` Open or close a terminal -- Change the tap of a tap changer (phase `PhaseTapChangerTapPositionAction` or ratio `RatioTapChangerTapPositionAction`) -- `PercentChangeLoadAction` Change the active and/or reactive power of a load (by setting the values, or defining changes in value or percentage) -- `ShuntCompensatorPositionAction` Change the section of a shunt compensator -- Change the regulation status of a tap changer (phase `PhaseTapChangerRegulationAction` or ratio `RatioTapChangerRegulationAction`) -- `GeneratorAction` Change `targetP`, `targetQ`, regulation status and `targetV` of a generator -- `StaticVarCompensatorAction` Change the regulation mode of a static var compensator and its associated set point. -- `HvdcAction` Enabled or disabled AC emulation for HVDC line (with the possibility to change `P0` and `droop` for AC emulation and - active power set point and converter mode for set point operating mode) -- `AreaInterchangeTargetAction` Change the interchange target of an area by specifying a new interchange target in MW. +| Action | Description | +|------------------------------------|-----------------------------------------------------------------------------------------------------------------------| +| `LoadAction` | Change the relative of absolute `P0` and/or `Q0` of a load | +| `DanglingLineAction` | Change the relative of absolute `P0` and/or `Q0` of a dangling line | +| `SwitchAction` | Open or close a switch | +| `TerminalsConnectionAction` | Open or close a terminal | +| `PhaseTapChangerTapPositionAction` | Change the tap of a tap changer phase | +| `RatioTapChangerTapPositionAction` | Change the tap of a tap changer ratio | +| `PercentChangeLoadAction` | Change the active and/or reactive power of a load (by setting the values, or defining changes in value or percentage) | +| `ShuntCompensatorPositionAction` | Change the section of a shunt compensator | +| `PhaseTapChangerRegulationAction` | Change the regulation status of a tap changer phase | +| `RatioTapChangerRegulationAction` | Change the regulation status of a tap changer ratio | +| `GeneratorAction` | Change `targetP`, `targetQ`, regulation status and `targetV` of a generator | +| `StaticVarCompensatorAction` | Change the regulation mode of a static var compensator and its associated set point. | +| `HvdcAction` | Enabled or disabled AC emulation for HVDC line (with the possibility to change `P0` and `droop` for AC emulation and active power set point and converter mode for set point operating mode) | +| `AreaInterchangeTargetAction` | Change the interchange target of an area by specifying a new interchange target in MW.| Remedial actions can be *preventive* or *curative*: From 9e64611f87e2a2221b92bb6058604e81158904ae Mon Sep 17 00:00:00 2001 From: CARON Alice Date: Tue, 14 Jan 2025 09:56:09 +0100 Subject: [PATCH 3/3] Clean actions doc descriptions Signed-off-by: CARON Alice --- docs/simulation/security/index.md | 32 +++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/simulation/security/index.md b/docs/simulation/security/index.md index 4ab5f0c8f56..316a57c686f 100644 --- a/docs/simulation/security/index.md +++ b/docs/simulation/security/index.md @@ -58,22 +58,22 @@ connected to a given bus bar section. Remedial actions are actions that are applied when limit violations occur. Supported actions are: -| Action | Description | -|------------------------------------|-----------------------------------------------------------------------------------------------------------------------| -| `LoadAction` | Change the relative of absolute `P0` and/or `Q0` of a load | -| `DanglingLineAction` | Change the relative of absolute `P0` and/or `Q0` of a dangling line | -| `SwitchAction` | Open or close a switch | -| `TerminalsConnectionAction` | Open or close a terminal | -| `PhaseTapChangerTapPositionAction` | Change the tap of a tap changer phase | -| `RatioTapChangerTapPositionAction` | Change the tap of a tap changer ratio | -| `PercentChangeLoadAction` | Change the active and/or reactive power of a load (by setting the values, or defining changes in value or percentage) | -| `ShuntCompensatorPositionAction` | Change the section of a shunt compensator | -| `PhaseTapChangerRegulationAction` | Change the regulation status of a tap changer phase | -| `RatioTapChangerRegulationAction` | Change the regulation status of a tap changer ratio | -| `GeneratorAction` | Change `targetP`, `targetQ`, regulation status and `targetV` of a generator | -| `StaticVarCompensatorAction` | Change the regulation mode of a static var compensator and its associated set point. | -| `HvdcAction` | Enabled or disabled AC emulation for HVDC line (with the possibility to change `P0` and `droop` for AC emulation and active power set point and converter mode for set point operating mode) | -| `AreaInterchangeTargetAction` | Change the interchange target of an area by specifying a new interchange target in MW.| +| Action | Description | +|------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `LoadAction` | Change the relative of absolute `P0` and/or `Q0` of a load. | +| `DanglingLineAction` | Change the relative of absolute `P0` and/or `Q0` of a dangling line. | +| `SwitchAction` | Open or close a switch. | +| `TerminalsConnectionAction` | Open or close a terminal. | +| `PhaseTapChangerTapPositionAction` | Change the tap of a phase tap changer. | +| `RatioTapChangerTapPositionAction` | Change the tap of a ratio tap changer. | +| `PercentChangeLoadAction` | Change the active and/or reactive power of a load (by setting the values, or defining changes in value or percentage). | +| `ShuntCompensatorPositionAction` | Change the section of a shunt compensator. | +| `PhaseTapChangerRegulationAction` | Change the regulation status of a phase tap changer. | +| `RatioTapChangerRegulationAction` | Change the regulation status of a ratio tap changer. | +| `GeneratorAction` | Change `targetP`, `targetQ`, regulation status and `targetV` of a generator. | +| `StaticVarCompensatorAction` | Change the regulation mode of a static var compensator and its associated set point. | +| `HvdcAction` | Enabled or disabled AC emulation for HVDC line (with the possibility to change `P0` and `droop` for AC emulation and active power set point and converter mode for set point operating mode). | +| `AreaInterchangeTargetAction` | Change the interchange target of an area by specifying a new interchange target in MW. | Remedial actions can be *preventive* or *curative*: