forked from powerdata/com.powerdata.openpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ACBranchListIfc.java
85 lines (44 loc) · 2.17 KB
/
ACBranchListIfc.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.powerdata.openpa;
public interface ACBranchListIfc<T extends ACBranch> extends TwoTermDevListIfc<T>
{
float getR(int ndx) throws PAModelException;
void setR(int ndx, float r) throws PAModelException;
float[] getR() throws PAModelException;
void setR(float[] r) throws PAModelException;
float getX(int ndx) throws PAModelException;
void setX(int ndx, float x) throws PAModelException;
float[] getX() throws PAModelException;
void setX(float[] x) throws PAModelException;
float getFromTap(int ndx) throws PAModelException;
void setFromTap(int ndx, float a) throws PAModelException;
float[] getFromTap() throws PAModelException;
void setFromTap(float[] a) throws PAModelException;
float getToTap(int ndx) throws PAModelException;
void setToTap(int ndx, float a) throws PAModelException;
float[] getToTap() throws PAModelException;
void setToTap(float[] a) throws PAModelException;
float getGmag(int ndx) throws PAModelException;
void setGmag(int ndx, float g) throws PAModelException;
float[] getGmag() throws PAModelException;
void setGmag(float[] g) throws PAModelException;
float getBmag(int ndx) throws PAModelException;
void setBmag(int ndx, float b) throws PAModelException;
float[] getBmag() throws PAModelException;
void setBmag(float[] b) throws PAModelException;
float getFromBchg(int ndx) throws PAModelException;
void setFromBchg(int ndx, float b) throws PAModelException;
float[] getFromBchg() throws PAModelException;
void setFromBchg(float[] b) throws PAModelException;
float getToBchg(int ndx) throws PAModelException;
void setToBchg(int ndx, float b) throws PAModelException;
float[] getToBchg() throws PAModelException;
void setToBchg(float[] b) throws PAModelException;
float getShift(int ndx) throws PAModelException;
void setShift(int ndx, float sdeg) throws PAModelException;
float[] getShift() throws PAModelException;
void setShift(float[] sdeg) throws PAModelException;
float getLTRating(int ndx) throws PAModelException;
float[] getLTRating() throws PAModelException;
void setLTRating(int ndx, float mva) throws PAModelException;
void setLTRating(float[] mva) throws PAModelException;
}