Skip to content

Commit

Permalink
More remove deprecated methods from powsybl 6
Browse files Browse the repository at this point in the history
  • Loading branch information
jonenst committed Aug 30, 2023
1 parent eadad61 commit 6770c0a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,6 @@ public String getId() {
return id;
}

@Override
public String getName() {
return getNameOrId();
}

@Override
public String getNameOrId() {
return name != null ? name : id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ public StaticVarCompensatorAdder setBmax(double bMax) {
}

@Override
public StaticVarCompensatorAdder setVoltageSetPoint(double voltageSetPoint) {
public StaticVarCompensatorAdder setVoltageSetpoint(double voltageSetPoint) {
this.voltageSetPoint = voltageSetPoint;
return this;
}

@Override
public StaticVarCompensatorAdder setReactivePowerSetPoint(double reactivePowerSetPoint) {
public StaticVarCompensatorAdder setReactivePowerSetpoint(double reactivePowerSetPoint) {
this.reactivePowerSetPoint = reactivePowerSetPoint;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ private static Network createNetwokWithMultipleEquipments(TopologyKind topologyK
.setId("SVC2")
.setBmin(0.0002)
.setBmax(0.0008)
.setReactivePowerSetPoint(200)
.setReactivePowerSetpoint(200)
.setRegulationMode(StaticVarCompensator.RegulationMode.VOLTAGE)
.setVoltageSetPoint(390)
.setVoltageSetpoint(390)
.add();
svc.getTerminal().setP(435);
svc.getTerminal().setQ(315);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,11 @@ public void multipleDanglingLinesInMergedNetwork() {
// FIXME
}

@Override
public void testMergeSameId() {
// FIXME
}

@Override
public void test() {
// FIXME
}

@Override
public void xnodeNonCompatible() {
// FIXME
}

@Override
public void mergeThenCloneVariantBug() {
// FIXME
Expand Down

0 comments on commit 6770c0a

Please sign in to comment.