-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXYcurve.py
536 lines (396 loc) · 21 KB
/
XYcurve.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
# 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 XYcurve(DSSObj):
__slots__ = DSSObj._extra_slots
_cls_name = 'XYcurve'
_cls_idx = 5
_cls_int_idx = {
1,
}
_cls_float_idx = {
8,
9,
10,
11,
12,
13,
}
_cls_prop_idx = {
'npts': 1,
'points': 2,
'yarray': 3,
'xarray': 4,
'csvfile': 5,
'sngfile': 6,
'dblfile': 7,
'x': 8,
'y': 9,
'xshift': 10,
'yshift': 11,
'xscale': 12,
'yscale': 13,
'like': 14,
}
def edit(self, **kwargs: Unpack[XYcurveProperties]) -> XYcurve:
"""
Edit this XYcurve.
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_NPts(self) -> int:
return self._lib.Obj_GetInt32(self._ptr, 1)
def _set_NPts(self, value: int, flags: enums.SetterFlags = 0):
self._lib.Obj_SetInt32(self._ptr, 1, value, flags)
NPts = property(_get_NPts, _set_NPts) # type: int
"""
Max number of points to expect in curve. This could get reset to the actual number of points defined if less than specified.
DSS property name: `NPts`, DSS property index: 1.
"""
def _get_YArray(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 3)
def _set_YArray(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(3, value, flags)
YArray = property(_get_YArray, _set_YArray) # type: Float64Array
"""
Alternate way to enter Y values. Enter an array of Y values corresponding to the X values. You can also use the syntax:
Yarray = (file=filename) !for text file one value per line
Yarray = (dblfile=filename) !for packed file of doubles
Yarray = (sngfile=filename) !for packed file of singles
Note: this property will reset Npts to a smaller value if the number of values in the files are fewer.
DSS property name: `YArray`, DSS property index: 3.
"""
def _get_XArray(self) -> Float64Array:
return self._get_float64_array(self._lib.Obj_GetFloat64Array, self._ptr, 4)
def _set_XArray(self, value: Float64Array, flags: enums.SetterFlags = 0):
self._set_float64_array_o(4, value, flags)
XArray = property(_get_XArray, _set_XArray) # type: Float64Array
"""
Alternate way to enter X values. Enter an array of X values corresponding to the Y values. You can also use the syntax:
Xarray = (file=filename) !for text file one value per line
Xarray = (dblfile=filename) !for packed file of doubles
Xarray = (sngfile=filename) !for packed file of singles
Note: this property will reset Npts to a smaller value if the number of values in the files are fewer.
DSS property name: `XArray`, DSS property index: 4.
"""
def _get_CSVFile(self) -> str:
return self._get_prop_string(5)
def _set_CSVFile(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(5, value, flags)
CSVFile = property(_get_CSVFile, _set_CSVFile) # type: str
"""
Switch input of X-Y curve data to a CSV file containing X, Y points one per line. NOTE: This action may reset the number of points to a lower value.
DSS property name: `CSVFile`, DSS property index: 5.
"""
def _get_SngFile(self) -> str:
return self._get_prop_string(6)
def _set_SngFile(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(6, value, flags)
SngFile = property(_get_SngFile, _set_SngFile) # type: str
"""
Switch input of X-Y curve data to a binary file of SINGLES containing X, Y points packed one after another. NOTE: This action may reset the number of points to a lower value.
DSS property name: `SngFile`, DSS property index: 6.
"""
def _get_DblFile(self) -> str:
return self._get_prop_string(7)
def _set_DblFile(self, value: AnyStr, flags: enums.SetterFlags = 0):
self._set_string_o(7, value, flags)
DblFile = property(_get_DblFile, _set_DblFile) # type: str
"""
Switch input of X-Y curve data to a binary file of DOUBLES containing X, Y points packed one after another. NOTE: This action may reset the number of points to a lower value.
DSS property name: `DblFile`, DSS property index: 7.
"""
def _get_X(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 8)
def _set_X(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 8, value, flags)
X = property(_get_X, _set_X) # type: float
"""
Enter a value and then retrieve the interpolated Y value from the Y property. On input shifted then scaled to original curve. Scaled then shifted on output.
DSS property name: `X`, DSS property index: 8.
"""
def _get_Y(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 9)
def _set_Y(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 9, value, flags)
Y = property(_get_Y, _set_Y) # type: float
"""
Enter a value and then retrieve the interpolated X value from the X property. On input shifted then scaled to original curve. Scaled then shifted on output.
DSS property name: `Y`, DSS property index: 9.
"""
def _get_XShift(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 10)
def _set_XShift(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 10, value, flags)
XShift = property(_get_XShift, _set_XShift) # type: float
"""
Shift X property values (in/out) by this amount of offset. Default = 0. Does not change original definition of arrays.
DSS property name: `XShift`, DSS property index: 10.
"""
def _get_YShift(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 11)
def _set_YShift(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 11, value, flags)
YShift = property(_get_YShift, _set_YShift) # type: float
"""
Shift Y property values (in/out) by this amount of offset. Default = 0. Does not change original definition of arrays.
DSS property name: `YShift`, DSS property index: 11.
"""
def _get_XScale(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 12)
def _set_XScale(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 12, value, flags)
XScale = property(_get_XScale, _set_XScale) # type: float
"""
Scale X property values (in/out) by this factor. Default = 1.0. Does not change original definition of arrays.
DSS property name: `XScale`, DSS property index: 12.
"""
def _get_YScale(self) -> float:
return self._lib.Obj_GetFloat64(self._ptr, 13)
def _set_YScale(self, value: float, flags: enums.SetterFlags = 0):
self._lib.Obj_SetFloat64(self._ptr, 13, value, flags)
YScale = property(_get_YScale, _set_YScale) # type: float
"""
Scale Y property values (in/out) by this factor. Default = 1.0. Does not change original definition of arrays.
DSS property name: `YScale`, DSS property index: 13.
"""
def Like(self, value: AnyStr):
"""
Make like another object, e.g.:
New Capacitor.C2 like=c1 ...
DSS property name: `Like`, DSS property index: 14.
"""
self._set_string_o(14, value)
class XYcurveProperties(TypedDict):
NPts: int
YArray: Float64Array
XArray: Float64Array
CSVFile: AnyStr
SngFile: AnyStr
DblFile: AnyStr
X: float
Y: float
XShift: float
YShift: float
XScale: float
YScale: float
Like: AnyStr
class XYcurveBatch(DSSBatch):
_cls_name = 'XYcurve'
_obj_cls = XYcurve
_cls_idx = 5
__slots__ = []
def edit(self, **kwargs: Unpack[XYcurveBatchProperties]) -> XYcurveBatch:
"""
Edit this XYcurve 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[XYcurve]:
yield from DSSBatch.__iter__(self)
def _get_NPts(self) -> BatchInt32ArrayProxy:
return BatchInt32ArrayProxy(self, 1)
def _set_NPts(self, value: Union[int, Int32Array], flags: enums.SetterFlags = 0):
self._set_batch_int32_array(1, value, flags)
NPts = property(_get_NPts, _set_NPts) # type: BatchInt32ArrayProxy
"""
Max number of points to expect in curve. This could get reset to the actual number of points defined if less than specified.
DSS property name: `NPts`, DSS property index: 1.
"""
def _get_YArray(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 3)
for x in self._unpack()
]
def _set_YArray(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(3, value, flags)
YArray = property(_get_YArray, _set_YArray) # type: List[Float64Array]
"""
Alternate way to enter Y values. Enter an array of Y values corresponding to the X values. You can also use the syntax:
Yarray = (file=filename) !for text file one value per line
Yarray = (dblfile=filename) !for packed file of doubles
Yarray = (sngfile=filename) !for packed file of singles
Note: this property will reset Npts to a smaller value if the number of values in the files are fewer.
DSS property name: `YArray`, DSS property index: 3.
"""
def _get_XArray(self) -> List[Float64Array]:
return [
self._get_float64_array(self._lib.Obj_GetFloat64Array, x, 4)
for x in self._unpack()
]
def _set_XArray(self, value: Union[Float64Array, List[Float64Array]], flags: enums.SetterFlags = 0):
self._set_batch_float64_array_prop(4, value, flags)
XArray = property(_get_XArray, _set_XArray) # type: List[Float64Array]
"""
Alternate way to enter X values. Enter an array of X values corresponding to the Y values. You can also use the syntax:
Xarray = (file=filename) !for text file one value per line
Xarray = (dblfile=filename) !for packed file of doubles
Xarray = (sngfile=filename) !for packed file of singles
Note: this property will reset Npts to a smaller value if the number of values in the files are fewer.
DSS property name: `XArray`, DSS property index: 4.
"""
def _get_CSVFile(self) -> List[str]:
return self._get_batch_str_prop(5)
def _set_CSVFile(self, value: Union[AnyStr, List[AnyStr]], flags: enums.SetterFlags = 0):
self._set_batch_string(5, value, flags)
CSVFile = property(_get_CSVFile, _set_CSVFile) # type: List[str]
"""
Switch input of X-Y curve data to a CSV file containing X, Y points one per line. NOTE: This action may reset the number of points to a lower value.
DSS property name: `CSVFile`, DSS property index: 5.
"""
def _get_SngFile(self) -> List[str]:
return self._get_batch_str_prop(6)
def _set_SngFile(self, value: Union[AnyStr, List[AnyStr]], flags: enums.SetterFlags = 0):
self._set_batch_string(6, value, flags)
SngFile = property(_get_SngFile, _set_SngFile) # type: List[str]
"""
Switch input of X-Y curve data to a binary file of SINGLES containing X, Y points packed one after another. NOTE: This action may reset the number of points to a lower value.
DSS property name: `SngFile`, DSS property index: 6.
"""
def _get_DblFile(self) -> List[str]:
return self._get_batch_str_prop(7)
def _set_DblFile(self, value: Union[AnyStr, List[AnyStr]], flags: enums.SetterFlags = 0):
self._set_batch_string(7, value, flags)
DblFile = property(_get_DblFile, _set_DblFile) # type: List[str]
"""
Switch input of X-Y curve data to a binary file of DOUBLES containing X, Y points packed one after another. NOTE: This action may reset the number of points to a lower value.
DSS property name: `DblFile`, DSS property index: 7.
"""
def _get_X(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 8)
def _set_X(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(8, value, flags)
X = property(_get_X, _set_X) # type: BatchFloat64ArrayProxy
"""
Enter a value and then retrieve the interpolated Y value from the Y property. On input shifted then scaled to original curve. Scaled then shifted on output.
DSS property name: `X`, DSS property index: 8.
"""
def _get_Y(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 9)
def _set_Y(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(9, value, flags)
Y = property(_get_Y, _set_Y) # type: BatchFloat64ArrayProxy
"""
Enter a value and then retrieve the interpolated X value from the X property. On input shifted then scaled to original curve. Scaled then shifted on output.
DSS property name: `Y`, DSS property index: 9.
"""
def _get_XShift(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 10)
def _set_XShift(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(10, value, flags)
XShift = property(_get_XShift, _set_XShift) # type: BatchFloat64ArrayProxy
"""
Shift X property values (in/out) by this amount of offset. Default = 0. Does not change original definition of arrays.
DSS property name: `XShift`, DSS property index: 10.
"""
def _get_YShift(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 11)
def _set_YShift(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(11, value, flags)
YShift = property(_get_YShift, _set_YShift) # type: BatchFloat64ArrayProxy
"""
Shift Y property values (in/out) by this amount of offset. Default = 0. Does not change original definition of arrays.
DSS property name: `YShift`, DSS property index: 11.
"""
def _get_XScale(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 12)
def _set_XScale(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(12, value, flags)
XScale = property(_get_XScale, _set_XScale) # type: BatchFloat64ArrayProxy
"""
Scale X property values (in/out) by this factor. Default = 1.0. Does not change original definition of arrays.
DSS property name: `XScale`, DSS property index: 12.
"""
def _get_YScale(self) -> BatchFloat64ArrayProxy:
return BatchFloat64ArrayProxy(self, 13)
def _set_YScale(self, value: Union[float, Float64Array], flags: enums.SetterFlags = 0):
self._set_batch_float64_array(13, value, flags)
YScale = property(_get_YScale, _set_YScale) # type: BatchFloat64ArrayProxy
"""
Scale Y property values (in/out) by this factor. Default = 1.0. Does not change original definition of arrays.
DSS property name: `YScale`, DSS property index: 13.
"""
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: 14.
"""
self._set_batch_string(14, value, flags)
class XYcurveBatchProperties(TypedDict):
NPts: Union[int, Int32Array]
YArray: Float64Array
XArray: Float64Array
CSVFile: Union[AnyStr, List[AnyStr]]
SngFile: Union[AnyStr, List[AnyStr]]
DblFile: Union[AnyStr, List[AnyStr]]
X: Union[float, Float64Array]
Y: Union[float, Float64Array]
XShift: Union[float, Float64Array]
YShift: Union[float, Float64Array]
XScale: Union[float, Float64Array]
YScale: Union[float, Float64Array]
Like: AnyStr
class IXYcurve(IDSSObj, XYcurveBatch):
__slots__ = IDSSObj._extra_slots
def __init__(self, iobj):
IDSSObj.__init__(self, iobj, XYcurve, XYcurveBatch)
XYcurveBatch.__init__(self, self._api_util, sync_cls_idx=XYcurve._cls_idx)
if TYPE_CHECKING:
def __getitem__(self, name_or_idx: Union[AnyStr, int]) -> XYcurve:
return self.find(name_or_idx)
def batch(self, **kwargs) -> XYcurveBatch: #TODO: add annotation to kwargs (specialized typed dict)
"""
Creates a new batch handler of (existing) XYcurve objects
"""
return self._batch_cls(self._api_util, **kwargs)
def __iter__(self) -> Iterator[XYcurve]:
yield from XYcurveBatch.__iter__(self)
def new(self, name: AnyStr, *, begin_edit: Optional[bool] = None, activate=False, **kwargs: Unpack[XYcurveProperties]) -> XYcurve:
"""
Creates a new XYcurve.
:param name: The object's name is a required positional argument.
:param activate: Activation (setting `activate` to true) is useful for integration with the classic API, and some internal OpenDSS commands.
If you interact with this object only via the Alt API, no need to activate it (due to performance costs).
:param begin_edit: This controls how the edit context is left after the object creation:
- `True`: The object will be left in the edit state, requiring an `end_edit` call or equivalent.
- `False`: No edit context is started.
- `None`: If no properties are passed as keyword arguments, the object will be left in the edit state (assumes the user will fill the properties from Python attributes). Otherwise, the internal edit context will be finalized.
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
:return: Returns the new DSS object, wrapped in Python.
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
"""
return self._new(name, begin_edit=begin_edit, activate=activate, props=kwargs)
def batch_new(self, names: Optional[List[AnyStr]] = None, *, df = None, count: Optional[int] = None, begin_edit: Optional[bool] = None, **kwargs: Unpack[XYcurveBatchProperties]) -> XYcurveBatch:
"""
Creates a new batch of XYcurve objects
Either `names`, `count` or `df` is required.
:param begin_edit: The argument `begin_edit` indicates if the user want to leave the elements in the edit state, and requires a call to `end_edit()` or equivalent. The default `begin_edit` is set to `None`. With `None`, the behavior will be adjusted according the default of how the batch is created.
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
:param names: When using a list of names, each new object will match the names from this list. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
:param count: When using `count`, new objects will be created with based on a random prefix, with an increasing integer up to `count`. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
:param df: Currently **EXPERIMENTAL AND LIMITED**, tries to get the columns from a dataframe to populate the names and the DSS properties. `begin_edit` defaults to `False`.
:return: Returns the new batch of DSS objects, wrapped in Python.
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
"""
return self._batch_new_aux(names=names, df=df, count=count, begin_edit=begin_edit, props=kwargs)