com.powsybl.psse.model.pf.PsseArea Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-psse-model Show documentation
Show all versions of powsybl-psse-model Show documentation
PSS/E raw format data model
/**
* Copyright (c) 2020, 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.psse.model.pf;
import com.univocity.parsers.annotations.Parsed;
/**
*
* @author Geoffroy Jamgotchian {@literal }
*/
public class PsseArea {
@Parsed(field = {"i", "iarea"})
private int i;
@Parsed
private int isw = 0;
@Parsed
private double pdes = 0;
@Parsed
private double ptol = 10;
@Parsed(defaultNullRead = " ")
private String arname;
public int getI() {
return i;
}
public void setI(int i) {
this.i = i;
}
public int getIsw() {
return isw;
}
public void setIsw(int isw) {
this.isw = isw;
}
public double getPdes() {
return pdes;
}
public void setPdes(double pdes) {
this.pdes = pdes;
}
public double getPtol() {
return ptol;
}
public void setPtol(double ptol) {
this.ptol = ptol;
}
public String getArname() {
return arname;
}
public void setArname(String arname) {
this.arname = arname;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy