com.powsybl.openloadflow.ac.equations.AbstractOpenSide2BranchAcFlowEquationTerm Maven / Gradle / Ivy
/**
* Copyright (c) 2019, 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.openloadflow.ac.equations;
import com.powsybl.openloadflow.equations.Variable;
import com.powsybl.openloadflow.equations.VariableSet;
import com.powsybl.openloadflow.network.LfBranch;
import com.powsybl.openloadflow.network.LfBus;
import java.util.List;
/**
* @author Gael Macherel {@literal }
*/
abstract class AbstractOpenSide2BranchAcFlowEquationTerm extends AbstractBranchAcFlowEquationTerm {
protected final List> variables;
protected AbstractOpenSide2BranchAcFlowEquationTerm(LfBranch branch, AcVariableType variableType,
LfBus bus, VariableSet variableSet) {
super(branch);
variables = List.of(variableSet.getVariable(bus.getNum(), variableType));
}
protected static double shunt(double y, double cosKsi, double sinKsi, double g2, double b2) {
return (g2 + y * sinKsi) * (g2 + y * sinKsi) + (-b2 + y * cosKsi) * (-b2 + y * cosKsi);
}
@Override
public List> getVariables() {
return variables;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy