-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXfmrCode.py
1298 lines (962 loc) · 47.4 KB
/
XfmrCode.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
class XfmrCode(DSSObj):
__slots__ = DSSObj._extra_slots
_cls_name = 'XfmrCode'
_cls_idx = 14
_cls_int_idx = {
1,
2,
3,
30,
38,
}
_cls_float_idx = {
5,
6,
7,
8,
9,
10,
15,
16,
17,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
31,
32,
34,
35,
36,
37,
}
_cls_prop_idx = {
'phases': 1,
'windings': 2,
'wdg': 3,
'conn': 4,
'kv': 5,
'kva': 6,
'tap': 7,
'pctr': 8,
'%r': 8,
'rneut': 9,
'xneut': 10,
'conns': 11,
'kvs': 12,
'kvas': 13,
'taps': 14,
'xhl': 15,
'xht': 16,
'xlt': 17,
'xscarray': 18,
'thermal': 19,
'n': 20,
'm': 21,
'flrise': 22,
'hsrise': 23,
'pctloadloss': 24,
'%loadloss': 24,
'pctnoloadloss': 25,
'%noloadloss': 25,
'normhkva': 26,
'emerghkva': 27,
'maxtap': 28,
'mintap': 29,
'numtaps': 30,
'pctimag': 31,
'%imag': 31,
'ppm_antifloat': 32,
'pctrs': 33,
'%rs': 33,
'x12': 34,
'x13': 35,
'x23': 36,
'rdcohms': 37,
'seasons': 38,
'ratings': 39,
'like': 40,
}
def edit(self, **kwargs: Unpack[XfmrCodeProperties]) -> XfmrCode:
"""
Edit this XfmrCode.
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_Phases(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 1)
def _set_Phases(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 1, value, flags)
Phases = property(_get_Phases, _set_Phases) # type: int
"""
Number of phases this transformer. Default is 3.
DSS property name: `Phases`, DSS property index: 1.
"""
def _get_Windings(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 2)
def _set_Windings(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 2, value, flags)
Windings = property(_get_Windings, _set_Windings) # type: int
"""
Number of windings, this transformers. (Also is the number of terminals) Default is 2. This property triggers memory allocation for the Transformer and will cause other properties to revert to default values.
DSS property name: `Windings`, DSS property index: 2.
"""
def _get_pctR(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 8)
def _set_pctR(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(8, value, flags)
pctR = property(_get_pctR, _set_pctR) # type: Float64Array
"""
Percent resistance this winding. (half of total for a 2-winding).
DSS property name: `%R`, DSS property index: 8.
"""
def _get_RNeut(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 9)
def _set_RNeut(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(9, value, flags)
RNeut = property(_get_RNeut, _set_RNeut) # type: Float64Array
"""
Default = -1. Neutral resistance of wye (star)-connected winding in actual ohms.If entered as a negative value, the neutral is assumed to be open, or floating.
DSS property name: `RNeut`, DSS property index: 9.
"""
def _get_XNeut(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 10)
def _set_XNeut(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(10, value, flags)
XNeut = property(_get_XNeut, _set_XNeut) # type: Float64Array
"""
Neutral reactance of wye(star)-connected winding in actual ohms. May be + or -.
DSS property name: `XNeut`, DSS property index: 10.
"""
def _get_Conns(self) -> List[enums.Connection]:
return [enums.Connection(val) for val in self._get_int32_list(self._lib.Obj_GetInt32Array, self._ptr, 11)]
def _set_Conns(self, value: Union[List[Union[int, enums.Connection]], List[AnyStr]], flags: enums.SetterFlags = 0):
if len(value) and not isinstance(value[0], int):
self._set_string_array_o(11, value, flags)
return
self._set_int32_array_o(11, value, flags)
Conns = property(_get_Conns, _set_Conns) # type: enums.Connection
"""
Use this to specify all the Winding connections at once using an array. Example:
New Transformer.T1 buses="Hibus, lowbus"
~ conns=(delta, wye)
DSS property name: `Conns`, DSS property index: 11.
"""
def _get_Conns_str(self) -> List[str]:
return self._get_string_array(self._lib.Obj_GetStringArray, self._ptr, 11)
def _set_Conns_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_Conns(value, flags)
Conns_str = property(_get_Conns_str, _set_Conns_str) # type: List[str]
"""
Use this to specify all the Winding connections at once using an array. Example:
New Transformer.T1 buses="Hibus, lowbus"
~ conns=(delta, wye)
DSS property name: `Conns`, DSS property index: 11.
"""
def _get_kVs(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 12)
def _set_kVs(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(12, value, flags)
kVs = property(_get_kVs, _set_kVs) # type: Float64Array
"""
Use this to specify the kV ratings of all windings at once using an array. Example:
New Transformer.T1 buses="Hibus, lowbus"
~ conns=(delta, wye)
~ kvs=(115, 12.47)
See kV= property for voltage rules.
DSS property name: `kVs`, DSS property index: 12.
"""
def _get_kVAs(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 13)
def _set_kVAs(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(13, value, flags)
kVAs = property(_get_kVAs, _set_kVAs) # type: Float64Array
"""
Use this to specify the kVA ratings of all windings at once using an array.
DSS property name: `kVAs`, DSS property index: 13.
"""
def _get_Taps(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 14)
def _set_Taps(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(14, value, flags)
Taps = property(_get_Taps, _set_Taps) # type: Float64Array
"""
Use this to specify the normal p.u. tap of all windings at once using an array.
DSS property name: `Taps`, DSS property index: 14.
"""
def _get_XHL(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 15)
def _set_XHL(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 15, value, flags)
XHL = property(_get_XHL, _set_XHL) # type: float
"""
Use this to specify the percent reactance, H-L (winding 1 to winding 2). Use for 2- or 3-winding transformers. On the kva base of winding 1.
DSS property name: `XHL`, DSS property index: 15.
"""
def _get_XHT(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 16)
def _set_XHT(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 16, value, flags)
XHT = property(_get_XHT, _set_XHT) # type: float
"""
Use this to specify the percent reactance, H-T (winding 1 to winding 3). Use for 3-winding transformers only. On the kVA base of winding 1.
DSS property name: `XHT`, DSS property index: 16.
"""
def _get_XLT(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 17)
def _set_XLT(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 17, value, flags)
XLT = property(_get_XLT, _set_XLT) # type: float
"""
Use this to specify the percent reactance, L-T (winding 2 to winding 3). Use for 3-winding transformers only. On the kVA base of winding 1.
DSS property name: `XLT`, DSS property index: 17.
"""
def _get_XSCArray(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 18)
def _set_XSCArray(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(18, value, flags)
XSCArray = property(_get_XSCArray, _set_XSCArray) # type: Float64Array
"""
Use this to specify the percent reactance between all pairs of windings as an array. All values are on the kVA base of winding 1. The order of the values is as follows:
(x12 13 14... 23 24.. 34 ..)
There will be n(n-1)/2 values, where n=number of windings.
DSS property name: `XSCArray`, DSS property index: 18.
"""
def _get_Thermal(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 19)
def _set_Thermal(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 19, value, flags)
Thermal = property(_get_Thermal, _set_Thermal) # type: float
"""
Thermal time constant of the transformer in hours. Typically about 2.
DSS property name: `Thermal`, DSS property index: 19.
"""
def _get_n(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 20)
def _set_n(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 20, value, flags)
n = property(_get_n, _set_n) # type: float
"""
n Exponent for thermal properties in IEEE C57. Typically 0.8.
DSS property name: `n`, DSS property index: 20.
"""
def _get_m(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 21)
def _set_m(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 21, value, flags)
m = property(_get_m, _set_m) # type: float
"""
m Exponent for thermal properties in IEEE C57. Typically 0.9 - 1.0
DSS property name: `m`, DSS property index: 21.
"""
def _get_FLRise(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 22)
def _set_FLRise(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 22, value, flags)
FLRise = property(_get_FLRise, _set_FLRise) # type: float
"""
Temperature rise, deg C, for full load. Default is 65.
DSS property name: `FLRise`, DSS property index: 22.
"""
def _get_HSRise(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 23)
def _set_HSRise(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 23, value, flags)
HSRise = property(_get_HSRise, _set_HSRise) # type: float
"""
Hot spot temperature rise, deg C. Default is 15.
DSS property name: `HSRise`, DSS property index: 23.
"""
def _get_pctLoadLoss(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 24)
def _set_pctLoadLoss(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 24, value, flags)
pctLoadLoss = property(_get_pctLoadLoss, _set_pctLoadLoss) # type: float
"""
Percent load loss at full load. The %R of the High and Low windings (1 and 2) are adjusted to agree at rated kVA loading.
DSS property name: `%LoadLoss`, DSS property index: 24.
"""
def _get_pctNoLoadLoss(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 25)
def _set_pctNoLoadLoss(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 25, value, flags)
pctNoLoadLoss = property(_get_pctNoLoadLoss, _set_pctNoLoadLoss) # type: float
"""
Percent no load losses at rated excitation voltage. Default is 0. Converts to a resistance in parallel with the magnetizing impedance in each winding.
DSS property name: `%NoLoadLoss`, DSS property index: 25.
"""
def _get_NormHkVA(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 26)
def _set_NormHkVA(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 26, value, flags)
NormHkVA = property(_get_NormHkVA, _set_NormHkVA) # type: float
"""
Normal maximum kVA rating of H winding (winding 1). Usually 100% - 110% of maximum nameplate rating, depending on load shape. Defaults to 110% of kVA rating of Winding 1.
DSS property name: `NormHkVA`, DSS property index: 26.
"""
def _get_EmergHkVA(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 27)
def _set_EmergHkVA(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 27, value, flags)
EmergHkVA = property(_get_EmergHkVA, _set_EmergHkVA) # type: float
"""
Emergency (contingency) kVA rating of H winding (winding 1). Usually 140% - 150% of maximum nameplate rating, depending on load shape. Defaults to 150% of kVA rating of Winding 1.
DSS property name: `EmergHkVA`, DSS property index: 27.
"""
def _get_MaxTap(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 28)
def _set_MaxTap(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(28, value, flags)
MaxTap = property(_get_MaxTap, _set_MaxTap) # type: Float64Array
"""
Max per unit tap for the active winding. Default is 1.10
DSS property name: `MaxTap`, DSS property index: 28.
"""
def _get_MinTap(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 29)
def _set_MinTap(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(29, value, flags)
MinTap = property(_get_MinTap, _set_MinTap) # type: Float64Array
"""
Min per unit tap for the active winding. Default is 0.90
DSS property name: `MinTap`, DSS property index: 29.
"""
def _get_NumTaps(self) -> Int32Array:
return self._get_int32_array(self._lib.Obj_GetInt32Array, self._ptr, 30)
def _set_NumTaps(self, value: Int32Array, flags: enums.SetterFlags = 0):
self._set_int32_array_o(30, value, flags)
NumTaps = property(_get_NumTaps, _set_NumTaps) # type: Int32Array
"""
Total number of taps between min and max tap. Default is 32.
DSS property name: `NumTaps`, DSS property index: 30.
"""
def _get_pctIMag(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 31)
def _set_pctIMag(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 31, value, flags)
pctIMag = property(_get_pctIMag, _set_pctIMag) # type: float
"""
Percent magnetizing current. Default=0.0. Magnetizing branch is in parallel with windings in each phase. Also, see "ppm_antifloat".
DSS property name: `%IMag`, DSS property index: 31.
"""
def _get_ppm_Antifloat(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 32)
def _set_ppm_Antifloat(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 32, value, flags)
ppm_Antifloat = property(_get_ppm_Antifloat, _set_ppm_Antifloat) # type: float
"""
Default=1 ppm. Parts per million of transformer winding VA rating connected to ground to protect against accidentally floating a winding without a reference. If positive then the effect is adding a very large reactance to ground. If negative, then a capacitor.
DSS property name: `ppm_Antifloat`, DSS property index: 32.
"""
def _get_pctRs(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 33)
def _set_pctRs(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(33, value, flags)
pctRs = property(_get_pctRs, _set_pctRs) # type: Float64Array
"""
Use this property to specify all the winding %resistances using an array. Example:
New Transformer.T1 buses="Hibus, lowbus" ~ %Rs=(0.2 0.3)
DSS property name: `%Rs`, DSS property index: 33.
"""
def _get_X12(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 34)
def _set_X12(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 34, value, flags)
X12 = property(_get_X12, _set_X12) # type: float
"""
Alternative to XHL for specifying the percent reactance from winding 1 to winding 2. Use for 2- or 3-winding transformers. Percent on the kVA base of winding 1.
DSS property name: `X12`, DSS property index: 34.
"""
def _get_X13(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 35)
def _set_X13(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 35, value, flags)
X13 = property(_get_X13, _set_X13) # type: float
"""
Alternative to XHT for specifying the percent reactance from winding 1 to winding 3. Use for 3-winding transformers only. Percent on the kVA base of winding 1.
DSS property name: `X13`, DSS property index: 35.
"""
def _get_X23(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 36)
def _set_X23(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 36, value, flags)
X23 = property(_get_X23, _set_X23) # type: float
"""
Alternative to XLT for specifying the percent reactance from winding 2 to winding 3.Use for 3-winding transformers only. Percent on the kVA base of winding 1.
DSS property name: `X23`, DSS property index: 36.
"""
def _get_RDCOhms(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 37)
def _set_RDCOhms(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(37, value, flags)
RDCOhms = property(_get_RDCOhms, _set_RDCOhms) # type: Float64Array
"""
Winding dc resistance in OHMS. Useful for GIC analysis. From transformer test report. Defaults to 85% of %R property
DSS property name: `RDCOhms`, DSS property index: 37.
"""
def _get_Seasons(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 38)
def _set_Seasons(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 38, value, flags)
Seasons = property(_get_Seasons, _set_Seasons) # type: int
"""
Defines the number of ratings to be defined for the transfomer, to be used only when defining seasonal ratings using the "Ratings" property.
DSS property name: `Seasons`, DSS property index: 38.
"""
def _get_Ratings(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 39)
def _set_Ratings(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(39, 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 transformers.
DSS property name: `Ratings`, DSS property index: 39.
"""
def Like(self, value: AnyStr):
"""
Make like another object, e.g.:
New Capacitor.C2 like=c1 ...
DSS property name: `Like`, DSS property index: 40.
"""
self._set_string_o(40, value)
class XfmrCodeProperties(TypedDict):
Phases: int
Windings: int
pctR: Float64Array
RNeut: Float64Array
XNeut: Float64Array
Conns: Union[List[Union[int, enums.Connection]], List[AnyStr]]
kVs: Float64Array
kVAs: Float64Array
Taps: Float64Array
XHL: float
XHT: float
XLT: float
XSCArray: Float64Array
Thermal: float
n: float
m: float
FLRise: float
HSRise: float
pctLoadLoss: float
pctNoLoadLoss: float
NormHkVA: float
EmergHkVA: float
MaxTap: Float64Array
MinTap: Float64Array
NumTaps: Int32Array
pctIMag: float
ppm_Antifloat: float
pctRs: Float64Array
X12: float
X13: float
X23: float
RDCOhms: Float64Array
Seasons: int
Ratings: Float64Array
Like: AnyStr
class XfmrCodeBatch(DSSBatch):
_cls_name = 'XfmrCode'
_obj_cls = XfmrCode
_cls_idx = 14
__slots__ = []
def edit(self, **kwargs: Unpack[XfmrCodeBatchProperties]) -> XfmrCodeBatch:
"""
Edit this XfmrCode 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[XfmrCode]:
yield from DSSBatch.__iter__(self)
def _get_Phases(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 1)
def _set_Phases(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(1, value, flags)
Phases = property(_get_Phases, _set_Phases) # type: BatchInt32ArrayProxy
"""
Number of phases this transformer. Default is 3.
DSS property name: `Phases`, DSS property index: 1.
"""
def _get_Windings(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 2)
def _set_Windings(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(2, value, flags)
Windings = property(_get_Windings, _set_Windings) # type: BatchInt32ArrayProxy
"""
Number of windings, this transformers. (Also is the number of terminals) Default is 2. This property triggers memory allocation for the Transformer and will cause other properties to revert to default values.
DSS property name: `Windings`, DSS property index: 2.
"""
def _get_pctR(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 8)
for x in self._unpack()
]
def _set_pctR(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(8, value, flags)
pctR = property(_get_pctR, _set_pctR) # type: List[Float64Array]
"""
Percent resistance this winding. (half of total for a 2-winding).
DSS property name: `%R`, DSS property index: 8.
"""
def _get_RNeut(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 9)
for x in self._unpack()
]
def _set_RNeut(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(9, value, flags)
RNeut = property(_get_RNeut, _set_RNeut) # type: List[Float64Array]
"""
Default = -1. Neutral resistance of wye (star)-connected winding in actual ohms.If entered as a negative value, the neutral is assumed to be open, or floating.
DSS property name: `RNeut`, DSS property index: 9.
"""
def _get_XNeut(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 10)
for x in self._unpack()
]
def _set_XNeut(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(10, value, flags)
XNeut = property(_get_XNeut, _set_XNeut) # type: List[Float64Array]
"""
Neutral reactance of wye(star)-connected winding in actual ohms. May be + or -.
DSS property name: `XNeut`, DSS property index: 10.
"""
def _get_Conns(self) -> List[Int32Array]:
return [
self._get_int32_array(self._lib.Obj_GetInt32Array, x, 11)
for x in self._unpack()
]
def _set_Conns(self, value: Union[List[Union[int, enums.Connection]], List[AnyStr]], flags: enums.SetterFlags = 0): #TODO: list of lists
if len(value) and not isinstance(value[0], int):
value, value_ptr, value_count = self._prepare_string_array(value)
for x in self._unpack():
self._lib.Obj_SetStringArray(x, 11, value_ptr, value_count, flags)
self._check_for_error()
return
self._set_batch_int32_array(11, value, flags)
Conns = property(_get_Conns, _set_Conns) # type: List[Int32Array]
"""
Use this to specify all the Winding connections at once using an array. Example:
New Transformer.T1 buses="Hibus, lowbus"
~ conns=(delta, wye)
DSS property name: `Conns`, DSS property index: 11.
"""
def _get_Conns_str(self) -> List[List[str]]:
return self._get_string_ll(11)
def _set_Conns_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_Conns(value, flags)
Conns_str = property(_get_Conns_str, _set_Conns_str) # type: List[List[str]]
"""
Use this to specify all the Winding connections at once using an array. Example:
New Transformer.T1 buses="Hibus, lowbus"
~ conns=(delta, wye)
DSS property name: `Conns`, DSS property index: 11.
"""
def _get_kVs(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 12)
for x in self._unpack()
]
def _set_kVs(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(12, value, flags)
kVs = property(_get_kVs, _set_kVs) # type: List[Float64Array]
"""
Use this to specify the kV ratings of all windings at once using an array. Example:
New Transformer.T1 buses="Hibus, lowbus"
~ conns=(delta, wye)
~ kvs=(115, 12.47)
See kV= property for voltage rules.
DSS property name: `kVs`, DSS property index: 12.
"""
def _get_kVAs(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 13)
for x in self._unpack()
]
def _set_kVAs(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(13, value, flags)
kVAs = property(_get_kVAs, _set_kVAs) # type: List[Float64Array]
"""
Use this to specify the kVA ratings of all windings at once using an array.
DSS property name: `kVAs`, DSS property index: 13.
"""
def _get_Taps(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 14)
for x in self._unpack()
]
def _set_Taps(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(14, value, flags)
Taps = property(_get_Taps, _set_Taps) # type: List[Float64Array]
"""
Use this to specify the normal p.u. tap of all windings at once using an array.
DSS property name: `Taps`, DSS property index: 14.
"""
def _get_XHL(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 15)
def _set_XHL(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(15, value, flags)
XHL = property(_get_XHL, _set_XHL) # type: BatchFloat64ArrayProxy
"""
Use this to specify the percent reactance, H-L (winding 1 to winding 2). Use for 2- or 3-winding transformers. On the kva base of winding 1.
DSS property name: `XHL`, DSS property index: 15.
"""
def _get_XHT(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 16)
def _set_XHT(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(16, value, flags)
XHT = property(_get_XHT, _set_XHT) # type: BatchFloat64ArrayProxy
"""
Use this to specify the percent reactance, H-T (winding 1 to winding 3). Use for 3-winding transformers only. On the kVA base of winding 1.
DSS property name: `XHT`, DSS property index: 16.
"""
def _get_XLT(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 17)
def _set_XLT(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(17, value, flags)
XLT = property(_get_XLT, _set_XLT) # type: BatchFloat64ArrayProxy
"""
Use this to specify the percent reactance, L-T (winding 2 to winding 3). Use for 3-winding transformers only. On the kVA base of winding 1.
DSS property name: `XLT`, DSS property index: 17.
"""
def _get_XSCArray(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 18)
for x in self._unpack()
]
def _set_XSCArray(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(18, value, flags)
XSCArray = property(_get_XSCArray, _set_XSCArray) # type: List[Float64Array]
"""
Use this to specify the percent reactance between all pairs of windings as an array. All values are on the kVA base of winding 1. The order of the values is as follows:
(x12 13 14... 23 24.. 34 ..)
There will be n(n-1)/2 values, where n=number of windings.
DSS property name: `XSCArray`, DSS property index: 18.
"""
def _get_Thermal(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 19)
def _set_Thermal(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(19, value, flags)
Thermal = property(_get_Thermal, _set_Thermal) # type: BatchFloat64ArrayProxy
"""
Thermal time constant of the transformer in hours. Typically about 2.
DSS property name: `Thermal`, DSS property index: 19.
"""
def _get_n(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 20)
def _set_n(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(20, value, flags)
n = property(_get_n, _set_n) # type: BatchFloat64ArrayProxy
"""
n Exponent for thermal properties in IEEE C57. Typically 0.8.
DSS property name: `n`, DSS property index: 20.
"""
def _get_m(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 21)
def _set_m(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(21, value, flags)
m = property(_get_m, _set_m) # type: BatchFloat64ArrayProxy
"""
m Exponent for thermal properties in IEEE C57. Typically 0.9 - 1.0
DSS property name: `m`, DSS property index: 21.
"""
def _get_FLRise(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 22)
def _set_FLRise(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(22, value, flags)
FLRise = property(_get_FLRise, _set_FLRise) # type: BatchFloat64ArrayProxy
"""
Temperature rise, deg C, for full load. Default is 65.
DSS property name: `FLRise`, DSS property index: 22.
"""
def _get_HSRise(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 23)
def _set_HSRise(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(23, value, flags)
HSRise = property(_get_HSRise, _set_HSRise) # type: BatchFloat64ArrayProxy
"""
Hot spot temperature rise, deg C. Default is 15.
DSS property name: `HSRise`, DSS property index: 23.
"""
def _get_pctLoadLoss(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 24)
def _set_pctLoadLoss(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(24, value, flags)
pctLoadLoss = property(_get_pctLoadLoss, _set_pctLoadLoss) # type: BatchFloat64ArrayProxy
"""
Percent load loss at full load. The %R of the High and Low windings (1 and 2) are adjusted to agree at rated kVA loading.
DSS property name: `%LoadLoss`, DSS property index: 24.
"""
def _get_pctNoLoadLoss(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 25)
def _set_pctNoLoadLoss(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(25, value, flags)
pctNoLoadLoss = property(_get_pctNoLoadLoss, _set_pctNoLoadLoss) # type: BatchFloat64ArrayProxy
"""
Percent no load losses at rated excitation voltage. Default is 0. Converts to a resistance in parallel with the magnetizing impedance in each winding.
DSS property name: `%NoLoadLoss`, DSS property index: 25.
"""
def _get_NormHkVA(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 26)
def _set_NormHkVA(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(26, value, flags)
NormHkVA = property(_get_NormHkVA, _set_NormHkVA) # type: BatchFloat64ArrayProxy
"""
Normal maximum kVA rating of H winding (winding 1). Usually 100% - 110% of maximum nameplate rating, depending on load shape. Defaults to 110% of kVA rating of Winding 1.