-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLineCode.py
1042 lines (768 loc) · 42 KB
/
LineCode.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) 2021-2024 Paulo Meira
# Copyright (c) 2021-2024 DSS-Extensions contributors
from __future__ import annotations
from typing import Union, List, AnyStr, Optional, Iterator, TYPE_CHECKING
from typing_extensions import TypedDict, Unpack
from .types import Float64Array, Int32Array
from . import enums
from .DSSObj import IDSSObj, DSSObj
from .Batch import DSSBatch
from .ArrayProxy import BatchFloat64ArrayProxy, BatchInt32ArrayProxy
from .common import LIST_LIKE
class LineCode(DSSObj):
__slots__ = DSSObj._extra_slots
_cls_name = 'LineCode'
_cls_idx = 1
_cls_int_idx = {
1,
8,
22,
25,
27,
}
_cls_float_idx = {
2,
3,
4,
5,
6,
7,
12,
13,
14,
15,
16,
17,
19,
20,
21,
23,
24,
}
_cls_prop_idx = {
'nphases': 1,
'r1': 2,
'x1': 3,
'r0': 4,
'x0': 5,
'c1': 6,
'c0': 7,
'units': 8,
'rmatrix': 9,
'xmatrix': 10,
'cmatrix': 11,
'basefreq': 12,
'normamps': 13,
'emergamps': 14,
'faultrate': 15,
'pctperm': 16,
'repair': 17,
'kron': 18,
'rg': 19,
'xg': 20,
'rho': 21,
'neutral': 22,
'b1': 23,
'b0': 24,
'seasons': 25,
'ratings': 26,
'linetype': 27,
'like': 28,
}
def edit(self, **kwargs: Unpack[LineCodeProperties]) -> LineCode:
"""
Edit this LineCode.
This method will try to open a new edit context (if not already open),
edit the properties, and finalize the edit context.
It can be seen as a shortcut to manually setting each property, or a Pythonic
analogous (but extended) to the DSS `Edit` command.
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
:return: Returns itself to allow call chaining.
"""
self._edit(props=kwargs)
return self
def _get_NPhases(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 1)
def _set_NPhases(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 1, value, flags)
NPhases = property(_get_NPhases, _set_NPhases) # type: int
"""
Number of phases in the line this line code data represents. Setting this property reinitializes the line code. Impedance matrix is reset for default symmetrical component.
DSS property name: `NPhases`, DSS property index: 1.
"""
def _get_R1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 2)
def _set_R1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 2, value, flags)
R1 = property(_get_R1, _set_R1) # type: float
"""
Positive-sequence Resistance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also Rmatrix.
DSS property name: `R1`, DSS property index: 2.
"""
def _get_X1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 3)
def _set_X1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 3, value, flags)
X1 = property(_get_X1, _set_X1) # type: float
"""
Positive-sequence Reactance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also Xmatrix
DSS property name: `X1`, DSS property index: 3.
"""
def _get_R0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 4)
def _set_R0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 4, value, flags)
R0 = property(_get_R0, _set_R0) # type: float
"""
Zero-sequence Resistance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition.
DSS property name: `R0`, DSS property index: 4.
"""
def _get_X0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 5)
def _set_X0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 5, value, flags)
X0 = property(_get_X0, _set_X0) # type: float
"""
Zero-sequence Reactance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition.
DSS property name: `X0`, DSS property index: 5.
"""
def _get_C1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 6)
def _set_C1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 6, value, flags)
C1 = property(_get_C1, _set_C1) # type: float
"""
Positive-sequence capacitance, nf per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also Cmatrix and B1.
DSS property name: `C1`, DSS property index: 6.
"""
def _get_C0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 7)
def _set_C0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 7, value, flags)
C0 = property(_get_C0, _set_C0) # type: float
"""
Zero-sequence capacitance, nf per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also B0.
DSS property name: `C0`, DSS property index: 7.
"""
def _get_Units(self) -> enums.LengthUnit:
return enums.LengthUnit(self._lib.Obj_GetInt32(self._ptr, 8))
def _set_Units(self, value: Union[AnyStr, int, enums.LengthUnit], flags: enums.SetterFlags = 0):
if not isinstance(value, int):
self._set_string_o(8, value, flags)
return
self._lib.Obj_SetInt32(self._ptr, 8, value, flags)
Units = property(_get_Units, _set_Units) # type: enums.LengthUnit
"""
One of (ohms per ...) {none|mi|km|kft|m|me|ft|in|cm}. Default is none; assumes units agree with length units given in Line object
DSS property name: `Units`, DSS property index: 8.
"""
def _get_Units_str(self) -> str:
return self._get_prop_string(8)
def _set_Units_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_Units(value, flags)
Units_str = property(_get_Units_str, _set_Units_str) # type: str
"""
One of (ohms per ...) {none|mi|km|kft|m|me|ft|in|cm}. Default is none; assumes units agree with length units given in Line object
DSS property name: `Units`, DSS property index: 8.
"""
def _get_RMatrix(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 9)
def _set_RMatrix(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(9, value, flags)
RMatrix = property(_get_RMatrix, _set_RMatrix) # type: Float64Array
"""
Resistance matrix, lower triangle, ohms per unit length. Order of the matrix is the number of phases. May be used to specify the impedance of any line configuration. For balanced line models, you may use the standard symmetrical component data definition instead.
DSS property name: `RMatrix`, DSS property index: 9.
"""
def _get_XMatrix(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 10)
def _set_XMatrix(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(10, value, flags)
XMatrix = property(_get_XMatrix, _set_XMatrix) # type: Float64Array
"""
Reactance matrix, lower triangle, ohms per unit length. Order of the matrix is the number of phases. May be used to specify the impedance of any line configuration. For balanced line models, you may use the standard symmetrical component data definition instead.
DSS property name: `XMatrix`, DSS property index: 10.
"""
def _get_CMatrix(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 11)
def _set_CMatrix(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(11, value, flags)
CMatrix = property(_get_CMatrix, _set_CMatrix) # type: Float64Array
"""
Nodal Capacitance matrix, lower triangle, nf per unit length.Order of the matrix is the number of phases. May be used to specify the shunt capacitance of any line configuration. For balanced line models, you may use the standard symmetrical component data definition instead.
DSS property name: `CMatrix`, DSS property index: 11.
"""
def _get_BaseFreq(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 12)
def _set_BaseFreq(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 12, value, flags)
BaseFreq = property(_get_BaseFreq, _set_BaseFreq) # type: float
"""
Frequency at which impedances are specified.
DSS property name: `BaseFreq`, DSS property index: 12.
"""
def _get_NormAmps(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 13)
def _set_NormAmps(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 13, value, flags)
NormAmps = property(_get_NormAmps, _set_NormAmps) # type: float
"""
Normal ampere limit on line. This is the so-called Planning Limit. It may also be the value above which load will have to be dropped in a contingency. Usually about 75% - 80% of the emergency (one-hour) rating.
DSS property name: `NormAmps`, DSS property index: 13.
"""
def _get_EmergAmps(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 14)
def _set_EmergAmps(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 14, value, flags)
EmergAmps = property(_get_EmergAmps, _set_EmergAmps) # type: float
"""
Emergency ampere limit on line (usually one-hour rating).
DSS property name: `EmergAmps`, DSS property index: 14.
"""
def _get_FaultRate(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 15)
def _set_FaultRate(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 15, value, flags)
FaultRate = property(_get_FaultRate, _set_FaultRate) # type: float
"""
Number of faults per unit length per year.
DSS property name: `FaultRate`, DSS property index: 15.
"""
def _get_PctPerm(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 16)
def _set_PctPerm(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 16, value, flags)
PctPerm = property(_get_PctPerm, _set_PctPerm) # type: float
"""
Percentage of the faults that become permanent.
DSS property name: `PctPerm`, DSS property index: 16.
"""
def _get_Repair(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 17)
def _set_Repair(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 17, value, flags)
Repair = property(_get_Repair, _set_Repair) # type: float
"""
Hours to repair.
DSS property name: `Repair`, DSS property index: 17.
"""
def Kron(self, value: bool = True, flags: enums.SetterFlags = 0):
"""
Kron = Y/N. Default=N. Perform Kron reduction on the impedance matrix after it is formed, reducing order by 1. Eliminates the conductor designated by the "Neutral=" property. Do this after the R, X, and C matrices are defined. Ignored for symmetrical components. May be issued more than once to eliminate more than one conductor by resetting the Neutral property after the previous invoking of this property. Generally, you do not want to do a Kron reduction on the matrix if you intend to solve at a frequency other than the base frequency and exploit the Rg and Xg values.
DSS property name: `Kron`, DSS property index: 18.
"""
self._lib.Obj_SetInt32(self._ptr, 18, value, flags)
def _get_Rg(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 19)
def _set_Rg(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 19, value, flags)
Rg = property(_get_Rg, _set_Rg) # type: float
"""
Carson earth return resistance per unit length used to compute impedance values at base frequency. For making better frequency adjustments. Default is 0.01805 = 60 Hz value in ohms per kft (matches default line impedances). This value is required for harmonic solutions if you wish to adjust the earth return impedances for frequency. If not, set both Rg and Xg = 0.
DSS property name: `Rg`, DSS property index: 19.
"""
def _get_Xg(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 20)
def _set_Xg(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 20, value, flags)
Xg = property(_get_Xg, _set_Xg) # type: float
"""
Carson earth return reactance per unit length used to compute impedance values at base frequency. For making better frequency adjustments. Default value is 0.155081 = 60 Hz value in ohms per kft (matches default line impedances). This value is required for harmonic solutions if you wish to adjust the earth return impedances for frequency. If not, set both Rg and Xg = 0.
DSS property name: `Xg`, DSS property index: 20.
"""
def _get_rho(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 21)
def _set_rho(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 21, value, flags)
rho = property(_get_rho, _set_rho) # type: float
"""
Default=100 meter ohms. Earth resitivity used to compute earth correction factor.
DSS property name: `rho`, DSS property index: 21.
"""
def _get_Neutral(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 22)
def _set_Neutral(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 22, value, flags)
Neutral = property(_get_Neutral, _set_Neutral) # type: int
"""
Designates which conductor is the "neutral" conductor that will be eliminated by Kron reduction. Default is the last conductor (nphases value). After Kron reduction is set to 0. Subsequent issuing of Kron=Yes will not do anything until this property is set to a legal value. Applies only to LineCodes defined by R, X, and C matrix.
DSS property name: `Neutral`, DSS property index: 22.
"""
def _get_B1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 23)
def _set_B1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 23, value, flags)
B1 = property(_get_B1, _set_B1) # type: float
"""
Alternate way to specify C1. MicroS per unit length
DSS property name: `B1`, DSS property index: 23.
"""
def _get_B0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 24)
def _set_B0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 24, value, flags)
B0 = property(_get_B0, _set_B0) # type: float
"""
Alternate way to specify C0. MicroS per unit length
DSS property name: `B0`, DSS property index: 24.
"""
def _get_Seasons(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 25)
def _set_Seasons(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 25, value, flags)
Seasons = property(_get_Seasons, _set_Seasons) # type: int
"""
Defines the number of ratings to be defined for the wire, to be used only when defining seasonal ratings using the "Ratings" property.
DSS property name: `Seasons`, DSS property index: 25.
"""
def _get_Ratings(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 26)
def _set_Ratings(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(26, value, flags)
Ratings = property(_get_Ratings, _set_Ratings) # type: Float64Array
"""
An array of ratings to be used when the seasonal ratings flag is True. It can be used to insert
multiple ratings to change during a QSTS simulation to evaluate different ratings in lines.
DSS property name: `Ratings`, DSS property index: 26.
"""
def _get_LineType(self) -> enums.LineType:
return enums.LineType(self._lib.Obj_GetInt32(self._ptr, 27))
def _set_LineType(self, value: Union[AnyStr, int, enums.LineType], flags: enums.SetterFlags = 0):
if not isinstance(value, int):
self._set_string_o(27, value, flags)
return
self._lib.Obj_SetInt32(self._ptr, 27, value, flags)
LineType = property(_get_LineType, _set_LineType) # type: enums.LineType
"""
Code designating the type of line.
One of: OH, UG, UG_TS, UG_CN, SWT_LDBRK, SWT_FUSE, SWT_SECT, SWT_REC, SWT_DISC, SWT_BRK, SWT_ELBOW, BUSBAR
OpenDSS currently does not use this internally. For whatever purpose the user defines. Default is OH.
DSS property name: `LineType`, DSS property index: 27.
"""
def _get_LineType_str(self) -> str:
return self._get_prop_string(27)
def _set_LineType_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_LineType(value, flags)
LineType_str = property(_get_LineType_str, _set_LineType_str) # type: str
"""
Code designating the type of line.
One of: OH, UG, UG_TS, UG_CN, SWT_LDBRK, SWT_FUSE, SWT_SECT, SWT_REC, SWT_DISC, SWT_BRK, SWT_ELBOW, BUSBAR
OpenDSS currently does not use this internally. For whatever purpose the user defines. Default is OH.
DSS property name: `LineType`, DSS property index: 27.
"""
def Like(self, value: AnyStr):
"""
Make like another object, e.g.:
New Capacitor.C2 like=c1 ...
DSS property name: `Like`, DSS property index: 28.
"""
self._set_string_o(28, value)
class LineCodeProperties(TypedDict):
NPhases: int
R1: float
X1: float
R0: float
X0: float
C1: float
C0: float
Units: Union[AnyStr, int, enums.LengthUnit]
RMatrix: Float64Array
XMatrix: Float64Array
CMatrix: Float64Array
BaseFreq: float
NormAmps: float
EmergAmps: float
FaultRate: float
PctPerm: float
Repair: float
Kron: bool
Rg: float
Xg: float
rho: float
Neutral: int
B1: float
B0: float
Seasons: int
Ratings: Float64Array
LineType: Union[AnyStr, int, enums.LineType]
Like: AnyStr
class LineCodeBatch(DSSBatch):
_cls_name = 'LineCode'
_obj_cls = LineCode
_cls_idx = 1
__slots__ = []
def edit(self, **kwargs: Unpack[LineCodeBatchProperties]) -> LineCodeBatch:
"""
Edit this LineCode batch.
This method will try to open a new edit context (if not already open),
edit the properties, and finalize the edit context for objects in the batch.
It can be seen as a shortcut to manually setting each property, or a Pythonic
analogous (but extended) to the DSS `BatchEdit` command.
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the objects.
:return: Returns itself to allow call chaining.
"""
self._edit(props=kwargs)
return self
if TYPE_CHECKING:
def __iter__(self) -> Iterator[LineCode]:
yield from DSSBatch.__iter__(self)
def _get_NPhases(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 1)
def _set_NPhases(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(1, value, flags)
NPhases = property(_get_NPhases, _set_NPhases) # type: BatchInt32ArrayProxy
"""
Number of phases in the line this line code data represents. Setting this property reinitializes the line code. Impedance matrix is reset for default symmetrical component.
DSS property name: `NPhases`, DSS property index: 1.
"""
def _get_R1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 2)
def _set_R1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(2, value, flags)
R1 = property(_get_R1, _set_R1) # type: BatchFloat64ArrayProxy
"""
Positive-sequence Resistance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also Rmatrix.
DSS property name: `R1`, DSS property index: 2.
"""
def _get_X1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 3)
def _set_X1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(3, value, flags)
X1 = property(_get_X1, _set_X1) # type: BatchFloat64ArrayProxy
"""
Positive-sequence Reactance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also Xmatrix
DSS property name: `X1`, DSS property index: 3.
"""
def _get_R0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 4)
def _set_R0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(4, value, flags)
R0 = property(_get_R0, _set_R0) # type: BatchFloat64ArrayProxy
"""
Zero-sequence Resistance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition.
DSS property name: `R0`, DSS property index: 4.
"""
def _get_X0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 5)
def _set_X0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(5, value, flags)
X0 = property(_get_X0, _set_X0) # type: BatchFloat64ArrayProxy
"""
Zero-sequence Reactance, ohms per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition.
DSS property name: `X0`, DSS property index: 5.
"""
def _get_C1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 6)
def _set_C1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(6, value, flags)
C1 = property(_get_C1, _set_C1) # type: BatchFloat64ArrayProxy
"""
Positive-sequence capacitance, nf per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also Cmatrix and B1.
DSS property name: `C1`, DSS property index: 6.
"""
def _get_C0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 7)
def _set_C0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(7, value, flags)
C0 = property(_get_C0, _set_C0) # type: BatchFloat64ArrayProxy
"""
Zero-sequence capacitance, nf per unit length. Setting any of R1, R0, X1, X0, C1, C0 forces the program to use the symmetrical component line definition. See also B0.
DSS property name: `C0`, DSS property index: 7.
"""
def _get_Units(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 8)
def _set_Units(self, value: Union[AnyStr, int, enums.LengthUnit, List[AnyStr], List[int], List[enums.LengthUnit], Int32Array], flags: enums.SetterFlags = 0):
if isinstance(value, (str, bytes)) or (isinstance(value, LIST_LIKE) and isinstance(value[0], (str, bytes))):
self._set_batch_string(8, value, flags)
return
self._set_batch_int32_array(8, value, flags)
Units = property(_get_Units, _set_Units) # type: BatchInt32ArrayProxy
"""
One of (ohms per ...) {none|mi|km|kft|m|me|ft|in|cm}. Default is none; assumes units agree with length units given in Line object
DSS property name: `Units`, DSS property index: 8.
"""
def _get_Units_str(self) -> List[str]:
return self._get_batch_str_prop(8)
def _set_Units_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_Units(value, flags)
Units_str = property(_get_Units_str, _set_Units_str) # type: List[str]
"""
One of (ohms per ...) {none|mi|km|kft|m|me|ft|in|cm}. Default is none; assumes units agree with length units given in Line object
DSS property name: `Units`, DSS property index: 8.
"""
def _get_RMatrix(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 9)
for x in self._unpack()
]
def _set_RMatrix(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(9, value, flags)
RMatrix = property(_get_RMatrix, _set_RMatrix) # type: List[Float64Array]
"""
Resistance matrix, lower triangle, ohms per unit length. Order of the matrix is the number of phases. May be used to specify the impedance of any line configuration. For balanced line models, you may use the standard symmetrical component data definition instead.
DSS property name: `RMatrix`, DSS property index: 9.
"""
def _get_XMatrix(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 10)
for x in self._unpack()
]
def _set_XMatrix(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(10, value, flags)
XMatrix = property(_get_XMatrix, _set_XMatrix) # type: List[Float64Array]
"""
Reactance matrix, lower triangle, ohms per unit length. Order of the matrix is the number of phases. May be used to specify the impedance of any line configuration. For balanced line models, you may use the standard symmetrical component data definition instead.
DSS property name: `XMatrix`, DSS property index: 10.
"""
def _get_CMatrix(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 11)
for x in self._unpack()
]
def _set_CMatrix(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(11, value, flags)
CMatrix = property(_get_CMatrix, _set_CMatrix) # type: List[Float64Array]
"""
Nodal Capacitance matrix, lower triangle, nf per unit length.Order of the matrix is the number of phases. May be used to specify the shunt capacitance of any line configuration. For balanced line models, you may use the standard symmetrical component data definition instead.
DSS property name: `CMatrix`, DSS property index: 11.
"""
def _get_BaseFreq(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 12)
def _set_BaseFreq(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(12, value, flags)
BaseFreq = property(_get_BaseFreq, _set_BaseFreq) # type: BatchFloat64ArrayProxy
"""
Frequency at which impedances are specified.
DSS property name: `BaseFreq`, DSS property index: 12.
"""
def _get_NormAmps(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 13)
def _set_NormAmps(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(13, value, flags)
NormAmps = property(_get_NormAmps, _set_NormAmps) # type: BatchFloat64ArrayProxy
"""
Normal ampere limit on line. This is the so-called Planning Limit. It may also be the value above which load will have to be dropped in a contingency. Usually about 75% - 80% of the emergency (one-hour) rating.
DSS property name: `NormAmps`, DSS property index: 13.
"""
def _get_EmergAmps(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 14)
def _set_EmergAmps(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(14, value, flags)
EmergAmps = property(_get_EmergAmps, _set_EmergAmps) # type: BatchFloat64ArrayProxy
"""
Emergency ampere limit on line (usually one-hour rating).
DSS property name: `EmergAmps`, DSS property index: 14.
"""
def _get_FaultRate(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 15)
def _set_FaultRate(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(15, value, flags)
FaultRate = property(_get_FaultRate, _set_FaultRate) # type: BatchFloat64ArrayProxy
"""
Number of faults per unit length per year.
DSS property name: `FaultRate`, DSS property index: 15.
"""
def _get_PctPerm(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 16)
def _set_PctPerm(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(16, value, flags)
PctPerm = property(_get_PctPerm, _set_PctPerm) # type: BatchFloat64ArrayProxy
"""
Percentage of the faults that become permanent.
DSS property name: `PctPerm`, DSS property index: 16.
"""
def _get_Repair(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 17)
def _set_Repair(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(17, value, flags)
Repair = property(_get_Repair, _set_Repair) # type: BatchFloat64ArrayProxy
"""
Hours to repair.
DSS property name: `Repair`, DSS property index: 17.
"""
def Kron(self, value: Union[bool, List[bool]] = True, flags: enums.SetterFlags = 0):
"""
Kron = Y/N. Default=N. Perform Kron reduction on the impedance matrix after it is formed, reducing order by 1. Eliminates the conductor designated by the "Neutral=" property. Do this after the R, X, and C matrices are defined. Ignored for symmetrical components. May be issued more than once to eliminate more than one conductor by resetting the Neutral property after the previous invoking of this property. Generally, you do not want to do a Kron reduction on the matrix if you intend to solve at a frequency other than the base frequency and exploit the Rg and Xg values.
DSS property name: `Kron`, DSS property index: 18.
"""
self._set_batch_int32_array(18, value, flags)
def _get_Rg(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 19)
def _set_Rg(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(19, value, flags)
Rg = property(_get_Rg, _set_Rg) # type: BatchFloat64ArrayProxy
"""
Carson earth return resistance per unit length used to compute impedance values at base frequency. For making better frequency adjustments. Default is 0.01805 = 60 Hz value in ohms per kft (matches default line impedances). This value is required for harmonic solutions if you wish to adjust the earth return impedances for frequency. If not, set both Rg and Xg = 0.
DSS property name: `Rg`, DSS property index: 19.
"""
def _get_Xg(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 20)
def _set_Xg(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(20, value, flags)
Xg = property(_get_Xg, _set_Xg) # type: BatchFloat64ArrayProxy
"""
Carson earth return reactance per unit length used to compute impedance values at base frequency. For making better frequency adjustments. Default value is 0.155081 = 60 Hz value in ohms per kft (matches default line impedances). This value is required for harmonic solutions if you wish to adjust the earth return impedances for frequency. If not, set both Rg and Xg = 0.
DSS property name: `Xg`, DSS property index: 20.
"""
def _get_rho(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 21)
def _set_rho(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(21, value, flags)
rho = property(_get_rho, _set_rho) # type: BatchFloat64ArrayProxy
"""
Default=100 meter ohms. Earth resitivity used to compute earth correction factor.
DSS property name: `rho`, DSS property index: 21.
"""
def _get_Neutral(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 22)
def _set_Neutral(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(22, value, flags)
Neutral = property(_get_Neutral, _set_Neutral) # type: BatchInt32ArrayProxy
"""
Designates which conductor is the "neutral" conductor that will be eliminated by Kron reduction. Default is the last conductor (nphases value). After Kron reduction is set to 0. Subsequent issuing of Kron=Yes will not do anything until this property is set to a legal value. Applies only to LineCodes defined by R, X, and C matrix.
DSS property name: `Neutral`, DSS property index: 22.
"""
def _get_B1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 23)
def _set_B1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(23, value, flags)
B1 = property(_get_B1, _set_B1) # type: BatchFloat64ArrayProxy
"""
Alternate way to specify C1. MicroS per unit length
DSS property name: `B1`, DSS property index: 23.
"""
def _get_B0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 24)
def _set_B0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(24, value, flags)
B0 = property(_get_B0, _set_B0) # type: BatchFloat64ArrayProxy
"""
Alternate way to specify C0. MicroS per unit length
DSS property name: `B0`, DSS property index: 24.
"""
def _get_Seasons(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 25)
def _set_Seasons(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(25, value, flags)
Seasons = property(_get_Seasons, _set_Seasons) # type: BatchInt32ArrayProxy
"""
Defines the number of ratings to be defined for the wire, to be used only when defining seasonal ratings using the "Ratings" property.
DSS property name: `Seasons`, DSS property index: 25.
"""
def _get_Ratings(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 26)
for x in self._unpack()
]
def _set_Ratings(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(26, value, flags)
Ratings = property(_get_Ratings, _set_Ratings) # type: List[Float64Array]
"""
An array of ratings to be used when the seasonal ratings flag is True. It can be used to insert
multiple ratings to change during a QSTS simulation to evaluate different ratings in lines.
DSS property name: `Ratings`, DSS property index: 26.
"""
def _get_LineType(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 27)
def _set_LineType(self, value: Union[AnyStr, int, enums.LineType, List[AnyStr], List[int], List[enums.LineType], Int32Array], flags: enums.SetterFlags = 0):
if isinstance(value, (str, bytes)) or (isinstance(value, LIST_LIKE) and isinstance(value[0], (str, bytes))):
self._set_batch_string(27, value, flags)
return
self._set_batch_int32_array(27, value, flags)
LineType = property(_get_LineType, _set_LineType) # type: BatchInt32ArrayProxy
"""
Code designating the type of line.
One of: OH, UG, UG_TS, UG_CN, SWT_LDBRK, SWT_FUSE, SWT_SECT, SWT_REC, SWT_DISC, SWT_BRK, SWT_ELBOW, BUSBAR
OpenDSS currently does not use this internally. For whatever purpose the user defines. Default is OH.
DSS property name: `LineType`, DSS property index: 27.
"""
def _get_LineType_str(self) -> List[str]:
return self._get_batch_str_prop(27)
def _set_LineType_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_LineType(value, flags)
LineType_str = property(_get_LineType_str, _set_LineType_str) # type: List[str]
"""
Code designating the type of line.
One of: OH, UG, UG_TS, UG_CN, SWT_LDBRK, SWT_FUSE, SWT_SECT, SWT_REC, SWT_DISC, SWT_BRK, SWT_ELBOW, BUSBAR
OpenDSS currently does not use this internally. For whatever purpose the user defines. Default is OH.
DSS property name: `LineType`, DSS property index: 27.
"""
def Like(self, value: AnyStr, flags: enums.SetterFlags = 0):
"""
Make like another object, e.g.:
New Capacitor.C2 like=c1 ...
DSS property name: `Like`, DSS property index: 28.
"""
self._set_batch_string(28, value, flags)
class LineCodeBatchProperties(TypedDict):
NPhases: Union[int, Int32Array]
R1: Union[float, Float64Array]
X1: Union[float, Float64Array]
R0: Union[float, Float64Array]
X0: Union[float, Float64Array]
C1: Union[float, Float64Array]
C0: Union[float, Float64Array]
Units: Union[AnyStr, int, enums.LengthUnit, List[AnyStr], List[int], List[enums.LengthUnit], Int32Array]
RMatrix: Float64Array
XMatrix: Float64Array
CMatrix: Float64Array
BaseFreq: Union[float, Float64Array]
NormAmps: Union[float, Float64Array]
EmergAmps: Union[float, Float64Array]
FaultRate: Union[float, Float64Array]
PctPerm: Union[float, Float64Array]
Repair: Union[float, Float64Array]
Kron: bool
Rg: Union[float, Float64Array]
Xg: Union[float, Float64Array]
rho: Union[float, Float64Array]
Neutral: Union[int, Int32Array]
B1: Union[float, Float64Array]
B0: Union[float, Float64Array]
Seasons: Union[int, Int32Array]
Ratings: Float64Array
LineType: Union[AnyStr, int, enums.LineType, List[AnyStr], List[int], List[enums.LineType], Int32Array]
Like: AnyStr
class ILineCode(IDSSObj, LineCodeBatch):
__slots__ = IDSSObj._extra_slots
def __init__(self, iobj):
IDSSObj.__init__(self, iobj, LineCode, LineCodeBatch)
LineCodeBatch.__init__(self, self._api_util, sync_cls_idx=LineCode._cls_idx)
if TYPE_CHECKING:
def __getitem__(self, name_or_idx: Union[AnyStr, int]) -> LineCode:
return self.find(name_or_idx)
def batch(self, **kwargs) -> LineCodeBatch: #TODO: add annotation to kwargs (specialized typed dict)
"""
Creates a new batch handler of (existing) LineCode objects
"""
return self._batch_cls(self._api_util, **kwargs)