Skip to content

Commit

Permalink
Bump to core 5.3.2 (#804)
Browse files Browse the repository at this point in the history
Signed-off-by: Anne Tilloy <anne.tilloy@rte-france.com>
  • Loading branch information
annetill authored Jun 27, 2023
1 parent 08c7a75 commit fa249cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<slf4jtoys.version>1.6.3</slf4jtoys.version>
<asciitable.version>0.3.2</asciitable.version>

<powsybl-core.version>5.3.0</powsybl-core.version>
<powsybl-core.version>5.3.2</powsybl-core.version>
</properties>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,13 +327,17 @@ public static Network createWithTieLine() {
.setR(0.0)
.setX(0.1)
.setUcteXnodeCode("xnode")
.setP0(0.0)
.setQ0(0.0)
.add();
DanglingLine dl3 = vl3.newDanglingLine()
.setBus("b3")
.setId("h2")
.setR(0.0)
.setX(0.08)
.setUcteXnodeCode("xnode")
.setP0(0.0)
.setQ0(0.0)
.add();

network.newTieLine()
Expand Down Expand Up @@ -363,13 +367,17 @@ public static Network createWithTwoTieLines() {
.setR(0.0)
.setX(0.1)
.setUcteXnodeCode("xnode2")
.setP0(0.0)
.setQ0(0.0)
.add();
DanglingLine dl3 = network.getVoltageLevel("vl3").newDanglingLine()
.setBus("b3")
.setId("h2bis")
.setR(0.0)
.setX(0.08)
.setUcteXnodeCode("xnode2")
.setP0(0.0)
.setQ0(0.0)
.add();

network.newTieLine()
Expand Down

0 comments on commit fa249cd

Please sign in to comment.