All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.powsybl.openloadflow.ac.equations.asym.AbstractAsymmetricalBranchFlowEquationTerm 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.AcEquationType;
import com.powsybl.openloadflow.ac.equations.AcVariableType;
import com.powsybl.openloadflow.equations.AbstractElementEquationTerm;
import com.powsybl.openloadflow.network.LfAsymLine;
import com.powsybl.openloadflow.network.LfAsymLineAdmittanceMatrix;
import com.powsybl.openloadflow.network.LfBranch;

/**
 * @author Geoffroy Jamgotchian {@literal }
 * @author Jean-Baptiste Heyberger {@literal }
 */
abstract class AbstractAsymmetricalBranchFlowEquationTerm extends AbstractElementEquationTerm {

    // Classical line parameters are replaced by a 12x12 admittance matrix
    protected final LfAsymLineAdmittanceMatrix y;

    protected AbstractAsymmetricalBranchFlowEquationTerm(LfBranch branch) {
        super(branch);
        LfAsymLine asymLine = branch.getAsymLine();
        if (asymLine == null) {
            throw new IllegalStateException("Line : " + branch.getId() + " has no asymmetric extension but is required here ");
        }
        y = asymLine.getAdmittanceMatrix();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy