Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complete docs about implemented remedial actions #3224

Merged
merged 4 commits into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions docs/simulation/security/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,22 @@ 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
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.
| 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*:

Expand All @@ -77,6 +82,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:
Expand Down
Loading