File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ def Model(self) -> LoadModels:
168
168
169
169
Original COM help: https://opendss.epri.com/Model1.html
170
170
'''
171
- return self ._check_for_error (self ._lib .Loads_Get_Model ())
171
+ return self ._check_for_error (LoadModels ( self ._lib .Loads_Get_Model () ))
172
172
173
173
@Model .setter
174
174
def Model (self , Value : Union [int , LoadModels ]):
@@ -450,7 +450,8 @@ def kva(self, Value: float):
450
450
451
451
@property
452
452
def kvar (self ) -> float :
453
- '''Reactive power in kvar for active Load. If set, updates PF based on present kW.
453
+ '''
454
+ Reactive power in kvar for active Load. If set, updates PF based on present kW.
454
455
455
456
Original COM help: https://opendss.epri.com/kvar1.html
456
457
'''
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ class ISettings(Base):
34
34
@property
35
35
def AllowDuplicates (self ) -> bool :
36
36
'''
37
- {True | False*} Designates whether to allow duplicate names of objects
37
+ Designates whether to allow duplicate names of objects
38
+
39
+ False by default.
38
40
39
41
**NOTE**: for DSS-Extensions, we are considering removing this option in a future
40
42
release since it has performance impacts even when not used.
You can’t perform that action at this time.
0 commit comments