forked from powerdata/com.powerdata.openpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Transformer.java
112 lines (98 loc) · 2.24 KB
/
Transformer.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.powerdata.openpa;
public class Transformer extends ACBranch
{
TransformerList _list;
public Transformer(TransformerList list, int ndx)
{
super(list, ndx);
_list = list;
}
public boolean hasLTC() throws PAModelException
{
return _list.hasLTC(_ndx);
}
public void setHasLTC(boolean b) throws PAModelException
{
_list.setHasLTC(_ndx, b);
}
public boolean isRegEnabled() throws PAModelException
{
return _list.isRegEnabled(_ndx);
}
public void setRegEnabled(boolean enabl) throws PAModelException
{
_list.setRegEnabled(_ndx, enabl);
}
public float getMinKV() throws PAModelException
{
return _list.getMinKV(_ndx);
}
public void setMinKV(float kv) throws PAModelException
{
_list.setMinKV(_ndx, kv);
}
public float getMaxKV() throws PAModelException
{
return _list.getMaxKV(_ndx);
}
public void setMaxKV(float kv) throws PAModelException
{
_list.setMaxKV(_ndx, kv);
}
public Bus getRegBus() throws PAModelException
{
return _list.getRegBus(_ndx);
}
public Side getRegSide() throws PAModelException
{
return _list.getRegSide(_ndx);
}
public float getFromMinTap() throws PAModelException
{
return _list.getFromMinTap(_ndx);
}
public void setFromMinTap(float a) throws PAModelException
{
_list.setFromMinTap(_ndx, a);
}
public float getToMinTap() throws PAModelException
{
return _list.getToMinTap(_ndx);
}
public void setToMinTap(float a) throws PAModelException
{
_list.setToMinTap(_ndx, a);
}
public float getFromMaxTap() throws PAModelException
{
return _list.getFromMaxTap(_ndx);
}
public void setFromMaxTap(float a) throws PAModelException
{
_list.setFromMaxTap(_ndx, a);
}
public float getToMaxTap() throws PAModelException
{
return _list.getToMaxTap(_ndx);
}
public void setToMaxTap(float a) throws PAModelException
{
_list.setToMaxTap(_ndx, a);
}
public float getFromStepSize() throws PAModelException
{
return _list.getFromStepSize(_ndx);
}
public void setFromStepSize(float step) throws PAModelException
{
_list.setFromStepSize(_ndx, step);
}
public float getToStepSize() throws PAModelException
{
return _list.getToStepSize(_ndx);
}
public void setToStepSize(float step) throws PAModelException
{
_list.setToStepSize(_ndx, step);
}
}