-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPDElement.py
303 lines (219 loc) · 11.1 KB
/
PDElement.py
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
from typing import List, Optional
from .enums import ExtraClassIDs
from .types import Float64Array, Int32Array
from .DSSObj import DSSObj
from .CircuitElement import CircuitElementBatch
class PDElementMixin:
__slots__ = []
_extra_slots = []
def EnergyMeter(self) -> Optional[DSSObj]:
'''
Energy Meter this element is assigned to.
*Requires an energy meter with an updated zone.*
Original COM help: https://opendss.epri.com/EnergyMeter.html
'''
return self._get_obj_from_ptr(self._lib.Alt_PDE_Get_EnergyMeter(self._ptr)) # cannot use the EnergyMeter class here due to circular import
def EnergyMeterName(self) -> str:
'''
Name of the Energy Meter this element is assigned to.
*Requires an energy meter with an updated zone.*
Original COM help: https://opendss.epri.com/EnergyMeter.html
'''
return self._get_string(self._lib.Alt_PDE_Get_EnergyMeterName(self._ptr))
def IsShunt(self) -> bool:
'''
Indicates if this PD element should be treated as a shunt element rather than a series element.
Applies to Capacitor, Reactor, Fault and GICTransformer elements.
'''
return self._lib.Alt_PDE_Get_IsShunt(self._ptr) != 0
def AccumulatedL(self) -> float:
'''
Accumulated failure rate for this branch on downline.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/AccumulatedL.html
'''
return self._lib.Alt_PDE_Get_AccumulatedL(self._ptr)
def Lambda(self) -> float:
'''
Failure rate for this branch. Faults per year including length of line.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/Lambda1.html
'''
return self._lib.Alt_PDE_Get_Lambda(self._ptr)
def NumCustomers(self) -> int:
'''
Number of customers, this branch.
*Requires an energy meter with an updated zone.*
Original COM help: https://opendss.epri.com/Numcustomers.html
'''
return self._lib.Alt_PDE_Get_NumCustomers(self._ptr)
def ParentPDElement(self) -> Optional[DSSObj]:
'''
Parent PD element of this element, if any.
*Requires an energy meter with an updated zone.*
'''
return self._get_obj_from_ptr(self._lib.Alt_PDE_Get_ParentPDElement(self._ptr))
def TotalCustomers(self) -> int:
'''
Total number of customers from this branch to the end of the zone
*Requires a circuit with an energy meter with an updated zone.*
Original COM help: https://opendss.epri.com/TotalCustomers1.html
'''
return self._lib.Alt_PDE_Get_TotalCustomers(self._ptr)
def FromTerminal(self) -> int:
'''
Number of the terminal of this PD element that is on the "from" side.
*Requires an energy meter with an updated zone.*
'''
return self._lib.Alt_PDE_Get_FromTerminal(self._ptr)
def TotalMiles(self) -> float:
'''
Total miles of line from this element to the end of the zone. For recloser siting algorithm.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/TotalMiles1.html
'''
return self._lib.Alt_PDE_Get_TotalMiles(self._ptr)
def TotalKilometers(self) -> float:
'''
Total kilometers of line from this element to the end of the zone. For recloser siting algorithm.
*Requires a previous call to `RelCalc` command*
'''
return self._lib.Alt_PDE_Get_TotalMiles(self._ptr) * 1.609344
def SectionID(self) -> int:
'''
Integer ID of the feeder section that this PDElement branch is part of.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/SectionID1.html
'''
return self._lib.Alt_PDE_Get_SectionID(self._ptr)
def pctNormal(self, allNodes=False) -> float:
'''
Maximum current across the conductors as a percentage of the **normal** ampere rating.
By default, only the nodes from the *first terminal* is used for the maximum current, matching
the behavior of the "export capacity" command. Pass `allNodes=True` to
force the analysis to all terminals.
See also:
https://sourceforge.net/p/electricdss/discussion/beginners/thread/da5b93ca/
'''
return self._lib.Alt_PDE_Get_pctNorm(self._ptr, allNodes)
def pctEmergency(self, allNodes=False) -> float:
'''
Maximum current across the conductors as a percentage of the **emergency** ampere rating.
By default, only the nodes from the *first terminal* is used for the maximum current, matching
the behavior of the "export capacity" command. Pass `allNodes=True` to
force the analysis to all terminals.
See also:
https://sourceforge.net/p/electricdss/discussion/beginners/thread/da5b93ca/
'''
return self._lib.Alt_PDE_Get_pctEmerg(self._ptr, allNodes)
class PDElementBatchMixin:
__slots__ = []
def EnergyMeter(self) -> List[Optional[DSSObj]]: #TODO: should we return a batch here?
'''
Return the energy meter for each of the elements in this batch.
*Requires an energy meter with an updated zone.*
'''
return [self._get_obj_from_ptr(self._lib.Alt_PDE_Get_EnergyMeter(ptr)) for ptr in self._unpack()]
def EnergyMeterName(self) -> List[str]:
'''
Return the energy meter *name* for each of the elements in this batch.
*Requires an energy meter with an updated zone.*
'''
return [self._get_string(self._lib.Alt_PDE_Get_EnergyMeterName(ptr)) for ptr in self._unpack()]
def IsShunt(self) -> List[bool]:
'''
Indicates if each of the PD elements in the batch should be treated as a shunt element rather than a series element.
Applies to Capacitor, Reactor, Fault and GICTransformer elements.
'''
return [self._lib.Alt_PDE_Get_IsShunt(ptr) != 0 for ptr in self._unpack()]
def AccumulatedL(self) -> Float64Array:
'''
Accumulated failure rate for the branch on downline, for each branch in this batch.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/AccumulatedL.html
'''
return self._get_batch_float64_func("Alt_PDE_Get_AccumulatedL")
def Lambda(self) -> Float64Array:
'''
Failure rate for each of the branches in the batch. Faults per year including length of line.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/Lambda1.html
'''
return self._get_batch_float64_func("Alt_PDE_Get_Lambda")
def NumCustomers(self) -> Int32Array:
'''
Number of customers for each branch in the batch.
*Requires an energy meter with an updated zone.*
Original COM help: https://opendss.epri.com/Numcustomers.html
'''
return self._get_batch_int32_func("Alt_PDE_Get_NumCustomers")
def ParentPDElement(self) -> List[Optional[DSSObj]]: #TODO: should we return a batch here?
'''
Returns the parent PD element for each element in this batch.
*Requires an energy meter with an updated zone.*
'''
return [self._get_obj_from_ptr(self._lib.Alt_PDE_Get_ParentPDElement(ptr)) for ptr in self._unpack()]
def TotalCustomers(self) -> Int32Array:
'''
Total number of customers from each branch of this batch to the end of the zone
*Requires a circuit with an energy meter with an updated zone.*
Original COM help: https://opendss.epri.com/TotalCustomers1.html
'''
return self._get_batch_int32_func("Alt_PDE_Get_TotalCustomers")
def FromTerminal(self) -> Int32Array:
'''
Number of the terminal of each PD element of this batch that is on the "from" side.
*Requires an energy meter with an updated zone.*
'''
return self._get_batch_int32_func("Alt_PDE_Get_FromTerminal")
def TotalMiles(self) -> Float64Array:
'''
Total miles of line from this element to the end of the zone. For recloser siting algorithm.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/TotalMiles1.html
'''
return self._get_batch_float64_func("Alt_PDE_Get_TotalMiles")
def TotalKilometers(self) -> Float64Array:
'''
Total kilometers of line from this element to the end of the zone. For recloser siting algorithm.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/TotalMiles1.html
'''
return self._get_batch_float64_func("Alt_PDE_Get_TotalMiles") * 1.609344
def SectionID(self) -> Int32Array:
'''
Integer ID of the feeder section that each PDElement branch in this batch is part of.
*Requires a previous call to `RelCalc` command*
Original COM help: https://opendss.epri.com/SectionID1.html
'''
return self._get_batch_int32_func("Alt_PDE_Get_SectionID")
def pctNormal(self, allNodes=False) -> Float64Array:
'''
For each element in the batch, calculate the maximum current across the conductors as a percentage of the **normal** ampere rating.
By default, only the nodes from the *first terminal* is used for the maximum current, matching
the behavior of the "export capacity" command. Pass `allNodes=True` to
force the analysis to all terminals.
See also:
https://sourceforge.net/p/electricdss/discussion/beginners/thread/da5b93ca/
'''
return self._get_float64_array(self._lib.Alt_PDEBatch_Get_pctNorm, *self._get_ptr_cnt(), allNodes)
def pctEmergency(self, allNodes=False) -> Float64Array:
'''
For each element in the batch, calculate the maximum current across the conductors as a percentage of the **emergency** ampere rating.
By default, only the nodes from the *first terminal* is used for the maximum current, matching
the behavior of the "export capacity" command. Pass `allNodes=True` to
force the analysis to all terminals.
See also:
https://sourceforge.net/p/electricdss/discussion/beginners/thread/da5b93ca/
'''
return self._get_float64_array(self._lib.Alt_PDEBatch_Get_pctEmerg, *self._get_ptr_cnt(), allNodes)
class PDElementBatch(CircuitElementBatch, PDElementBatchMixin):
'''
Non-uniform batch of PD elements. Can contain distinct PD types, while providing
common functions
'''
__slots__ = []
def __init__(self, func, parent, sync_cls_idx=ExtraClassIDs.PDElements, copy_safe=False):
CircuitElementBatch.__init__(self, func, parent, sync_cls_idx=sync_cls_idx, copy_safe=copy_safe)
PDElementBatchMixin.__init__(self)
__all__ = ('PDElementMixin', 'PDElementBatchMixin', 'PDElementBatch',)