aesim.simba 2025.3.28__py3-none-macosx_11_0_arm64.whl → 2025.6.19a1__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aesim/simba/Resources/Resources/DesignExamples.jsimba +55 -53
- aesim/simba/Resources/Resources/PsimSimbaDictionary.json +19 -0
- aesim/simba/Resources/Resources/libSimba.Solvers.osx-arm64.dylib +0 -0
- aesim/simba/Resources/Resources/simba_library.c +14 -0
- aesim/simba/Resources/Resources/simba_library.h +22 -1
- aesim/simba/Resources/Simba.Data.deps.json +15 -12
- aesim/simba/Resources/Simba.Data.dll +0 -0
- aesim/simba/Resources/Simba.Drawing.dll +0 -0
- aesim/simba/Resources/Simba.Helper.dll +0 -0
- aesim/simba/__init__.py +23 -2
- aesim/simba/__init__.pyi +707 -22
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.19a1.dist-info}/METADATA +1 -1
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.19a1.dist-info}/RECORD +15 -15
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.19a1.dist-info}/WHEEL +0 -0
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.19a1.dist-info}/top_level.txt +0 -0
aesim/simba/__init__.pyi
CHANGED
@@ -131,6 +131,7 @@ class Circuit:
|
|
131
131
|
def Copy(self) -> ICopiable: ...
|
132
132
|
def OnProjectLoaded(self) -> Any: ...
|
133
133
|
def AddDevice(self, device: Device, location: Optional[Any] = None, rotationAngle: Optional[int] = None, rename: Optional[bool] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> Device: ...
|
134
|
+
def AddDevice(self, subcircuit: Subcircuit, location: Optional[Any] = None, rotationAngle: Optional[int] = None, rename: Optional[bool] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> Subcircuit: ...
|
134
135
|
def AddDevice(self, deviceName: str, x: int, y: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> Device: ...
|
135
136
|
def AddDevice(self, devType: Any, location: Optional[Any] = None, rotationAngle: Optional[int] = None) -> Device: ...
|
136
137
|
def AddDevice(self, devType: Any, x: int, y: int, rotationAngle: Optional[int] = None) -> Device: ...
|
@@ -2893,6 +2894,7 @@ class Custom1DTable:
|
|
2893
2894
|
def EntityId(self, ) -> Any: ...
|
2894
2895
|
def ToString(self) -> str: ...
|
2895
2896
|
def array_2d(self) -> Any: ...
|
2897
|
+
def GetGridDataStrings(self) -> Any: ...
|
2896
2898
|
def GetType(self) -> Any: ...
|
2897
2899
|
def Equals(self, obj: Any) -> bool: ...
|
2898
2900
|
def GetHashCode(self) -> int: ...
|
@@ -2914,6 +2916,7 @@ class Custom2DTable:
|
|
2914
2916
|
@property
|
2915
2917
|
def EntityId(self, ) -> Any: ...
|
2916
2918
|
def ToString(self) -> str: ...
|
2919
|
+
def GetGridDataStrings(self) -> Any: ...
|
2917
2920
|
def GetType(self) -> Any: ...
|
2918
2921
|
def Equals(self, obj: Any) -> bool: ...
|
2919
2922
|
def GetHashCode(self) -> int: ...
|
@@ -2938,6 +2941,7 @@ class Custom3DTable:
|
|
2938
2941
|
def EntityId(self, ) -> Any: ...
|
2939
2942
|
def ToString(self) -> str: ...
|
2940
2943
|
def array_2d(self, z_array_index: int) -> Any: ...
|
2944
|
+
def GetGridDataStrings(self) -> Any: ...
|
2941
2945
|
def GetType(self) -> Any: ...
|
2942
2946
|
def Equals(self, obj: Any) -> bool: ...
|
2943
2947
|
def GetHashCode(self) -> int: ...
|
@@ -2947,6 +2951,36 @@ class Custom3DTable:
|
|
2947
2951
|
def __init__(self, table: Custom2DTable): ...
|
2948
2952
|
def __init__(self, table: Custom1DTable): ...
|
2949
2953
|
|
2954
|
+
class Custom4DTable:
|
2955
|
+
@property
|
2956
|
+
def Name(self, ) -> str: ...
|
2957
|
+
@property
|
2958
|
+
def Xaxis(self, ) -> Any: ...
|
2959
|
+
@property
|
2960
|
+
def Yaxis(self, ) -> Any: ...
|
2961
|
+
@property
|
2962
|
+
def Zaxis(self, ) -> Any: ...
|
2963
|
+
@property
|
2964
|
+
def Waxis(self, ) -> Any: ...
|
2965
|
+
@property
|
2966
|
+
def Data(self, ) -> Any: ...
|
2967
|
+
@property
|
2968
|
+
def DataSerialized(self, ) -> Any: ...
|
2969
|
+
@property
|
2970
|
+
def EntityId(self, ) -> Any: ...
|
2971
|
+
def ToString(self) -> str: ...
|
2972
|
+
def array_2d(self, z_index: int, w_index: int) -> Any: ...
|
2973
|
+
def GetGridDataStrings(self) -> Any: ...
|
2974
|
+
def GetType(self) -> Any: ...
|
2975
|
+
def Equals(self, obj: Any) -> bool: ...
|
2976
|
+
def GetHashCode(self) -> int: ...
|
2977
|
+
def __init__(self): ...
|
2978
|
+
def __init__(self, table: Custom4DTable): ...
|
2979
|
+
def __init__(self, table: Table): ...
|
2980
|
+
def __init__(self, table: Custom3DTable): ...
|
2981
|
+
def __init__(self, table: Custom2DTable): ...
|
2982
|
+
def __init__(self, table: Custom1DTable): ...
|
2983
|
+
|
2950
2984
|
class EI_VT:
|
2951
2985
|
@property
|
2952
2986
|
def Temperature(self, ) -> float: ...
|
@@ -3047,6 +3081,8 @@ class CustomTables:
|
|
3047
3081
|
def Table2Ds(self, ) -> List[Table2D]: ...
|
3048
3082
|
@property
|
3049
3083
|
def Table3Ds(self, ) -> List[Table3D]: ...
|
3084
|
+
@property
|
3085
|
+
def Tables(self, ) -> List[Table]: ...
|
3050
3086
|
def GetType(self) -> Any: ...
|
3051
3087
|
def ToString(self) -> str: ...
|
3052
3088
|
def Equals(self, obj: Any) -> bool: ...
|
@@ -3107,6 +3143,50 @@ class ZDimension:
|
|
3107
3143
|
def GetHashCode(self) -> int: ...
|
3108
3144
|
def __init__(self): ...
|
3109
3145
|
|
3146
|
+
class Table:
|
3147
|
+
@property
|
3148
|
+
def numDimensions(self, ) -> int: ...
|
3149
|
+
@property
|
3150
|
+
def Name(self, ) -> str: ...
|
3151
|
+
@property
|
3152
|
+
def Axis(self, ) -> List[str]: ...
|
3153
|
+
@property
|
3154
|
+
def FunctionValues(self, ) -> FunctionValues4D: ...
|
3155
|
+
def GetType(self) -> Any: ...
|
3156
|
+
def ToString(self) -> str: ...
|
3157
|
+
def Equals(self, obj: Any) -> bool: ...
|
3158
|
+
def GetHashCode(self) -> int: ...
|
3159
|
+
def __init__(self): ...
|
3160
|
+
|
3161
|
+
class FunctionValues4D:
|
3162
|
+
@property
|
3163
|
+
def Scale(self, ) -> str: ...
|
3164
|
+
@property
|
3165
|
+
def Dimensions(self, ) -> List[Dimension3D]: ...
|
3166
|
+
def GetType(self) -> Any: ...
|
3167
|
+
def ToString(self) -> str: ...
|
3168
|
+
def Equals(self, obj: Any) -> bool: ...
|
3169
|
+
def GetHashCode(self) -> int: ...
|
3170
|
+
def __init__(self): ...
|
3171
|
+
|
3172
|
+
class Dimension3D:
|
3173
|
+
@property
|
3174
|
+
def Dimensions(self, ) -> List[Dimension2D]: ...
|
3175
|
+
def GetType(self) -> Any: ...
|
3176
|
+
def ToString(self) -> str: ...
|
3177
|
+
def Equals(self, obj: Any) -> bool: ...
|
3178
|
+
def GetHashCode(self) -> int: ...
|
3179
|
+
def __init__(self): ...
|
3180
|
+
|
3181
|
+
class Dimension2D:
|
3182
|
+
@property
|
3183
|
+
def Dimensions(self, ) -> List[str]: ...
|
3184
|
+
def GetType(self) -> Any: ...
|
3185
|
+
def ToString(self) -> str: ...
|
3186
|
+
def Equals(self, obj: Any) -> bool: ...
|
3187
|
+
def GetHashCode(self) -> int: ...
|
3188
|
+
def __init__(self): ...
|
3189
|
+
|
3110
3190
|
class SemiconductorData:
|
3111
3191
|
@property
|
3112
3192
|
def type(self, ) -> str: ...
|
@@ -3278,6 +3358,8 @@ class ThermalData:
|
|
3278
3358
|
@property
|
3279
3359
|
def Custom3DTables(self, ) -> List[Any]: ...
|
3280
3360
|
@property
|
3361
|
+
def Custom4DTables(self, ) -> List[Any]: ...
|
3362
|
+
@property
|
3281
3363
|
def ConductionLossComputationMethod(self, ) -> ThermalComputationMethodType: ...
|
3282
3364
|
@property
|
3283
3365
|
def ConductionLossComputationFormula(self, ) -> str: ...
|
@@ -3463,7 +3545,20 @@ class ThermalDevice:
|
|
3463
3545
|
def Equals(self, obj: Any) -> bool: ...
|
3464
3546
|
def GetHashCode(self) -> int: ...
|
3465
3547
|
|
3548
|
+
class SelectionService:
|
3549
|
+
@property
|
3550
|
+
def SelectedElements(self, ) -> List[Any]: ...
|
3551
|
+
def SetSelection(self, elements: List[ISelectable]) -> Any: ...
|
3552
|
+
def ClearSelection(self) -> Any: ...
|
3553
|
+
def GetType(self) -> Any: ...
|
3554
|
+
def ToString(self) -> str: ...
|
3555
|
+
def Equals(self, obj: Any) -> bool: ...
|
3556
|
+
def GetHashCode(self) -> int: ...
|
3557
|
+
def __init__(self): ...
|
3558
|
+
|
3466
3559
|
class IProjectRepository:
|
3560
|
+
@property
|
3561
|
+
def ProjectDirectory(self, ) -> str: ...
|
3467
3562
|
@property
|
3468
3563
|
def Project(self, ) -> SerializableProject: ...
|
3469
3564
|
def GetDesigns(self) -> List[Design]: ...
|
@@ -3494,6 +3589,8 @@ class IProjectRepository:
|
|
3494
3589
|
class JsonProjectRepository:
|
3495
3590
|
@property
|
3496
3591
|
def Project(self, ) -> SerializableProject: ...
|
3592
|
+
@property
|
3593
|
+
def ProjectDirectory(self, ) -> str: ...
|
3497
3594
|
def ReloadAsync(self, path: Optional[str] = None) -> Any: ...
|
3498
3595
|
def UnsavedChanges(self) -> bool: ...
|
3499
3596
|
def FilePath(self) -> str: ...
|
@@ -3528,6 +3625,8 @@ class JsonProjectRepository:
|
|
3528
3625
|
class ProjectRepository:
|
3529
3626
|
@property
|
3530
3627
|
def Project(self, ) -> SerializableProject: ...
|
3628
|
+
@property
|
3629
|
+
def ProjectDirectory(self, ) -> str: ...
|
3531
3630
|
def AddDesign(self, Design: Design, updateName: Optional[bool] = None) -> Any: ...
|
3532
3631
|
def AddLibrary(self, library: Library) -> Library: ...
|
3533
3632
|
def AddResults(self, Results: TransientAnalysisJob) -> TransientAnalysisJob: ...
|
@@ -3947,11 +4046,17 @@ class simba_location_offset_in_simba_ref:
|
|
3947
4046
|
|
3948
4047
|
class PsimImporter:
|
3949
4048
|
def CreateSIMBARepositoryFromPSIMFile(xml_path: str) -> Any: ...
|
3950
|
-
def
|
3951
|
-
def
|
4049
|
+
def ImportAndCreateDesign(xml_path: str) -> Any: ...
|
4050
|
+
def IsNotManagedType(type_to_find: str) -> bool: ...
|
4051
|
+
def GetType(self) -> Any: ...
|
4052
|
+
def ToString(self) -> str: ...
|
4053
|
+
def Equals(self, obj: Any) -> bool: ...
|
4054
|
+
def GetHashCode(self) -> int: ...
|
4055
|
+
|
4056
|
+
class PsimImportHelper:
|
4057
|
+
def ExtractDataFromPsimXmlFile(xml_path: str, ErrorsAndWarnings: List[ErrorOrWarning]) -> PsimSchematic: ...
|
3952
4058
|
def ExtractPsimSimbaJsonFile(ErrorsAndWarnings: List[ErrorOrWarning]) -> Json_Import_Object: ...
|
3953
4059
|
def FindSimbaComponentFromPsimType(dictionary: Json_Import_Object, type: str) -> components_with_no_change: ...
|
3954
|
-
def IsNotManagedType(type_to_find: str) -> bool: ...
|
3955
4060
|
def FindSimbaSubcircuitFromPsimType(dictionary: Json_Import_Object, type: str) -> components_using_subcircuit: ...
|
3956
4061
|
def CheckHybridComponents(json_dictionary: Json_Import_Object, component: PsimComponent, simba_component_rules: components_with_no_change) -> components_with_no_change: ...
|
3957
4062
|
def CheckHybridComponents(json_dictionary: Json_Import_Object, component: PsimComponent, simba_subcircuit_rules: components_using_subcircuit) -> components_using_subcircuit: ...
|
@@ -3959,9 +4064,8 @@ class PsimImporter:
|
|
3959
4064
|
def SortedByPinLocation(dictionary: Dict[DevicePin, PinProperties]) -> Dict[PointI, List[DevicePin]]: ...
|
3960
4065
|
def SortedByPinNodeName(dictionary: Dict[DevicePin, PinProperties]) -> Dict[int, List[DevicePin]]: ...
|
3961
4066
|
def CreateTheSimbaDevice(circuit: Circuit, temp_device: Device, component: PsimComponent, simba_component_rules: simba_components) -> Device: ...
|
3962
|
-
def SetDeviceParameters(device: Device, parameters: Dict[str, str]) -> Any: ...
|
3963
4067
|
def GetDeviceParameters(device: Device) -> Dict[str, str]: ...
|
3964
|
-
def CreateTheSubcircuitPort(circuit: Circuit, subcircuit_port: CNode, pin: Pin) -> List[ErrorOrWarning]: ...
|
4068
|
+
def CreateTheSubcircuitPort(circuit: Circuit, subcircuit_port: CNode, pin: Pin, cCircuit: CCircuit) -> List[ErrorOrWarning]: ...
|
3965
4069
|
def NewCoordinates(coordinates: int) -> int: ...
|
3966
4070
|
def NewCoordinatesScale(coordinates: int, scale: int) -> int: ...
|
3967
4071
|
def CleanConstantAndExpressionName(str: str) -> str: ...
|
@@ -3973,6 +4077,7 @@ class PsimImporter:
|
|
3973
4077
|
def ToString(self) -> str: ...
|
3974
4078
|
def Equals(self, obj: Any) -> bool: ...
|
3975
4079
|
def GetHashCode(self) -> int: ...
|
4080
|
+
def __init__(self): ...
|
3976
4081
|
|
3977
4082
|
class PsimSchematic:
|
3978
4083
|
@property
|
@@ -9129,6 +9234,226 @@ class FreneticSaturableInductor:
|
|
9129
9234
|
def GetHashCode(self) -> int: ...
|
9130
9235
|
def __init__(self): ...
|
9131
9236
|
|
9237
|
+
class ABCDQ0Power:
|
9238
|
+
@property
|
9239
|
+
def LibraryItemName(self, ) -> str: ...
|
9240
|
+
@property
|
9241
|
+
def ModelType(self, ) -> ModelType: ...
|
9242
|
+
@property
|
9243
|
+
def Prefix(self, ) -> str: ...
|
9244
|
+
@property
|
9245
|
+
def Pins(self, ) -> List[Any]: ...
|
9246
|
+
@property
|
9247
|
+
def Shapes(self, ) -> List[Any]: ...
|
9248
|
+
@property
|
9249
|
+
def Scopes(self, ) -> List[Scope]: ...
|
9250
|
+
@property
|
9251
|
+
def A(self, ) -> DevicePin: ...
|
9252
|
+
@property
|
9253
|
+
def B(self, ) -> DevicePin: ...
|
9254
|
+
@property
|
9255
|
+
def C(self, ) -> DevicePin: ...
|
9256
|
+
@property
|
9257
|
+
def Theta(self, ) -> DevicePin: ...
|
9258
|
+
@property
|
9259
|
+
def D(self, ) -> DevicePin: ...
|
9260
|
+
@property
|
9261
|
+
def Q(self, ) -> DevicePin: ...
|
9262
|
+
@property
|
9263
|
+
def Zero(self, ) -> DevicePin: ...
|
9264
|
+
@property
|
9265
|
+
def InstanceID(self, ) -> Any: ...
|
9266
|
+
@property
|
9267
|
+
def UndoTrackingId(self, ) -> Any: ...
|
9268
|
+
@property
|
9269
|
+
def Circuit(self, ) -> Circuit: ...
|
9270
|
+
@property
|
9271
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
9272
|
+
@property
|
9273
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
9274
|
+
@property
|
9275
|
+
def UnrotatedTop(self, ) -> int: ...
|
9276
|
+
@property
|
9277
|
+
def UnrotatedLeft(self, ) -> int: ...
|
9278
|
+
@property
|
9279
|
+
def UnrotatedWidth(self, ) -> int: ...
|
9280
|
+
@property
|
9281
|
+
def UnrotatedHeight(self, ) -> int: ...
|
9282
|
+
@property
|
9283
|
+
def RotationAngle(self, ) -> int: ...
|
9284
|
+
@property
|
9285
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
9286
|
+
@property
|
9287
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
9288
|
+
@property
|
9289
|
+
def Deprecated(self, ) -> bool: ...
|
9290
|
+
@property
|
9291
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
9292
|
+
@property
|
9293
|
+
def Disabled(self, ) -> bool: ...
|
9294
|
+
@property
|
9295
|
+
def SymbolFilePath(self, ) -> str: ...
|
9296
|
+
@property
|
9297
|
+
def SymbolFilename(self, ) -> str: ...
|
9298
|
+
@property
|
9299
|
+
def IsBeta(self, ) -> bool: ...
|
9300
|
+
@property
|
9301
|
+
def Childrens(self, ) -> List[Any]: ...
|
9302
|
+
@property
|
9303
|
+
def LibraryItemPath(self, ) -> str: ...
|
9304
|
+
@property
|
9305
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
9306
|
+
@property
|
9307
|
+
def Parameters(self, ) -> List[Any]: ...
|
9308
|
+
@property
|
9309
|
+
def Footprint(self, ) -> RectangleI: ...
|
9310
|
+
@property
|
9311
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
9312
|
+
@property
|
9313
|
+
def Position(self, ) -> PointI: ...
|
9314
|
+
@property
|
9315
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
9316
|
+
@property
|
9317
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
9318
|
+
@property
|
9319
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
9320
|
+
@property
|
9321
|
+
def Name(self, ) -> StringParameter: ...
|
9322
|
+
@property
|
9323
|
+
def EntityId(self, ) -> Any: ...
|
9324
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9325
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9326
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
9327
|
+
def CanMove(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
9328
|
+
def SetName(self, name: str) -> Any: ...
|
9329
|
+
def GetName(self) -> str: ...
|
9330
|
+
def Serialize(self) -> str: ...
|
9331
|
+
def Copy(self) -> ICopiable: ...
|
9332
|
+
def RotateLeft(self) -> Any: ...
|
9333
|
+
def HorizontalFlip(self) -> Any: ...
|
9334
|
+
def VerticalFlip(self) -> Any: ...
|
9335
|
+
def RotateRight(self) -> Any: ...
|
9336
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
9337
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
9338
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
9339
|
+
def UpdateObservableScopes(self) -> Any: ...
|
9340
|
+
def ParametersUpdated(self) -> Any: ...
|
9341
|
+
def GetType(self) -> Any: ...
|
9342
|
+
def ToString(self) -> str: ...
|
9343
|
+
def Equals(self, obj: Any) -> bool: ...
|
9344
|
+
def GetHashCode(self) -> int: ...
|
9345
|
+
def __init__(self): ...
|
9346
|
+
|
9347
|
+
class DQ0ABCPower:
|
9348
|
+
@property
|
9349
|
+
def LibraryItemName(self, ) -> str: ...
|
9350
|
+
@property
|
9351
|
+
def ModelType(self, ) -> ModelType: ...
|
9352
|
+
@property
|
9353
|
+
def Prefix(self, ) -> str: ...
|
9354
|
+
@property
|
9355
|
+
def Pins(self, ) -> List[Any]: ...
|
9356
|
+
@property
|
9357
|
+
def Shapes(self, ) -> List[Any]: ...
|
9358
|
+
@property
|
9359
|
+
def Scopes(self, ) -> List[Scope]: ...
|
9360
|
+
@property
|
9361
|
+
def D(self, ) -> DevicePin: ...
|
9362
|
+
@property
|
9363
|
+
def Q(self, ) -> DevicePin: ...
|
9364
|
+
@property
|
9365
|
+
def Zero(self, ) -> DevicePin: ...
|
9366
|
+
@property
|
9367
|
+
def A(self, ) -> DevicePin: ...
|
9368
|
+
@property
|
9369
|
+
def B(self, ) -> DevicePin: ...
|
9370
|
+
@property
|
9371
|
+
def C(self, ) -> DevicePin: ...
|
9372
|
+
@property
|
9373
|
+
def Theta(self, ) -> DevicePin: ...
|
9374
|
+
@property
|
9375
|
+
def InstanceID(self, ) -> Any: ...
|
9376
|
+
@property
|
9377
|
+
def UndoTrackingId(self, ) -> Any: ...
|
9378
|
+
@property
|
9379
|
+
def Circuit(self, ) -> Circuit: ...
|
9380
|
+
@property
|
9381
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
9382
|
+
@property
|
9383
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
9384
|
+
@property
|
9385
|
+
def UnrotatedTop(self, ) -> int: ...
|
9386
|
+
@property
|
9387
|
+
def UnrotatedLeft(self, ) -> int: ...
|
9388
|
+
@property
|
9389
|
+
def UnrotatedWidth(self, ) -> int: ...
|
9390
|
+
@property
|
9391
|
+
def UnrotatedHeight(self, ) -> int: ...
|
9392
|
+
@property
|
9393
|
+
def RotationAngle(self, ) -> int: ...
|
9394
|
+
@property
|
9395
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
9396
|
+
@property
|
9397
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
9398
|
+
@property
|
9399
|
+
def Deprecated(self, ) -> bool: ...
|
9400
|
+
@property
|
9401
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
9402
|
+
@property
|
9403
|
+
def Disabled(self, ) -> bool: ...
|
9404
|
+
@property
|
9405
|
+
def SymbolFilePath(self, ) -> str: ...
|
9406
|
+
@property
|
9407
|
+
def SymbolFilename(self, ) -> str: ...
|
9408
|
+
@property
|
9409
|
+
def IsBeta(self, ) -> bool: ...
|
9410
|
+
@property
|
9411
|
+
def Childrens(self, ) -> List[Any]: ...
|
9412
|
+
@property
|
9413
|
+
def LibraryItemPath(self, ) -> str: ...
|
9414
|
+
@property
|
9415
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
9416
|
+
@property
|
9417
|
+
def Parameters(self, ) -> List[Any]: ...
|
9418
|
+
@property
|
9419
|
+
def Footprint(self, ) -> RectangleI: ...
|
9420
|
+
@property
|
9421
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
9422
|
+
@property
|
9423
|
+
def Position(self, ) -> PointI: ...
|
9424
|
+
@property
|
9425
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
9426
|
+
@property
|
9427
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
9428
|
+
@property
|
9429
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
9430
|
+
@property
|
9431
|
+
def Name(self, ) -> StringParameter: ...
|
9432
|
+
@property
|
9433
|
+
def EntityId(self, ) -> Any: ...
|
9434
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9435
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9436
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
9437
|
+
def CanMove(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
9438
|
+
def SetName(self, name: str) -> Any: ...
|
9439
|
+
def GetName(self) -> str: ...
|
9440
|
+
def Serialize(self) -> str: ...
|
9441
|
+
def Copy(self) -> ICopiable: ...
|
9442
|
+
def RotateLeft(self) -> Any: ...
|
9443
|
+
def HorizontalFlip(self) -> Any: ...
|
9444
|
+
def VerticalFlip(self) -> Any: ...
|
9445
|
+
def RotateRight(self) -> Any: ...
|
9446
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
9447
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
9448
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
9449
|
+
def UpdateObservableScopes(self) -> Any: ...
|
9450
|
+
def ParametersUpdated(self) -> Any: ...
|
9451
|
+
def GetType(self) -> Any: ...
|
9452
|
+
def ToString(self) -> str: ...
|
9453
|
+
def Equals(self, obj: Any) -> bool: ...
|
9454
|
+
def GetHashCode(self) -> int: ...
|
9455
|
+
def __init__(self): ...
|
9456
|
+
|
9132
9457
|
class IdealTransformer:
|
9133
9458
|
@property
|
9134
9459
|
def LibraryItemName(self, ) -> str: ...
|
@@ -14355,21 +14680,123 @@ class IdealMosfetWithDiode:
|
|
14355
14680
|
@property
|
14356
14681
|
def Rdon(self, ) -> DoubleParameter: ...
|
14357
14682
|
@property
|
14358
|
-
def Vdf(self, ) -> DoubleParameter: ...
|
14683
|
+
def Vdf(self, ) -> DoubleParameter: ...
|
14684
|
+
@property
|
14685
|
+
def LossesPin(self, ) -> DevicePin: ...
|
14686
|
+
@property
|
14687
|
+
def JunctionTemperatureControlPin(self, ) -> DevicePin: ...
|
14688
|
+
@property
|
14689
|
+
def InitialTemperature(self, ) -> DoubleParameter: ...
|
14690
|
+
@property
|
14691
|
+
def ShowJunctionTemperatureControlPin(self, ) -> BoolParameter: ...
|
14692
|
+
@property
|
14693
|
+
def ThermalData(self, ) -> ThermalData: ...
|
14694
|
+
@property
|
14695
|
+
def CustomVariables(self, ) -> List[ThermalDataVariable]: ...
|
14696
|
+
@property
|
14697
|
+
def LossCalculationFrequency(self, ) -> DoubleParameter: ...
|
14698
|
+
@property
|
14699
|
+
def InstanceID(self, ) -> Any: ...
|
14700
|
+
@property
|
14701
|
+
def UndoTrackingId(self, ) -> Any: ...
|
14702
|
+
@property
|
14703
|
+
def Circuit(self, ) -> Circuit: ...
|
14704
|
+
@property
|
14705
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
14706
|
+
@property
|
14707
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
14708
|
+
@property
|
14709
|
+
def UnrotatedTop(self, ) -> int: ...
|
14710
|
+
@property
|
14711
|
+
def UnrotatedLeft(self, ) -> int: ...
|
14712
|
+
@property
|
14713
|
+
def UnrotatedWidth(self, ) -> int: ...
|
14714
|
+
@property
|
14715
|
+
def UnrotatedHeight(self, ) -> int: ...
|
14716
|
+
@property
|
14717
|
+
def RotationAngle(self, ) -> int: ...
|
14718
|
+
@property
|
14719
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
14720
|
+
@property
|
14721
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
14722
|
+
@property
|
14723
|
+
def Deprecated(self, ) -> bool: ...
|
14724
|
+
@property
|
14725
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
14726
|
+
@property
|
14727
|
+
def Disabled(self, ) -> bool: ...
|
14728
|
+
@property
|
14729
|
+
def SymbolFilePath(self, ) -> str: ...
|
14730
|
+
@property
|
14731
|
+
def SymbolFilename(self, ) -> str: ...
|
14732
|
+
@property
|
14733
|
+
def IsBeta(self, ) -> bool: ...
|
14734
|
+
@property
|
14735
|
+
def Childrens(self, ) -> List[Any]: ...
|
14736
|
+
@property
|
14737
|
+
def LibraryItemPath(self, ) -> str: ...
|
14738
|
+
@property
|
14739
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
14740
|
+
@property
|
14741
|
+
def Parameters(self, ) -> List[Any]: ...
|
14742
|
+
@property
|
14743
|
+
def Footprint(self, ) -> RectangleI: ...
|
14744
|
+
@property
|
14745
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
14746
|
+
@property
|
14747
|
+
def Position(self, ) -> PointI: ...
|
14748
|
+
@property
|
14749
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
14750
|
+
@property
|
14751
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
14752
|
+
@property
|
14753
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
14754
|
+
@property
|
14755
|
+
def Name(self, ) -> StringParameter: ...
|
14756
|
+
@property
|
14757
|
+
def EntityId(self, ) -> Any: ...
|
14758
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
14759
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
14760
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
14761
|
+
def CanMove(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
14762
|
+
def SetName(self, name: str) -> Any: ...
|
14763
|
+
def GetName(self) -> str: ...
|
14764
|
+
def Serialize(self) -> str: ...
|
14765
|
+
def Copy(self) -> ICopiable: ...
|
14766
|
+
def RotateLeft(self) -> Any: ...
|
14767
|
+
def HorizontalFlip(self) -> Any: ...
|
14768
|
+
def VerticalFlip(self) -> Any: ...
|
14769
|
+
def RotateRight(self) -> Any: ...
|
14770
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
14771
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
14772
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
14773
|
+
def UpdateObservableScopes(self) -> Any: ...
|
14774
|
+
def ParametersUpdated(self) -> Any: ...
|
14775
|
+
def GetType(self) -> Any: ...
|
14776
|
+
def ToString(self) -> str: ...
|
14777
|
+
def Equals(self, obj: Any) -> bool: ...
|
14778
|
+
def GetHashCode(self) -> int: ...
|
14779
|
+
def __init__(self): ...
|
14780
|
+
|
14781
|
+
class IdealThyristor:
|
14782
|
+
@property
|
14783
|
+
def LibraryItemName(self, ) -> str: ...
|
14784
|
+
@property
|
14785
|
+
def ModelType(self, ) -> ModelType: ...
|
14359
14786
|
@property
|
14360
|
-
def
|
14787
|
+
def Prefix(self, ) -> str: ...
|
14361
14788
|
@property
|
14362
|
-
def
|
14789
|
+
def Pins(self, ) -> List[Any]: ...
|
14363
14790
|
@property
|
14364
|
-
def
|
14791
|
+
def Shapes(self, ) -> List[Any]: ...
|
14365
14792
|
@property
|
14366
|
-
def
|
14793
|
+
def Scopes(self, ) -> List[Scope]: ...
|
14367
14794
|
@property
|
14368
|
-
def
|
14795
|
+
def Anode(self, ) -> DevicePin: ...
|
14369
14796
|
@property
|
14370
|
-
def
|
14797
|
+
def Cathode(self, ) -> DevicePin: ...
|
14371
14798
|
@property
|
14372
|
-
def
|
14799
|
+
def In(self, ) -> DevicePin: ...
|
14373
14800
|
@property
|
14374
14801
|
def InstanceID(self, ) -> Any: ...
|
14375
14802
|
@property
|
@@ -14453,7 +14880,7 @@ class IdealMosfetWithDiode:
|
|
14453
14880
|
def GetHashCode(self) -> int: ...
|
14454
14881
|
def __init__(self): ...
|
14455
14882
|
|
14456
|
-
class
|
14883
|
+
class ZenerDiode:
|
14457
14884
|
@property
|
14458
14885
|
def LibraryItemName(self, ) -> str: ...
|
14459
14886
|
@property
|
@@ -14471,7 +14898,13 @@ class IdealThyristor:
|
|
14471
14898
|
@property
|
14472
14899
|
def Cathode(self, ) -> DevicePin: ...
|
14473
14900
|
@property
|
14474
|
-
def
|
14901
|
+
def Rd(self, ) -> DoubleParameter: ...
|
14902
|
+
@property
|
14903
|
+
def Vf(self, ) -> DoubleParameter: ...
|
14904
|
+
@property
|
14905
|
+
def Rbr(self, ) -> DoubleParameter: ...
|
14906
|
+
@property
|
14907
|
+
def Vbr(self, ) -> DoubleParameter: ...
|
14475
14908
|
@property
|
14476
14909
|
def InstanceID(self, ) -> Any: ...
|
14477
14910
|
@property
|
@@ -15661,6 +16094,114 @@ class IM:
|
|
15661
16094
|
def GetHashCode(self) -> int: ...
|
15662
16095
|
def __init__(self): ...
|
15663
16096
|
|
16097
|
+
class JmagDirectCoupling:
|
16098
|
+
@property
|
16099
|
+
def LibraryItemName(self, ) -> str: ...
|
16100
|
+
@property
|
16101
|
+
def ModelType(self, ) -> ModelType: ...
|
16102
|
+
@property
|
16103
|
+
def Prefix(self, ) -> str: ...
|
16104
|
+
@property
|
16105
|
+
def Pins(self, ) -> List[Any]: ...
|
16106
|
+
@property
|
16107
|
+
def Scopes(self, ) -> List[Scope]: ...
|
16108
|
+
@property
|
16109
|
+
def Shapes(self, ) -> List[Any]: ...
|
16110
|
+
@property
|
16111
|
+
def InputFilePath(self, ) -> FilePathParameter: ...
|
16112
|
+
@property
|
16113
|
+
def XmlFilePath(self, ) -> FilePathParameter: ...
|
16114
|
+
@property
|
16115
|
+
def DllPath(self, ) -> FilePathParameter: ...
|
16116
|
+
@property
|
16117
|
+
def InterfaceExecutablePath(self, ) -> FilePathParameter: ...
|
16118
|
+
@property
|
16119
|
+
def J0(self, ) -> DoubleParameter: ...
|
16120
|
+
@property
|
16121
|
+
def B0(self, ) -> DoubleParameter: ...
|
16122
|
+
@property
|
16123
|
+
def InstanceID(self, ) -> Any: ...
|
16124
|
+
@property
|
16125
|
+
def UndoTrackingId(self, ) -> Any: ...
|
16126
|
+
@property
|
16127
|
+
def Circuit(self, ) -> Circuit: ...
|
16128
|
+
@property
|
16129
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
16130
|
+
@property
|
16131
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
16132
|
+
@property
|
16133
|
+
def UnrotatedTop(self, ) -> int: ...
|
16134
|
+
@property
|
16135
|
+
def UnrotatedLeft(self, ) -> int: ...
|
16136
|
+
@property
|
16137
|
+
def UnrotatedWidth(self, ) -> int: ...
|
16138
|
+
@property
|
16139
|
+
def UnrotatedHeight(self, ) -> int: ...
|
16140
|
+
@property
|
16141
|
+
def RotationAngle(self, ) -> int: ...
|
16142
|
+
@property
|
16143
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
16144
|
+
@property
|
16145
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
16146
|
+
@property
|
16147
|
+
def Deprecated(self, ) -> bool: ...
|
16148
|
+
@property
|
16149
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
16150
|
+
@property
|
16151
|
+
def Disabled(self, ) -> bool: ...
|
16152
|
+
@property
|
16153
|
+
def SymbolFilePath(self, ) -> str: ...
|
16154
|
+
@property
|
16155
|
+
def SymbolFilename(self, ) -> str: ...
|
16156
|
+
@property
|
16157
|
+
def IsBeta(self, ) -> bool: ...
|
16158
|
+
@property
|
16159
|
+
def Childrens(self, ) -> List[Any]: ...
|
16160
|
+
@property
|
16161
|
+
def LibraryItemPath(self, ) -> str: ...
|
16162
|
+
@property
|
16163
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
16164
|
+
@property
|
16165
|
+
def Parameters(self, ) -> List[Any]: ...
|
16166
|
+
@property
|
16167
|
+
def Footprint(self, ) -> RectangleI: ...
|
16168
|
+
@property
|
16169
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
16170
|
+
@property
|
16171
|
+
def Position(self, ) -> PointI: ...
|
16172
|
+
@property
|
16173
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
16174
|
+
@property
|
16175
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
16176
|
+
@property
|
16177
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
16178
|
+
@property
|
16179
|
+
def Name(self, ) -> StringParameter: ...
|
16180
|
+
@property
|
16181
|
+
def EntityId(self, ) -> Any: ...
|
16182
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
16183
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
16184
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
16185
|
+
def CanMove(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
16186
|
+
def SetName(self, name: str) -> Any: ...
|
16187
|
+
def GetName(self) -> str: ...
|
16188
|
+
def Serialize(self) -> str: ...
|
16189
|
+
def Copy(self) -> ICopiable: ...
|
16190
|
+
def RotateLeft(self) -> Any: ...
|
16191
|
+
def HorizontalFlip(self) -> Any: ...
|
16192
|
+
def VerticalFlip(self) -> Any: ...
|
16193
|
+
def RotateRight(self) -> Any: ...
|
16194
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
16195
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
16196
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
16197
|
+
def UpdateObservableScopes(self) -> Any: ...
|
16198
|
+
def ParametersUpdated(self) -> Any: ...
|
16199
|
+
def GetType(self) -> Any: ...
|
16200
|
+
def ToString(self) -> str: ...
|
16201
|
+
def Equals(self, obj: Any) -> bool: ...
|
16202
|
+
def GetHashCode(self) -> int: ...
|
16203
|
+
def __init__(self): ...
|
16204
|
+
|
15664
16205
|
class JmagRT_IM:
|
15665
16206
|
@property
|
15666
16207
|
def LibraryItemName(self, ) -> str: ...
|
@@ -15691,7 +16232,7 @@ class JmagRT_IM:
|
|
15691
16232
|
@property
|
15692
16233
|
def Pin_Pcage(self, ) -> DevicePin: ...
|
15693
16234
|
@property
|
15694
|
-
def RttCalculatorLibraryFilePath(self, ) ->
|
16235
|
+
def RttCalculatorLibraryFilePath(self, ) -> FilePathParameter: ...
|
15695
16236
|
@property
|
15696
16237
|
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameter: ...
|
15697
16238
|
@property
|
@@ -15860,7 +16401,7 @@ class JmagRT_PMSM:
|
|
15860
16401
|
@property
|
15861
16402
|
def Pin_Pmagnet(self, ) -> DevicePin: ...
|
15862
16403
|
@property
|
15863
|
-
def RttCalculatorLibraryFilePath(self, ) ->
|
16404
|
+
def RttCalculatorLibraryFilePath(self, ) -> FilePathParameter: ...
|
15864
16405
|
@property
|
15865
16406
|
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameter: ...
|
15866
16407
|
@property
|
@@ -16035,7 +16576,7 @@ class JmagRT_WFSM:
|
|
16035
16576
|
@property
|
16036
16577
|
def Pin_Pwinding(self, ) -> DevicePin: ...
|
16037
16578
|
@property
|
16038
|
-
def RttCalculatorLibraryFilePath(self, ) ->
|
16579
|
+
def RttCalculatorLibraryFilePath(self, ) -> FilePathParameter: ...
|
16039
16580
|
@property
|
16040
16581
|
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameterNoSkew: ...
|
16041
16582
|
@property
|
@@ -20047,6 +20588,106 @@ class TriangularWave2:
|
|
20047
20588
|
def GetHashCode(self) -> int: ...
|
20048
20589
|
def __init__(self): ...
|
20049
20590
|
|
20591
|
+
class ControlScope:
|
20592
|
+
@property
|
20593
|
+
def LibraryItemName(self, ) -> str: ...
|
20594
|
+
@property
|
20595
|
+
def ModelType(self, ) -> ModelType: ...
|
20596
|
+
@property
|
20597
|
+
def Prefix(self, ) -> str: ...
|
20598
|
+
@property
|
20599
|
+
def Pins(self, ) -> List[Any]: ...
|
20600
|
+
@property
|
20601
|
+
def Shapes(self, ) -> List[Any]: ...
|
20602
|
+
@property
|
20603
|
+
def Scopes(self, ) -> List[Scope]: ...
|
20604
|
+
@property
|
20605
|
+
def In(self, ) -> DevicePin: ...
|
20606
|
+
@property
|
20607
|
+
def SamplingTime(self, ) -> DoubleParameter: ...
|
20608
|
+
@property
|
20609
|
+
def InstanceID(self, ) -> Any: ...
|
20610
|
+
@property
|
20611
|
+
def UndoTrackingId(self, ) -> Any: ...
|
20612
|
+
@property
|
20613
|
+
def Circuit(self, ) -> Circuit: ...
|
20614
|
+
@property
|
20615
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
20616
|
+
@property
|
20617
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
20618
|
+
@property
|
20619
|
+
def UnrotatedTop(self, ) -> int: ...
|
20620
|
+
@property
|
20621
|
+
def UnrotatedLeft(self, ) -> int: ...
|
20622
|
+
@property
|
20623
|
+
def UnrotatedWidth(self, ) -> int: ...
|
20624
|
+
@property
|
20625
|
+
def UnrotatedHeight(self, ) -> int: ...
|
20626
|
+
@property
|
20627
|
+
def RotationAngle(self, ) -> int: ...
|
20628
|
+
@property
|
20629
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
20630
|
+
@property
|
20631
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
20632
|
+
@property
|
20633
|
+
def Deprecated(self, ) -> bool: ...
|
20634
|
+
@property
|
20635
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
20636
|
+
@property
|
20637
|
+
def Disabled(self, ) -> bool: ...
|
20638
|
+
@property
|
20639
|
+
def SymbolFilePath(self, ) -> str: ...
|
20640
|
+
@property
|
20641
|
+
def SymbolFilename(self, ) -> str: ...
|
20642
|
+
@property
|
20643
|
+
def IsBeta(self, ) -> bool: ...
|
20644
|
+
@property
|
20645
|
+
def Childrens(self, ) -> List[Any]: ...
|
20646
|
+
@property
|
20647
|
+
def LibraryItemPath(self, ) -> str: ...
|
20648
|
+
@property
|
20649
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
20650
|
+
@property
|
20651
|
+
def Parameters(self, ) -> List[Any]: ...
|
20652
|
+
@property
|
20653
|
+
def Footprint(self, ) -> RectangleI: ...
|
20654
|
+
@property
|
20655
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
20656
|
+
@property
|
20657
|
+
def Position(self, ) -> PointI: ...
|
20658
|
+
@property
|
20659
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
20660
|
+
@property
|
20661
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
20662
|
+
@property
|
20663
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
20664
|
+
@property
|
20665
|
+
def Name(self, ) -> StringParameter: ...
|
20666
|
+
@property
|
20667
|
+
def EntityId(self, ) -> Any: ...
|
20668
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
20669
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
20670
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
20671
|
+
def CanMove(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
20672
|
+
def SetName(self, name: str) -> Any: ...
|
20673
|
+
def GetName(self) -> str: ...
|
20674
|
+
def Serialize(self) -> str: ...
|
20675
|
+
def Copy(self) -> ICopiable: ...
|
20676
|
+
def RotateLeft(self) -> Any: ...
|
20677
|
+
def HorizontalFlip(self) -> Any: ...
|
20678
|
+
def VerticalFlip(self) -> Any: ...
|
20679
|
+
def RotateRight(self) -> Any: ...
|
20680
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
20681
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
20682
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
20683
|
+
def UpdateObservableScopes(self) -> Any: ...
|
20684
|
+
def ParametersUpdated(self) -> Any: ...
|
20685
|
+
def GetType(self) -> Any: ...
|
20686
|
+
def ToString(self) -> str: ...
|
20687
|
+
def Equals(self, obj: Any) -> bool: ...
|
20688
|
+
def GetHashCode(self) -> int: ...
|
20689
|
+
def __init__(self): ...
|
20690
|
+
|
20050
20691
|
class AbsoluteValue:
|
20051
20692
|
@property
|
20052
20693
|
def LibraryItemName(self, ) -> str: ...
|
@@ -25167,6 +25808,48 @@ class ReleaseInfo:
|
|
25167
25808
|
def GetHashCode(self) -> int: ...
|
25168
25809
|
def __init__(self): ...
|
25169
25810
|
|
25811
|
+
class CircuitElement:
|
25812
|
+
@property
|
25813
|
+
def File(self, ) -> str: ...
|
25814
|
+
@property
|
25815
|
+
def Name(self, ) -> str: ...
|
25816
|
+
@property
|
25817
|
+
def Terminals(self, ) -> List[Terminal]: ...
|
25818
|
+
def GetType(self) -> Any: ...
|
25819
|
+
def ToString(self) -> str: ...
|
25820
|
+
def Equals(self, obj: Any) -> bool: ...
|
25821
|
+
def GetHashCode(self) -> int: ...
|
25822
|
+
def __init__(self): ...
|
25823
|
+
def __init__(self, xmlPath: str): ...
|
25824
|
+
|
25825
|
+
class Terminal:
|
25826
|
+
@property
|
25827
|
+
def Id(self, ) -> str: ...
|
25828
|
+
@property
|
25829
|
+
def Name(self, ) -> str: ...
|
25830
|
+
@property
|
25831
|
+
def Port(self, ) -> str: ...
|
25832
|
+
@property
|
25833
|
+
def Jmag(self, ) -> Jmag: ...
|
25834
|
+
def GetType(self) -> Any: ...
|
25835
|
+
def ToString(self) -> str: ...
|
25836
|
+
def Equals(self, obj: Any) -> bool: ...
|
25837
|
+
def GetHashCode(self) -> int: ...
|
25838
|
+
def __init__(self): ...
|
25839
|
+
|
25840
|
+
class Jmag:
|
25841
|
+
@property
|
25842
|
+
def Condition(self, ) -> str: ...
|
25843
|
+
@property
|
25844
|
+
def Id(self, ) -> str: ...
|
25845
|
+
@property
|
25846
|
+
def Component(self, ) -> str: ...
|
25847
|
+
def GetType(self) -> Any: ...
|
25848
|
+
def ToString(self) -> str: ...
|
25849
|
+
def Equals(self, obj: Any) -> bool: ...
|
25850
|
+
def GetHashCode(self) -> int: ...
|
25851
|
+
def __init__(self): ...
|
25852
|
+
|
25170
25853
|
class ArrayHelper:
|
25171
25854
|
def ToString(value: Any) -> str: ...
|
25172
25855
|
def SortByFirstColumn(array: List[Any], comparer: Optional[Any] = None) -> List[Any]: ...
|
@@ -25207,6 +25890,8 @@ class SolverLibrary:
|
|
25207
25890
|
def GetHashCode(self) -> int: ...
|
25208
25891
|
|
25209
25892
|
class DefaultColors:
|
25893
|
+
@property
|
25894
|
+
def IsDarkMode() -> bool: ...
|
25210
25895
|
@property
|
25211
25896
|
def ElectricalDevice() -> Any: ...
|
25212
25897
|
@property
|
@@ -25720,7 +26405,7 @@ class ISolverNativeBridge:
|
|
25720
26405
|
def SetAnalysisParameter(self, parameter: SolverParameter, parameter_expression: str) -> Status: ...
|
25721
26406
|
def SetThermalData(self, thermalDataID: str, type: ThermalDataType, array1: DoubleArrayParameter, array2: DoubleArrayParameter, temperature: float, voltage: float) -> Status: ...
|
25722
26407
|
def SetThermalDataComputationMethod(self, thermalDataID: str, thermalDataType: ThermalDataType, thermalComputationMethodType: ThermalComputationMethodType, Formula: Optional[str] = None) -> Status: ...
|
25723
|
-
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str,
|
26408
|
+
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str, axis_data: str, data: str) -> Status: ...
|
25724
26409
|
def CheckCircuitConsistency(self) -> Status: ...
|
25725
26410
|
def SetLogLevel(self, log_type: LogType, log_level: int) -> Status: ...
|
25726
26411
|
def DisposeNativeSolver(self) -> Any: ...
|
@@ -25901,11 +26586,11 @@ class SignalCalculatorJob:
|
|
25901
26586
|
@property
|
25902
26587
|
def EntityId(self, ) -> Any: ...
|
25903
26588
|
def Run(self) -> Status: ...
|
25904
|
-
def Dispose(self) -> Any: ...
|
25905
26589
|
def SetSignalData(self, signal_name: str, time_data: Any, y_data: Any, size: int) -> Status: ...
|
25906
26590
|
def RunSignalCalculatorJob(self, expression: str, size: Any) -> Status: ...
|
25907
26591
|
def GetCalculatedSignal(self, time_data: Any, y_data: Any) -> Status: ...
|
25908
|
-
def
|
26592
|
+
def Dispose(self) -> Any: ...
|
26593
|
+
def DisposeUnmanagedResources(self) -> Any: ...
|
25909
26594
|
def Summary(self) -> str: ...
|
25910
26595
|
def UpdateProgress(self, status: Status, progress: float, errorOrWarning: ErrorOrWarning) -> Any: ...
|
25911
26596
|
def SavedInDatabase(self) -> Any: ...
|
@@ -25933,7 +26618,7 @@ class SolverNativeBridge:
|
|
25933
26618
|
def ClearScopesData(self, clear_all: bool, start_time: float) -> Status: ...
|
25934
26619
|
def SetThermalData(self, thermalDataID: str, type: ThermalDataType, array1: DoubleArrayParameter, array2: DoubleArrayParameter, temperature: float, voltage: float) -> Status: ...
|
25935
26620
|
def SetThermalDataComputationMethod(self, thermalDataID: str, thermalDataType: ThermalDataType, thermalComputationMethodType: ThermalComputationMethodType, Formula: Optional[str] = None) -> Status: ...
|
25936
|
-
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str,
|
26621
|
+
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str, axis_data: str, data: str) -> Status: ...
|
25937
26622
|
def CheckCircuitConsistency(self) -> Status: ...
|
25938
26623
|
def SetVariable(self, variable_name: str, variable_expression: str, subcircuit_definition_id: Optional[str] = None, subcircuit_instance_id: Optional[str] = None) -> Status: ...
|
25939
26624
|
def SetLogLevel(self, log_type: LogType, log_level: int) -> Status: ...
|