-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVsource.py
1534 lines (1131 loc) · 59.8 KB
/
Vsource.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
from .PCElement import PCElementBatchMixin, PCElementMixin
from .CircuitElement import CircuitElementBatchMixin, CircuitElementMixin
from .LoadShape import LoadShape
from .Spectrum import Spectrum as SpectrumObj
class Vsource(DSSObj, CircuitElementMixin, PCElementMixin):
__slots__ = DSSObj._extra_slots + CircuitElementMixin._extra_slots + PCElementMixin._extra_slots
_cls_name = 'Vsource'
_cls_idx = 16
_cls_int_idx = {
6,
17,
18,
30,
34,
}
_cls_float_idx = {
2,
3,
4,
5,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
26,
33,
}
_cls_prop_idx = {
'bus1': 1,
'basekv': 2,
'pu': 3,
'angle': 4,
'frequency': 5,
'phases': 6,
'mvasc3': 7,
'mvasc1': 8,
'x1r1': 9,
'x0r0': 10,
'isc3': 11,
'isc1': 12,
'r1': 13,
'x1': 14,
'r0': 15,
'x0': 16,
'scantype': 17,
'sequence': 18,
'bus2': 19,
'z1': 20,
'z0': 21,
'z2': 22,
'puz1': 23,
'puz0': 24,
'puz2': 25,
'basemva': 26,
'yearly': 27,
'daily': 28,
'duty': 29,
'model': 30,
'puzideal': 31,
'spectrum': 32,
'basefreq': 33,
'enabled': 34,
'like': 35,
}
def __init__(self, api_util, ptr):
DSSObj.__init__(self, api_util, ptr)
CircuitElementMixin.__init__(self)
PCElementMixin.__init__(self)
def edit(self, **kwargs: Unpack[VsourceProperties]) -> Vsource:
"""
Edit this Vsource.
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_Bus1(self) -> str:
return self._get_prop_string(1)
def _set_Bus1(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(1, value, flags)
Bus1 = property(_get_Bus1, _set_Bus1) # type: str
"""
Name of bus to which the main terminal (1) is connected.
bus1=busname
bus1=busname.1.2.3
The VSOURCE object is a two-terminal voltage source (thevenin equivalent). Bus2 defaults to Bus1 with all phases connected to ground (node 0) unless previously specified. This is a Yg connection. If you want something different, define the Bus2 property explicitly.
DSS property name: `Bus1`, DSS property index: 1.
"""
def _get_BasekV(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 2)
def _set_BasekV(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 2, value, flags)
BasekV = property(_get_BasekV, _set_BasekV) # type: float
"""
Base Source kV, usually phase-phase (L-L) unless you are making a positive-sequence model or 1-phase modelin which case, it will be phase-neutral (L-N) kV.
DSS property name: `BasekV`, DSS property index: 2.
"""
def _get_pu(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 3)
def _set_pu(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 3, value, flags)
pu = property(_get_pu, _set_pu) # type: float
"""
Per unit of the base voltage that the source is actually operating at.
"pu=1.05"
DSS property name: `pu`, DSS property index: 3.
"""
def _get_Angle(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 4)
def _set_Angle(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 4, value, flags)
Angle = property(_get_Angle, _set_Angle) # type: float
"""
Phase angle in degrees of first phase: e.g.,Angle=10.3
DSS property name: `Angle`, DSS property index: 4.
"""
def _get_Frequency(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 5)
def _set_Frequency(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 5, value, flags)
Frequency = property(_get_Frequency, _set_Frequency) # type: float
"""
Source frequency. Defaults to system default base frequency.
DSS property name: `Frequency`, DSS property index: 5.
"""
def _get_Phases(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 6)
def _set_Phases(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 6, value, flags)
Phases = property(_get_Phases, _set_Phases) # type: int
"""
Number of phases. Defaults to 3.
DSS property name: `Phases`, DSS property index: 6.
"""
def _get_MVASC3(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 7)
def _set_MVASC3(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 7, value, flags)
MVASC3 = property(_get_MVASC3, _set_MVASC3) # type: float
"""
MVA Short circuit, 3-phase fault. Default = 2000. Z1 is determined by squaring the base kv and dividing by this value. For single-phase source, this value is not used.
DSS property name: `MVASC3`, DSS property index: 7.
"""
def _get_MVASC1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 8)
def _set_MVASC1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 8, value, flags)
MVASC1 = property(_get_MVASC1, _set_MVASC1) # type: float
"""
MVA Short Circuit, 1-phase fault. Default = 2100. The "single-phase impedance", Zs, is determined by squaring the base kV and dividing by this value. Then Z0 is determined by Z0 = 3Zs - 2Z1. For 1-phase sources, Zs is used directly. Use X0R0 to define X/R ratio for 1-phase source.
DSS property name: `MVASC1`, DSS property index: 8.
"""
def _get_X1R1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 9)
def _set_X1R1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 9, value, flags)
X1R1 = property(_get_X1R1, _set_X1R1) # type: float
"""
Positive-sequence X/R ratio. Default = 4.
DSS property name: `X1R1`, DSS property index: 9.
"""
def _get_X0R0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 10)
def _set_X0R0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 10, value, flags)
X0R0 = property(_get_X0R0, _set_X0R0) # type: float
"""
Zero-sequence X/R ratio.Default = 3.
DSS property name: `X0R0`, DSS property index: 10.
"""
def _get_Isc3(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 11)
def _set_Isc3(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 11, value, flags)
Isc3 = property(_get_Isc3, _set_Isc3) # type: float
"""
Alternate method of defining the source impedance.
3-phase short circuit current, amps. Default is 10000.
DSS property name: `Isc3`, DSS property index: 11.
"""
def _get_Isc1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 12)
def _set_Isc1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 12, value, flags)
Isc1 = property(_get_Isc1, _set_Isc1) # type: float
"""
Alternate method of defining the source impedance.
single-phase short circuit current, amps. Default is 10500.
DSS property name: `Isc1`, DSS property index: 12.
"""
def _get_R1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 13)
def _set_R1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 13, value, flags)
R1 = property(_get_R1, _set_R1) # type: float
"""
Alternate method of defining the source impedance.
Positive-sequence resistance, ohms. Default is 1.65.
DSS property name: `R1`, DSS property index: 13.
"""
def _get_X1(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 14)
def _set_X1(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 14, value, flags)
X1 = property(_get_X1, _set_X1) # type: float
"""
Alternate method of defining the source impedance.
Positive-sequence reactance, ohms. Default is 6.6.
DSS property name: `X1`, DSS property index: 14.
"""
def _get_R0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 15)
def _set_R0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 15, value, flags)
R0 = property(_get_R0, _set_R0) # type: float
"""
Alternate method of defining the source impedance.
Zero-sequence resistance, ohms. Default is 1.9.
DSS property name: `R0`, DSS property index: 15.
"""
def _get_X0(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 16)
def _set_X0(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 16, value, flags)
X0 = property(_get_X0, _set_X0) # type: float
"""
Alternate method of defining the source impedance.
Zero-sequence reactance, ohms. Default is 5.7.
DSS property name: `X0`, DSS property index: 16.
"""
def _get_ScanType(self) -> enums.ScanType:
return enums.ScanType(self._lib.Obj_GetInt32(self._ptr, 17))
def _set_ScanType(self, value: Union[AnyStr, int, enums.ScanType], flags: enums.SetterFlags = 0):
if not isinstance(value, int):
self._set_string_o(17, value, flags)
return
self._lib.Obj_SetInt32(self._ptr, 17, value, flags)
ScanType = property(_get_ScanType, _set_ScanType) # type: enums.ScanType
"""
{pos*| zero | none} Maintain specified sequence for harmonic solution. Default is positive sequence. Otherwise, angle between phases rotates with harmonic.
DSS property name: `ScanType`, DSS property index: 17.
"""
def _get_ScanType_str(self) -> str:
return self._get_prop_string(17)
def _set_ScanType_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_ScanType(value, flags)
ScanType_str = property(_get_ScanType_str, _set_ScanType_str) # type: str
"""
{pos*| zero | none} Maintain specified sequence for harmonic solution. Default is positive sequence. Otherwise, angle between phases rotates with harmonic.
DSS property name: `ScanType`, DSS property index: 17.
"""
def _get_Sequence(self) -> enums.SequenceType:
return enums.SequenceType(self._lib.Obj_GetInt32(self._ptr, 18))
def _set_Sequence(self, value: Union[AnyStr, int, enums.SequenceType], flags: enums.SetterFlags = 0):
if not isinstance(value, int):
self._set_string_o(18, value, flags)
return
self._lib.Obj_SetInt32(self._ptr, 18, value, flags)
Sequence = property(_get_Sequence, _set_Sequence) # type: enums.SequenceType
"""
{pos*| neg | zero} Set the phase angles for the specified symmetrical component sequence for non-harmonic solution modes. Default is positive sequence.
DSS property name: `Sequence`, DSS property index: 18.
"""
def _get_Sequence_str(self) -> str:
return self._get_prop_string(18)
def _set_Sequence_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_Sequence(value, flags)
Sequence_str = property(_get_Sequence_str, _set_Sequence_str) # type: str
"""
{pos*| neg | zero} Set the phase angles for the specified symmetrical component sequence for non-harmonic solution modes. Default is positive sequence.
DSS property name: `Sequence`, DSS property index: 18.
"""
def _get_Bus2(self) -> str:
return self._get_prop_string(19)
def _set_Bus2(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(19, value, flags)
Bus2 = property(_get_Bus2, _set_Bus2) # type: str
"""
Name of bus to which 2nd terminal is connected.
bus2=busname
bus2=busname.1.2.3
Default is Bus1.0.0.0 (grounded wye connection)
DSS property name: `Bus2`, DSS property index: 19.
"""
def _get_Z2(self) -> complex:
return self._get_complex(22)
def _set_Z2(self, value: complex, flags: enums.SetterFlags = 0):
self._set_complex(22, value, flags)
Z2 = property(_get_Z2, _set_Z2) # type: complex
"""
Negative-sequence equivalent source impedance, ohms, as a 2-element array representing a complex number. Example:
Z2=[1, 2] ! represents 1 + j2
Used to define the impedance matrix of the VSOURCE if Z1 is also specified.
Note: Z2 defaults to Z1 if it is not specifically defined. If Z2 is not equal to Z1, the impedance matrix is asymmetrical.
DSS property name: `Z2`, DSS property index: 22.
"""
def _get_puZ1(self) -> complex:
return self._get_complex(23)
def _set_puZ1(self, value: complex, flags: enums.SetterFlags = 0):
self._set_complex(23, value, flags)
puZ1 = property(_get_puZ1, _set_puZ1) # type: complex
"""
2-element array: e.g., [1 2]. An alternate way to specify Z1. See Z1 property. Per-unit positive-sequence impedance on base of Vsource BasekV and BaseMVA.
DSS property name: `puZ1`, DSS property index: 23.
"""
def _get_puZ0(self) -> complex:
return self._get_complex(24)
def _set_puZ0(self, value: complex, flags: enums.SetterFlags = 0):
self._set_complex(24, value, flags)
puZ0 = property(_get_puZ0, _set_puZ0) # type: complex
"""
2-element array: e.g., [1 2]. An alternate way to specify Z0. See Z0 property. Per-unit zero-sequence impedance on base of Vsource BasekV and BaseMVA.
DSS property name: `puZ0`, DSS property index: 24.
"""
def _get_puZ2(self) -> complex:
return self._get_complex(25)
def _set_puZ2(self, value: complex, flags: enums.SetterFlags = 0):
self._set_complex(25, value, flags)
puZ2 = property(_get_puZ2, _set_puZ2) # type: complex
"""
2-element array: e.g., [1 2]. An alternate way to specify Z2. See Z2 property. Per-unit negative-sequence impedance on base of Vsource BasekV and BaseMVA.
DSS property name: `puZ2`, DSS property index: 25.
"""
def _get_BaseMVA(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 26)
def _set_BaseMVA(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 26, value, flags)
BaseMVA = property(_get_BaseMVA, _set_BaseMVA) # type: float
"""
Default value is 100. Base used to convert values specified with puZ1, puZ0, and puZ2 properties to ohms on kV base specified by BasekV property.
DSS property name: `BaseMVA`, DSS property index: 26.
"""
def _get_Yearly_str(self) -> str:
return self._get_prop_string(27)
def _set_Yearly_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(27, value, flags)
Yearly_str = property(_get_Yearly_str, _set_Yearly_str) # type: str
"""
LOADSHAPE object to use for the per-unit voltage for YEARLY-mode simulations. Set the Mult property of the LOADSHAPE to the pu curve. Qmult is not used. If UseActual=Yes then the Mult curve should be actual L-N kV.
Must be previously defined as a LOADSHAPE object.
Is set to the Daily load shape when Daily is defined. The daily load shape is repeated in this case. Set to NONE to reset to no loadshape for Yearly mode. The default is no variation.
DSS property name: `Yearly`, DSS property index: 27.
"""
def _get_Yearly(self) -> LoadShape:
return self._get_obj(27, LoadShape)
def _set_Yearly(self, value: Union[AnyStr, LoadShape], flags: enums.SetterFlags = 0):
if isinstance(value, DSSObj) or value is None:
self._set_obj(27, value, flags)
return
self._set_string_o(27, value, flags)
Yearly = property(_get_Yearly, _set_Yearly) # type: LoadShape
"""
LOADSHAPE object to use for the per-unit voltage for YEARLY-mode simulations. Set the Mult property of the LOADSHAPE to the pu curve. Qmult is not used. If UseActual=Yes then the Mult curve should be actual L-N kV.
Must be previously defined as a LOADSHAPE object.
Is set to the Daily load shape when Daily is defined. The daily load shape is repeated in this case. Set to NONE to reset to no loadshape for Yearly mode. The default is no variation.
DSS property name: `Yearly`, DSS property index: 27.
"""
def _get_Daily_str(self) -> str:
return self._get_prop_string(28)
def _set_Daily_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(28, value, flags)
Daily_str = property(_get_Daily_str, _set_Daily_str) # type: str
"""
LOADSHAPE object to use for the per-unit voltage for DAILY-mode simulations. Set the Mult property of the LOADSHAPE to the pu curve. Qmult is not used. If UseActual=Yes then the Mult curve should be actual L-N kV.
Must be previously defined as a LOADSHAPE object.
Sets Yearly curve if it is not already defined. Set to NONE to reset to no loadshape for Yearly mode. The default is no variation.
DSS property name: `Daily`, DSS property index: 28.
"""
def _get_Daily(self) -> LoadShape:
return self._get_obj(28, LoadShape)
def _set_Daily(self, value: Union[AnyStr, LoadShape], flags: enums.SetterFlags = 0):
if isinstance(value, DSSObj) or value is None:
self._set_obj(28, value, flags)
return
self._set_string_o(28, value, flags)
Daily = property(_get_Daily, _set_Daily) # type: LoadShape
"""
LOADSHAPE object to use for the per-unit voltage for DAILY-mode simulations. Set the Mult property of the LOADSHAPE to the pu curve. Qmult is not used. If UseActual=Yes then the Mult curve should be actual L-N kV.
Must be previously defined as a LOADSHAPE object.
Sets Yearly curve if it is not already defined. Set to NONE to reset to no loadshape for Yearly mode. The default is no variation.
DSS property name: `Daily`, DSS property index: 28.
"""
def _get_Duty_str(self) -> str:
return self._get_prop_string(29)
def _set_Duty_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(29, value, flags)
Duty_str = property(_get_Duty_str, _set_Duty_str) # type: str
"""
LOADSHAPE object to use for the per-unit voltage for DUTYCYCLE-mode simulations. Set the Mult property of the LOADSHAPE to the pu curve. Qmult is not used. If UseActual=Yes then the Mult curve should be actual L-N kV.
Must be previously defined as a LOADSHAPE object.
Defaults to Daily load shape when Daily is defined. Set to NONE to reset to no loadshape for Yearly mode. The default is no variation.
DSS property name: `Duty`, DSS property index: 29.
"""
def _get_Duty(self) -> LoadShape:
return self._get_obj(29, LoadShape)
def _set_Duty(self, value: Union[AnyStr, LoadShape], flags: enums.SetterFlags = 0):
if isinstance(value, DSSObj) or value is None:
self._set_obj(29, value, flags)
return
self._set_string_o(29, value, flags)
Duty = property(_get_Duty, _set_Duty) # type: LoadShape
"""
LOADSHAPE object to use for the per-unit voltage for DUTYCYCLE-mode simulations. Set the Mult property of the LOADSHAPE to the pu curve. Qmult is not used. If UseActual=Yes then the Mult curve should be actual L-N kV.
Must be previously defined as a LOADSHAPE object.
Defaults to Daily load shape when Daily is defined. Set to NONE to reset to no loadshape for Yearly mode. The default is no variation.
DSS property name: `Duty`, DSS property index: 29.
"""
def _get_Model(self) -> enums.VSourceModel:
return enums.VSourceModel(self._lib.Obj_GetInt32(self._ptr, 30))
def _set_Model(self, value: Union[AnyStr, int, enums.VSourceModel], flags: enums.SetterFlags = 0):
if not isinstance(value, int):
self._set_string_o(30, value, flags)
return
self._lib.Obj_SetInt32(self._ptr, 30, value, flags)
Model = property(_get_Model, _set_Model) # type: enums.VSourceModel
"""
{Thevenin* | Ideal} Specifies whether the Vsource is to be considered a Thevenin short circuit model or a quasi-ideal voltage source. If Thevenin, the Vsource uses the impedances defined for all calculations. If "Ideal", the model uses a small impedance on the diagonal of the impedance matrix for the fundamental base frequency power flow only. Then switches to actual Thevenin model for other frequencies.
DSS property name: `Model`, DSS property index: 30.
"""
def _get_Model_str(self) -> str:
return self._get_prop_string(30)
def _set_Model_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_Model(value, flags)
Model_str = property(_get_Model_str, _set_Model_str) # type: str
"""
{Thevenin* | Ideal} Specifies whether the Vsource is to be considered a Thevenin short circuit model or a quasi-ideal voltage source. If Thevenin, the Vsource uses the impedances defined for all calculations. If "Ideal", the model uses a small impedance on the diagonal of the impedance matrix for the fundamental base frequency power flow only. Then switches to actual Thevenin model for other frequencies.
DSS property name: `Model`, DSS property index: 30.
"""
def _get_puZIdeal(self) -> complex:
return self._get_complex(31)
def _set_puZIdeal(self, value: complex, flags: enums.SetterFlags = 0):
self._set_complex(31, value, flags)
puZIdeal = property(_get_puZIdeal, _set_puZIdeal) # type: complex
"""
2-element array: e.g., [1 2]. The pu impedance to use for the quasi-ideal voltage source model. Should be a very small impedances. Default is [1e-6, 0.001]. Per-unit impedance on base of Vsource BasekV and BaseMVA. If too small, solution may not work. Be sure to check the voltage values and powers.
DSS property name: `puZIdeal`, DSS property index: 31.
"""
def _get_Spectrum_str(self) -> str:
return self._get_prop_string(32)
def _set_Spectrum_str(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(32, value, flags)
Spectrum_str = property(_get_Spectrum_str, _set_Spectrum_str) # type: str
"""
Name of harmonic spectrum for this source. Default is "defaultvsource", which is defined when the DSS starts.
DSS property name: `Spectrum`, DSS property index: 32.
"""
def _get_Spectrum(self) -> SpectrumObj:
return self._get_obj(32, SpectrumObj)
def _set_Spectrum(self, value: Union[AnyStr, SpectrumObj], flags: enums.SetterFlags = 0):
if isinstance(value, DSSObj) or value is None:
self._set_obj(32, value, flags)
return
self._set_string_o(32, value, flags)
Spectrum = property(_get_Spectrum, _set_Spectrum) # type: SpectrumObj
"""
Name of harmonic spectrum for this source. Default is "defaultvsource", which is defined when the DSS starts.
DSS property name: `Spectrum`, DSS property index: 32.
"""
def _get_BaseFreq(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 33)
def _set_BaseFreq(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 33, value, flags)
BaseFreq = property(_get_BaseFreq, _set_BaseFreq) # type: float
"""
Base Frequency for ratings.
DSS property name: `BaseFreq`, DSS property index: 33.
"""
def _get_Enabled(self) -> bool:
return self._lib.Obj_GetInt32(self._ptr, 34) != 0
def _set_Enabled(self, value: bool, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 34, value, flags)
Enabled = property(_get_Enabled, _set_Enabled) # type: bool
"""
{Yes|No or True|False} Indicates whether this element is enabled.
DSS property name: `Enabled`, DSS property index: 34.
"""
def Like(self, value: AnyStr):
"""
Make like another object, e.g.:
New Capacitor.C2 like=c1 ...
DSS property name: `Like`, DSS property index: 35.
"""
self._set_string_o(35, value)
class VsourceProperties(TypedDict):
Bus1: AnyStr
BasekV: float
pu: float
Angle: float
Frequency: float
Phases: int
MVASC3: float
MVASC1: float
X1R1: float
X0R0: float
Isc3: float
Isc1: float
R1: float
X1: float
R0: float
X0: float
ScanType: Union[AnyStr, int, enums.ScanType]
Sequence: Union[AnyStr, int, enums.SequenceType]
Bus2: AnyStr
Z2: complex
puZ1: complex
puZ0: complex
puZ2: complex
BaseMVA: float
Yearly: Union[AnyStr, LoadShape]
Daily: Union[AnyStr, LoadShape]
Duty: Union[AnyStr, LoadShape]
Model: Union[AnyStr, int, enums.VSourceModel]
puZIdeal: complex
Spectrum: Union[AnyStr, SpectrumObj]
BaseFreq: float
Enabled: bool
Like: AnyStr
class VsourceBatch(DSSBatch, CircuitElementBatchMixin, PCElementBatchMixin):
_cls_name = 'Vsource'
_obj_cls = Vsource
_cls_idx = 16
__slots__ = []
def __init__(self, api_util, **kwargs):
DSSBatch.__init__(self, api_util, **kwargs)
CircuitElementBatchMixin.__init__(self)
PCElementBatchMixin.__init__(self)
def edit(self, **kwargs: Unpack[VsourceBatchProperties]) -> VsourceBatch:
"""
Edit this Vsource 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[Vsource]:
yield from DSSBatch.__iter__(self)
def _get_Bus1(self) -> List[str]:
return self._get_batch_str_prop(1)
def _set_Bus1(self, value: Union[AnyStr, List[AnyStr]], flags: enums.SetterFlags = 0):
self._set_batch_string(1, value, flags)
Bus1 = property(_get_Bus1, _set_Bus1) # type: List[str]
"""
Name of bus to which the main terminal (1) is connected.
bus1=busname
bus1=busname.1.2.3
The VSOURCE object is a two-terminal voltage source (thevenin equivalent). Bus2 defaults to Bus1 with all phases connected to ground (node 0) unless previously specified. This is a Yg connection. If you want something different, define the Bus2 property explicitly.
DSS property name: `Bus1`, DSS property index: 1.
"""
def _get_BasekV(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 2)
def _set_BasekV(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(2, value, flags)
BasekV = property(_get_BasekV, _set_BasekV) # type: BatchFloat64ArrayProxy
"""
Base Source kV, usually phase-phase (L-L) unless you are making a positive-sequence model or 1-phase modelin which case, it will be phase-neutral (L-N) kV.
DSS property name: `BasekV`, DSS property index: 2.
"""
def _get_pu(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 3)
def _set_pu(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(3, value, flags)
pu = property(_get_pu, _set_pu) # type: BatchFloat64ArrayProxy
"""
Per unit of the base voltage that the source is actually operating at.
"pu=1.05"
DSS property name: `pu`, DSS property index: 3.
"""
def _get_Angle(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 4)
def _set_Angle(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(4, value, flags)
Angle = property(_get_Angle, _set_Angle) # type: BatchFloat64ArrayProxy
"""
Phase angle in degrees of first phase: e.g.,Angle=10.3
DSS property name: `Angle`, DSS property index: 4.
"""
def _get_Frequency(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 5)
def _set_Frequency(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(5, value, flags)
Frequency = property(_get_Frequency, _set_Frequency) # type: BatchFloat64ArrayProxy
"""
Source frequency. Defaults to system default base frequency.
DSS property name: `Frequency`, DSS property index: 5.
"""
def _get_Phases(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 6)
def _set_Phases(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(6, value, flags)
Phases = property(_get_Phases, _set_Phases) # type: BatchInt32ArrayProxy
"""
Number of phases. Defaults to 3.
DSS property name: `Phases`, DSS property index: 6.
"""
def _get_MVASC3(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 7)
def _set_MVASC3(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(7, value, flags)
MVASC3 = property(_get_MVASC3, _set_MVASC3) # type: BatchFloat64ArrayProxy
"""
MVA Short circuit, 3-phase fault. Default = 2000. Z1 is determined by squaring the base kv and dividing by this value. For single-phase source, this value is not used.
DSS property name: `MVASC3`, DSS property index: 7.
"""
def _get_MVASC1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 8)
def _set_MVASC1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(8, value, flags)
MVASC1 = property(_get_MVASC1, _set_MVASC1) # type: BatchFloat64ArrayProxy
"""
MVA Short Circuit, 1-phase fault. Default = 2100. The "single-phase impedance", Zs, is determined by squaring the base kV and dividing by this value. Then Z0 is determined by Z0 = 3Zs - 2Z1. For 1-phase sources, Zs is used directly. Use X0R0 to define X/R ratio for 1-phase source.
DSS property name: `MVASC1`, DSS property index: 8.
"""
def _get_X1R1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 9)
def _set_X1R1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(9, value, flags)
X1R1 = property(_get_X1R1, _set_X1R1) # type: BatchFloat64ArrayProxy
"""
Positive-sequence X/R ratio. Default = 4.
DSS property name: `X1R1`, DSS property index: 9.
"""
def _get_X0R0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 10)
def _set_X0R0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(10, value, flags)
X0R0 = property(_get_X0R0, _set_X0R0) # type: BatchFloat64ArrayProxy
"""
Zero-sequence X/R ratio.Default = 3.
DSS property name: `X0R0`, DSS property index: 10.
"""
def _get_Isc3(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 11)
def _set_Isc3(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(11, value, flags)
Isc3 = property(_get_Isc3, _set_Isc3) # type: BatchFloat64ArrayProxy
"""
Alternate method of defining the source impedance.
3-phase short circuit current, amps. Default is 10000.
DSS property name: `Isc3`, DSS property index: 11.
"""
def _get_Isc1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 12)
def _set_Isc1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(12, value, flags)
Isc1 = property(_get_Isc1, _set_Isc1) # type: BatchFloat64ArrayProxy
"""
Alternate method of defining the source impedance.
single-phase short circuit current, amps. Default is 10500.
DSS property name: `Isc1`, DSS property index: 12.
"""
def _get_R1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 13)
def _set_R1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(13, value, flags)
R1 = property(_get_R1, _set_R1) # type: BatchFloat64ArrayProxy
"""
Alternate method of defining the source impedance.
Positive-sequence resistance, ohms. Default is 1.65.
DSS property name: `R1`, DSS property index: 13.
"""
def _get_X1(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 14)
def _set_X1(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(14, value, flags)
X1 = property(_get_X1, _set_X1) # type: BatchFloat64ArrayProxy
"""
Alternate method of defining the source impedance.
Positive-sequence reactance, ohms. Default is 6.6.
DSS property name: `X1`, DSS property index: 14.
"""
def _get_R0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 15)
def _set_R0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(15, value, flags)
R0 = property(_get_R0, _set_R0) # type: BatchFloat64ArrayProxy
"""
Alternate method of defining the source impedance.
Zero-sequence resistance, ohms. Default is 1.9.
DSS property name: `R0`, DSS property index: 15.
"""
def _get_X0(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 16)
def _set_X0(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(16, value, flags)
X0 = property(_get_X0, _set_X0) # type: BatchFloat64ArrayProxy
"""
Alternate method of defining the source impedance.
Zero-sequence reactance, ohms. Default is 5.7.
DSS property name: `X0`, DSS property index: 16.
"""
def _get_ScanType(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 17)
def _set_ScanType(self, value: Union[AnyStr, int, enums.ScanType, List[AnyStr], List[int], List[enums.ScanType], 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(17, value, flags)
return
self._set_batch_int32_array(17, value, flags)
ScanType = property(_get_ScanType, _set_ScanType) # type: BatchInt32ArrayProxy
"""
{pos*| zero | none} Maintain specified sequence for harmonic solution. Default is positive sequence. Otherwise, angle between phases rotates with harmonic.
DSS property name: `ScanType`, DSS property index: 17.
"""
def _get_ScanType_str(self) -> List[str]:
return self._get_batch_str_prop(17)
def _set_ScanType_str(self, value: AnyStr, flags: enums.SetterFlags = 0):