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

Check too far generator voltage remote control #1119

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7dbba4b
Added check
SylvestreSakti Nov 7, 2024
18db0ad
Added test
SylvestreSakti Nov 8, 2024
04fd630
BusDistance modification
SylvestreSakti Nov 8, 2024
1b61b80
Added parameter
SylvestreSakti Nov 8, 2024
ecacea0
Simplified BusDistance algorithm
SylvestreSakti Nov 8, 2024
37bc4c6
Modified tests for parameters
SylvestreSakti Nov 8, 2024
3fede3d
Modified tests and parameters
SylvestreSakti Nov 8, 2024
936cc66
Modified algorithm to avoid too long for loop
SylvestreSakti Nov 8, 2024
df97ff4
Modified parameters and tests
SylvestreSakti Nov 8, 2024
d4e082d
Clean code
SylvestreSakti Nov 8, 2024
084eccb
Typo
SylvestreSakti Nov 8, 2024
0625c7d
Added documentation
SylvestreSakti Nov 8, 2024
73ff722
Switched remote voltage control to voltage remote control
SylvestreSakti Nov 8, 2024
f1ea70b
typo
SylvestreSakti Nov 8, 2024
60ad03a
Modified test report
SylvestreSakti Nov 8, 2024
8553815
Added handling of null buses in BusDistance
SylvestreSakti Nov 15, 2024
e6ba659
Added tests and changed parameter default value and checking
SylvestreSakti Nov 25, 2024
cd3e1c0
Tests update
SylvestreSakti Nov 25, 2024
f0a45dc
Modified log message
SylvestreSakti Nov 25, 2024
8247d88
Merge branch 'main' into check_too_far_voltage_remote_control
SylvestreSakti Nov 25, 2024
fbbf0ed
remove public
SylvestreSakti Nov 25, 2024
1f1141d
Corrections from review
SylvestreSakti Nov 27, 2024
bc4bb8c
Added assertVoltageEquals in tests
SylvestreSakti Dec 3, 2024
68e2d10
Added more assertVoltageEquals and commenting expected values
SylvestreSakti Dec 3, 2024
6e566fd
Changed parameter name to maxGeneratorVoltageRemoteControl
SylvestreSakti Dec 3, 2024
9c8c5b2
small doc fix
SylvestreSakti Dec 3, 2024
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
Prev Previous commit
small doc fix
Signed-off-by: PRABAKARAN Sylvestre <sylvestre.prabakaran@rte-france.com>
  • Loading branch information
SylvestreSakti committed Dec 3, 2024
commit 9c8c5b2fdac4e4003e647abdfb4bbab858fcdda6
4 changes: 2 additions & 2 deletions docs/loadflow/parameters.md
Original file line number Diff line number Diff line change
@@ -142,8 +142,8 @@ The default value is `true`.

**maxGeneratorVoltageRemoteControlDistance**
Defines the maximum distance allowed between the remote regulated bus and the voltage controller generator (requires `voltageRemoteControl` to be set to `true`).
This distance is measured in number of branches separating the controlled bus and the generator. If the distance is higher than this parameter, then the voltage remote control is converted to a local control, rescaling the target voltage according to the nominal voltage ratio between the remote regulated bus and the equipment terminal bus.
If `maxGeneratorVoltageRemoteControlDistance` is set to `0` (or a negative value), there is no distance checking. (This criteria covers also remote voltage control of static variable compensators, VSC converters and batteries)
This distance is measured in number of branches separating the controlled bus and the generator. If the distance is higher than this parameter, then the voltage remote control is converted to a local control, rescaling the target voltage according to the nominal voltage ratio between the remote regulated bus and the equipment terminal bus. (This criteria covers also remote voltage control of static variable compensators, VSC converters and batteries)
If `maxGeneratorVoltageRemoteControlDistance` is set to `0` (or a negative value), there is no distance checking.
The default value is `2`.

SylvestreSakti marked this conversation as resolved.
Show resolved Hide resolved
**voltagePerReactivePowerControl**
Loading