com.powsybl.iidm.modification.PlannedDisconnectionBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-iidm-modification Show documentation
Show all versions of powsybl-iidm-modification Show documentation
The network modification API and a set of classes implementing it
/*
* Copyright (c) 2023, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
* SPDX-License-Identifier: MPL-2.0
*/
package com.powsybl.iidm.modification;
import com.powsybl.iidm.network.ThreeSides;
/**
* This builder help creating the network modification used to disconnect a network element from the bus or bus bar
* section to which it is currently connected. This builder should be used if the disconnection is planned.
* If it is not, {@link UnplannedDisconnectionBuilder} should be used instead.
* It works on:
*
* - Connectables
* - HVDC lines by disconnecting their converter stations
* - Tie lines by disconnecting their underlying dangling lines
*
* The user can specify a side of the element to disconnect. If no side is specified, the network modification will
* try to disconnect every side.
* @author Nicolas Rol {@literal }
*/
public class PlannedDisconnectionBuilder {
String identifiableId = null;
boolean openFictitiousSwitches = false;
ThreeSides side;
/**
* Specify the network element to disconnect. It can be either a connectable, an HVDC line or a tie line.
* @param identifiableId id of the network element to disconnect
*/
public PlannedDisconnectionBuilder withIdentifiableId(String identifiableId) {
this.identifiableId = identifiableId;
return this;
}
/**
* @deprecated Use {@link PlannedDisconnectionBuilder#withIdentifiableId(String)} instead
*/
@Deprecated(since = "6.4.0")
public PlannedDisconnectionBuilder withConnectableId(String connectableId) {
this.identifiableId = connectableId;
return this;
}
public PlannedDisconnectionBuilder withFictitiousSwitchesOperable(boolean openFictitiousSwitches) {
this.openFictitiousSwitches = openFictitiousSwitches;
return this;
}
public PlannedDisconnectionBuilder withSide(ThreeSides side) {
this.side = side;
return this;
}
public PlannedDisconnection build() {
return new PlannedDisconnection(identifiableId, openFictitiousSwitches, side);
}
}