-
Notifications
You must be signed in to change notification settings - Fork 8
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
Loss of a VSC converter station after contingency #961
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ot). Signed-off-by: Anne Tilloy <[email protected]>
Signed-off-by: Anne Tilloy <[email protected]>
Signed-off-by: Anne Tilloy <[email protected]>
src/main/java/com/powsybl/openloadflow/network/impl/LfVscConverterStationImpl.java
Show resolved
Hide resolved
7 tasks
# Conflicts: # src/test/java/com/powsybl/openloadflow/network/HvdcNetworkFactory.java
Signed-off-by: Geoffroy Jamgotchian <[email protected]>
geofjamg
approved these changes
Jan 24, 2024
Signed-off-by: Anne Tilloy <[email protected]>
Signed-off-by: Anne Tilloy <[email protected]>
|
vidaldid-rte
approved these changes
Jan 24, 2024
rosiereflo
approved these changes
Jan 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please check if the PR fulfills these requirements
Does this PR already have an issue describing the problem?
Yes, with #957. This PR follows the analysis made in that PR and extracts a smaller part. The aim of this current PR is to handle the loss of a VSC converter station. As there is no VSC converter station contingency, this happens when we loose a bus that contains a VSC converter station. Two cases:
LfNetwork
: the component with the lost VSC converter station is isolated (and not computed), so is the other side. This case if supported in main branch. Note that it could not be in AC emulation (both converter stations must be in the sameLfNetwork
).LfNetwork
: this case is not supported well. 1) In case of an AC emulation operation, as one side bus is isolated (and not computed), we must disabled the AC emulation equations. 2) In case of a set point operation, in main branch, the other converter station continues to produce or consumes active power.Solution proposal:
Note that in that proposal, we change something important: if both VSC converter stations are in the
LfNetwork
at loading, we create aLfHvdc
, even if not operated in AC emulation.LCC converter stations are not supported in that fix.
N case, where for an hvdc line, both converter stations are not in the same synchronous/connected component is not handled. Active power flow is not fixed. Note that in that case, the criteria is not obvious.
Update: what is not supported is in case of bus contingency or bus bar section contingency in DC sensitivity analysis, in the case of the lost bus has a VSC converter station.