com.powsybl.openloadflow.network.LfAsymGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-open-loadflow Show documentation
Show all versions of powsybl-open-loadflow Show documentation
An open source loadflow based on PowSyBl
The newest version!
/**
* 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.network;
/**
* @author Jean-Baptiste Heyberger {@literal }
*/
public class LfAsymGenerator {
private final double bz;
private final double gz;
private final double gn;
private final double bn;
public LfAsymGenerator(double gz, double bz, double gn, double bn) {
this.gz = gz;
this.bz = bz;
this.gn = gn;
this.bn = bn;
}
public double getGz() {
return gz;
}
public double getGn() {
return gn;
}
public double getBz() {
return bz;
}
public double getBn() {
return bn;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy