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

Add more IIDM extensions #164

Merged
merged 2 commits into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@ private DynawoConstants() {
public static final List<String> IIDM_EXTENSIONS = List.of(
"activePowerControl",
"slackTerminal",
"coordinatedReactiveControl");
"coordinatedReactiveControl",
"hvdcAngleDroopActivePowerControl",
"hvdcOperatorActivePowerRange",
"standbyAutomaton");
}
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,8 @@ public List<CommandExecution> before(Path workingDir) throws IOException {
}

@Override
public LoadFlowResult after(Path workingDir, ExecutionReport report) throws IOException {
Path absoluteWorkingDir = workingDir.toAbsolutePath();
super.after(absoluteWorkingDir, report);
public LoadFlowResult after(Path workingDir, ExecutionReport report) {
report.log();
network.getVariantManager().setWorkingVariant(workingStateId);
boolean status = true;
Path outputNetworkFile = workingDir.resolve("outputs").resolve("finalState").resolve(OUTPUT_IIDM_FILENAME);
Expand Down