
com.powsybl.openloadflow.ac.equations.asym.AbstractShuntFortescueCurrentEquationTerm Maven / Gradle / Ivy
/**
* Copyright (c) 2023, Jean-Baptiste Heyberger
* Copyright (c) 2023, Geoffroy Jamgotchian
* 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.asym;
import com.powsybl.openloadflow.ac.equations.AcVariableType;
import com.powsybl.openloadflow.equations.Variable;
import com.powsybl.openloadflow.equations.VariableSet;
import com.powsybl.openloadflow.network.LfBus;
import com.powsybl.openloadflow.util.Fortescue;
import java.util.List;
/**
* @author Jean-Baptiste Heyberger {@literal }
*/
public abstract class AbstractShuntFortescueCurrentEquationTerm extends AbstractShuntFortescueEquationTerm {
private final List> variables;
protected AbstractShuntFortescueCurrentEquationTerm(LfBus bus, VariableSet variableSet, Fortescue.SequenceType sequenceType) {
super(bus, variableSet, sequenceType);
variables = List.of(vVar, phVar);
}
@Override
public List> getVariables() {
return variables;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy