Skip to content

Commit

Permalink
Open setters for all properties in PsseTransformerWinding class (#3091)
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Yao <ruiyao@ieee.org>
  • Loading branch information
rygx authored Jul 4, 2024
1 parent cd3933d commit af3bcd2
Showing 1 changed file with 60 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ public double getWindv() {
return windv;
}

public void setWindv(double windv) {
this.windv = windv;
}

public double getNomv() {
return nomv;
}
Expand All @@ -94,10 +90,6 @@ public double getAng() {
return ang;
}

public void setAng(double ang) {
this.ang = ang;
}

public int getCod() {
return cod;
}
Expand Down Expand Up @@ -147,6 +139,66 @@ public double getCnxa() {
return cnxa;
}

public void setWindv(double windv) {
this.windv = windv;
}

public void setNomv(double nomv) {
this.nomv = nomv;
}

public void setAng(double ang) {
this.ang = ang;
}

public void setCod(int cod) {
this.cod = cod;
}

public void setCont(int cont) {
this.cont = cont;
}

public void setNode(int node) {
this.node = node;
}

public void setRma(double rma) {
this.rma = rma;
}

public void setRmi(double rmi) {
this.rmi = rmi;
}

public void setVma(double vma) {
this.vma = vma;
}

public void setVmi(double vmi) {
this.vmi = vmi;
}

public void setNtp(int ntp) {
this.ntp = ntp;
}

public void setTab(int tab) {
this.tab = tab;
}

public void setCr(double cr) {
this.cr = cr;
}

public void setCx(double cx) {
this.cx = cx;
}

public void setCnxa(double cnxa) {
this.cnxa = cnxa;
}

public PsseTransformerWinding copy() {
PsseTransformerWinding copy = new PsseTransformerWinding();
copy.windv = this.windv;
Expand Down

0 comments on commit af3bcd2

Please sign in to comment.