aesim.simba 2025.3.28__py3-none-macosx_11_0_arm64.whl → 2025.6.26a1__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/CsvHelper.dll +0 -0
- 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 +30 -27
- 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 +750 -17
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.26a1.dist-info}/METADATA +1 -1
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.26a1.dist-info}/RECORD +16 -16
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.26a1.dist-info}/WHEEL +0 -0
- {aesim.simba-2025.3.28.dist-info → aesim.simba-2025.6.26a1.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: ...
|
@@ -1086,6 +1087,24 @@ class JMAGRT_AdvancedParameter:
|
|
1086
1087
|
@property
|
1087
1088
|
def ACCopperLossType(self, ) -> IntParameter: ...
|
1088
1089
|
@property
|
1090
|
+
def NumCoilsInSlotHeight(self, ) -> DoubleParameter: ...
|
1091
|
+
@property
|
1092
|
+
def NumCoilsInSlotWidth(self, ) -> DoubleParameter: ...
|
1093
|
+
@property
|
1094
|
+
def NumSlotsPerPhase(self, ) -> DoubleParameter: ...
|
1095
|
+
@property
|
1096
|
+
def SlotWidth(self, ) -> DoubleParameter: ...
|
1097
|
+
@property
|
1098
|
+
def ConductorSectionType(self, ) -> IntParameter: ...
|
1099
|
+
@property
|
1100
|
+
def CoilWidth(self, ) -> DoubleParameter: ...
|
1101
|
+
@property
|
1102
|
+
def CoilHeight(self, ) -> DoubleParameter: ...
|
1103
|
+
@property
|
1104
|
+
def StackLength(self, ) -> DoubleParameter: ...
|
1105
|
+
@property
|
1106
|
+
def Conductivity(self, ) -> DoubleParameter: ...
|
1107
|
+
@property
|
1089
1108
|
def RotorSkewType(self, ) -> IntParameter: ...
|
1090
1109
|
@property
|
1091
1110
|
def StatorSkewType(self, ) -> IntParameter: ...
|
@@ -2846,6 +2865,18 @@ class JMAG_RT_SkewType:
|
|
2846
2865
|
def GetTypeCode(self) -> Any: ...
|
2847
2866
|
def GetType(self) -> Any: ...
|
2848
2867
|
|
2868
|
+
class JMAG_RT_ConductorSectionType:
|
2869
|
+
def HasFlag(self, flag: Any) -> bool: ...
|
2870
|
+
def Equals(self, obj: Any) -> bool: ...
|
2871
|
+
def GetHashCode(self) -> int: ...
|
2872
|
+
def CompareTo(self, target: Any) -> int: ...
|
2873
|
+
def ToString(self) -> str: ...
|
2874
|
+
def ToString(self, format: str) -> str: ...
|
2875
|
+
def ToString(self, provider: Any) -> str: ...
|
2876
|
+
def ToString(self, format: str, provider: Any) -> str: ...
|
2877
|
+
def GetTypeCode(self) -> Any: ...
|
2878
|
+
def GetType(self) -> Any: ...
|
2879
|
+
|
2849
2880
|
class JMAG_RT_InterpolationType:
|
2850
2881
|
def HasFlag(self, flag: Any) -> bool: ...
|
2851
2882
|
def Equals(self, obj: Any) -> bool: ...
|
@@ -2893,6 +2924,7 @@ class Custom1DTable:
|
|
2893
2924
|
def EntityId(self, ) -> Any: ...
|
2894
2925
|
def ToString(self) -> str: ...
|
2895
2926
|
def array_2d(self) -> Any: ...
|
2927
|
+
def GetGridDataStrings(self) -> Any: ...
|
2896
2928
|
def GetType(self) -> Any: ...
|
2897
2929
|
def Equals(self, obj: Any) -> bool: ...
|
2898
2930
|
def GetHashCode(self) -> int: ...
|
@@ -2914,6 +2946,7 @@ class Custom2DTable:
|
|
2914
2946
|
@property
|
2915
2947
|
def EntityId(self, ) -> Any: ...
|
2916
2948
|
def ToString(self) -> str: ...
|
2949
|
+
def GetGridDataStrings(self) -> Any: ...
|
2917
2950
|
def GetType(self) -> Any: ...
|
2918
2951
|
def Equals(self, obj: Any) -> bool: ...
|
2919
2952
|
def GetHashCode(self) -> int: ...
|
@@ -2938,6 +2971,7 @@ class Custom3DTable:
|
|
2938
2971
|
def EntityId(self, ) -> Any: ...
|
2939
2972
|
def ToString(self) -> str: ...
|
2940
2973
|
def array_2d(self, z_array_index: int) -> Any: ...
|
2974
|
+
def GetGridDataStrings(self) -> Any: ...
|
2941
2975
|
def GetType(self) -> Any: ...
|
2942
2976
|
def Equals(self, obj: Any) -> bool: ...
|
2943
2977
|
def GetHashCode(self) -> int: ...
|
@@ -2947,6 +2981,36 @@ class Custom3DTable:
|
|
2947
2981
|
def __init__(self, table: Custom2DTable): ...
|
2948
2982
|
def __init__(self, table: Custom1DTable): ...
|
2949
2983
|
|
2984
|
+
class Custom4DTable:
|
2985
|
+
@property
|
2986
|
+
def Name(self, ) -> str: ...
|
2987
|
+
@property
|
2988
|
+
def Xaxis(self, ) -> Any: ...
|
2989
|
+
@property
|
2990
|
+
def Yaxis(self, ) -> Any: ...
|
2991
|
+
@property
|
2992
|
+
def Zaxis(self, ) -> Any: ...
|
2993
|
+
@property
|
2994
|
+
def Waxis(self, ) -> Any: ...
|
2995
|
+
@property
|
2996
|
+
def Data(self, ) -> Any: ...
|
2997
|
+
@property
|
2998
|
+
def DataSerialized(self, ) -> Any: ...
|
2999
|
+
@property
|
3000
|
+
def EntityId(self, ) -> Any: ...
|
3001
|
+
def ToString(self) -> str: ...
|
3002
|
+
def array_2d(self, z_index: int, w_index: int) -> Any: ...
|
3003
|
+
def GetGridDataStrings(self) -> Any: ...
|
3004
|
+
def GetType(self) -> Any: ...
|
3005
|
+
def Equals(self, obj: Any) -> bool: ...
|
3006
|
+
def GetHashCode(self) -> int: ...
|
3007
|
+
def __init__(self): ...
|
3008
|
+
def __init__(self, table: Custom4DTable): ...
|
3009
|
+
def __init__(self, table: Table): ...
|
3010
|
+
def __init__(self, table: Custom3DTable): ...
|
3011
|
+
def __init__(self, table: Custom2DTable): ...
|
3012
|
+
def __init__(self, table: Custom1DTable): ...
|
3013
|
+
|
2950
3014
|
class EI_VT:
|
2951
3015
|
@property
|
2952
3016
|
def Temperature(self, ) -> float: ...
|
@@ -3047,6 +3111,8 @@ class CustomTables:
|
|
3047
3111
|
def Table2Ds(self, ) -> List[Table2D]: ...
|
3048
3112
|
@property
|
3049
3113
|
def Table3Ds(self, ) -> List[Table3D]: ...
|
3114
|
+
@property
|
3115
|
+
def Tables(self, ) -> List[Table]: ...
|
3050
3116
|
def GetType(self) -> Any: ...
|
3051
3117
|
def ToString(self) -> str: ...
|
3052
3118
|
def Equals(self, obj: Any) -> bool: ...
|
@@ -3107,6 +3173,50 @@ class ZDimension:
|
|
3107
3173
|
def GetHashCode(self) -> int: ...
|
3108
3174
|
def __init__(self): ...
|
3109
3175
|
|
3176
|
+
class Table:
|
3177
|
+
@property
|
3178
|
+
def numDimensions(self, ) -> int: ...
|
3179
|
+
@property
|
3180
|
+
def Name(self, ) -> str: ...
|
3181
|
+
@property
|
3182
|
+
def Axis(self, ) -> List[str]: ...
|
3183
|
+
@property
|
3184
|
+
def FunctionValues(self, ) -> FunctionValues4D: ...
|
3185
|
+
def GetType(self) -> Any: ...
|
3186
|
+
def ToString(self) -> str: ...
|
3187
|
+
def Equals(self, obj: Any) -> bool: ...
|
3188
|
+
def GetHashCode(self) -> int: ...
|
3189
|
+
def __init__(self): ...
|
3190
|
+
|
3191
|
+
class FunctionValues4D:
|
3192
|
+
@property
|
3193
|
+
def Scale(self, ) -> str: ...
|
3194
|
+
@property
|
3195
|
+
def Dimensions(self, ) -> List[Dimension3D]: ...
|
3196
|
+
def GetType(self) -> Any: ...
|
3197
|
+
def ToString(self) -> str: ...
|
3198
|
+
def Equals(self, obj: Any) -> bool: ...
|
3199
|
+
def GetHashCode(self) -> int: ...
|
3200
|
+
def __init__(self): ...
|
3201
|
+
|
3202
|
+
class Dimension3D:
|
3203
|
+
@property
|
3204
|
+
def Dimensions(self, ) -> List[Dimension2D]: ...
|
3205
|
+
def GetType(self) -> Any: ...
|
3206
|
+
def ToString(self) -> str: ...
|
3207
|
+
def Equals(self, obj: Any) -> bool: ...
|
3208
|
+
def GetHashCode(self) -> int: ...
|
3209
|
+
def __init__(self): ...
|
3210
|
+
|
3211
|
+
class Dimension2D:
|
3212
|
+
@property
|
3213
|
+
def Dimensions(self, ) -> List[str]: ...
|
3214
|
+
def GetType(self) -> Any: ...
|
3215
|
+
def ToString(self) -> str: ...
|
3216
|
+
def Equals(self, obj: Any) -> bool: ...
|
3217
|
+
def GetHashCode(self) -> int: ...
|
3218
|
+
def __init__(self): ...
|
3219
|
+
|
3110
3220
|
class SemiconductorData:
|
3111
3221
|
@property
|
3112
3222
|
def type(self, ) -> str: ...
|
@@ -3278,6 +3388,8 @@ class ThermalData:
|
|
3278
3388
|
@property
|
3279
3389
|
def Custom3DTables(self, ) -> List[Any]: ...
|
3280
3390
|
@property
|
3391
|
+
def Custom4DTables(self, ) -> List[Any]: ...
|
3392
|
+
@property
|
3281
3393
|
def ConductionLossComputationMethod(self, ) -> ThermalComputationMethodType: ...
|
3282
3394
|
@property
|
3283
3395
|
def ConductionLossComputationFormula(self, ) -> str: ...
|
@@ -3463,7 +3575,20 @@ class ThermalDevice:
|
|
3463
3575
|
def Equals(self, obj: Any) -> bool: ...
|
3464
3576
|
def GetHashCode(self) -> int: ...
|
3465
3577
|
|
3578
|
+
class SelectionService:
|
3579
|
+
@property
|
3580
|
+
def SelectedElements(self, ) -> List[Any]: ...
|
3581
|
+
def SetSelection(self, elements: List[ISelectable]) -> Any: ...
|
3582
|
+
def ClearSelection(self) -> Any: ...
|
3583
|
+
def GetType(self) -> Any: ...
|
3584
|
+
def ToString(self) -> str: ...
|
3585
|
+
def Equals(self, obj: Any) -> bool: ...
|
3586
|
+
def GetHashCode(self) -> int: ...
|
3587
|
+
def __init__(self): ...
|
3588
|
+
|
3466
3589
|
class IProjectRepository:
|
3590
|
+
@property
|
3591
|
+
def ProjectDirectory(self, ) -> str: ...
|
3467
3592
|
@property
|
3468
3593
|
def Project(self, ) -> SerializableProject: ...
|
3469
3594
|
def GetDesigns(self) -> List[Design]: ...
|
@@ -3494,6 +3619,8 @@ class IProjectRepository:
|
|
3494
3619
|
class JsonProjectRepository:
|
3495
3620
|
@property
|
3496
3621
|
def Project(self, ) -> SerializableProject: ...
|
3622
|
+
@property
|
3623
|
+
def ProjectDirectory(self, ) -> str: ...
|
3497
3624
|
def ReloadAsync(self, path: Optional[str] = None) -> Any: ...
|
3498
3625
|
def UnsavedChanges(self) -> bool: ...
|
3499
3626
|
def FilePath(self) -> str: ...
|
@@ -3528,6 +3655,8 @@ class JsonProjectRepository:
|
|
3528
3655
|
class ProjectRepository:
|
3529
3656
|
@property
|
3530
3657
|
def Project(self, ) -> SerializableProject: ...
|
3658
|
+
@property
|
3659
|
+
def ProjectDirectory(self, ) -> str: ...
|
3531
3660
|
def AddDesign(self, Design: Design, updateName: Optional[bool] = None) -> Any: ...
|
3532
3661
|
def AddLibrary(self, library: Library) -> Library: ...
|
3533
3662
|
def AddResults(self, Results: TransientAnalysisJob) -> TransientAnalysisJob: ...
|
@@ -3947,11 +4076,17 @@ class simba_location_offset_in_simba_ref:
|
|
3947
4076
|
|
3948
4077
|
class PsimImporter:
|
3949
4078
|
def CreateSIMBARepositoryFromPSIMFile(xml_path: str) -> Any: ...
|
3950
|
-
def
|
3951
|
-
def
|
4079
|
+
def ImportAndCreateDesign(xml_path: str) -> Any: ...
|
4080
|
+
def IsNotManagedType(type_to_find: str) -> bool: ...
|
4081
|
+
def GetType(self) -> Any: ...
|
4082
|
+
def ToString(self) -> str: ...
|
4083
|
+
def Equals(self, obj: Any) -> bool: ...
|
4084
|
+
def GetHashCode(self) -> int: ...
|
4085
|
+
|
4086
|
+
class PsimImportHelper:
|
4087
|
+
def ExtractDataFromPsimXmlFile(xml_path: str, ErrorsAndWarnings: List[ErrorOrWarning]) -> PsimSchematic: ...
|
3952
4088
|
def ExtractPsimSimbaJsonFile(ErrorsAndWarnings: List[ErrorOrWarning]) -> Json_Import_Object: ...
|
3953
4089
|
def FindSimbaComponentFromPsimType(dictionary: Json_Import_Object, type: str) -> components_with_no_change: ...
|
3954
|
-
def IsNotManagedType(type_to_find: str) -> bool: ...
|
3955
4090
|
def FindSimbaSubcircuitFromPsimType(dictionary: Json_Import_Object, type: str) -> components_using_subcircuit: ...
|
3956
4091
|
def CheckHybridComponents(json_dictionary: Json_Import_Object, component: PsimComponent, simba_component_rules: components_with_no_change) -> components_with_no_change: ...
|
3957
4092
|
def CheckHybridComponents(json_dictionary: Json_Import_Object, component: PsimComponent, simba_subcircuit_rules: components_using_subcircuit) -> components_using_subcircuit: ...
|
@@ -3959,9 +4094,8 @@ class PsimImporter:
|
|
3959
4094
|
def SortedByPinLocation(dictionary: Dict[DevicePin, PinProperties]) -> Dict[PointI, List[DevicePin]]: ...
|
3960
4095
|
def SortedByPinNodeName(dictionary: Dict[DevicePin, PinProperties]) -> Dict[int, List[DevicePin]]: ...
|
3961
4096
|
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
4097
|
def GetDeviceParameters(device: Device) -> Dict[str, str]: ...
|
3964
|
-
def CreateTheSubcircuitPort(circuit: Circuit, subcircuit_port: CNode, pin: Pin) -> List[ErrorOrWarning]: ...
|
4098
|
+
def CreateTheSubcircuitPort(circuit: Circuit, subcircuit_port: CNode, pin: Pin, cCircuit: CCircuit) -> List[ErrorOrWarning]: ...
|
3965
4099
|
def NewCoordinates(coordinates: int) -> int: ...
|
3966
4100
|
def NewCoordinatesScale(coordinates: int, scale: int) -> int: ...
|
3967
4101
|
def CleanConstantAndExpressionName(str: str) -> str: ...
|
@@ -3973,6 +4107,7 @@ class PsimImporter:
|
|
3973
4107
|
def ToString(self) -> str: ...
|
3974
4108
|
def Equals(self, obj: Any) -> bool: ...
|
3975
4109
|
def GetHashCode(self) -> int: ...
|
4110
|
+
def __init__(self): ...
|
3976
4111
|
|
3977
4112
|
class PsimSchematic:
|
3978
4113
|
@property
|
@@ -9129,6 +9264,226 @@ class FreneticSaturableInductor:
|
|
9129
9264
|
def GetHashCode(self) -> int: ...
|
9130
9265
|
def __init__(self): ...
|
9131
9266
|
|
9267
|
+
class ABCDQ0Power:
|
9268
|
+
@property
|
9269
|
+
def LibraryItemName(self, ) -> str: ...
|
9270
|
+
@property
|
9271
|
+
def ModelType(self, ) -> ModelType: ...
|
9272
|
+
@property
|
9273
|
+
def Prefix(self, ) -> str: ...
|
9274
|
+
@property
|
9275
|
+
def Pins(self, ) -> List[Any]: ...
|
9276
|
+
@property
|
9277
|
+
def Shapes(self, ) -> List[Any]: ...
|
9278
|
+
@property
|
9279
|
+
def Scopes(self, ) -> List[Scope]: ...
|
9280
|
+
@property
|
9281
|
+
def A(self, ) -> DevicePin: ...
|
9282
|
+
@property
|
9283
|
+
def B(self, ) -> DevicePin: ...
|
9284
|
+
@property
|
9285
|
+
def C(self, ) -> DevicePin: ...
|
9286
|
+
@property
|
9287
|
+
def Theta(self, ) -> DevicePin: ...
|
9288
|
+
@property
|
9289
|
+
def D(self, ) -> DevicePin: ...
|
9290
|
+
@property
|
9291
|
+
def Q(self, ) -> DevicePin: ...
|
9292
|
+
@property
|
9293
|
+
def Zero(self, ) -> DevicePin: ...
|
9294
|
+
@property
|
9295
|
+
def InstanceID(self, ) -> Any: ...
|
9296
|
+
@property
|
9297
|
+
def UndoTrackingId(self, ) -> Any: ...
|
9298
|
+
@property
|
9299
|
+
def Circuit(self, ) -> Circuit: ...
|
9300
|
+
@property
|
9301
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
9302
|
+
@property
|
9303
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
9304
|
+
@property
|
9305
|
+
def UnrotatedTop(self, ) -> int: ...
|
9306
|
+
@property
|
9307
|
+
def UnrotatedLeft(self, ) -> int: ...
|
9308
|
+
@property
|
9309
|
+
def UnrotatedWidth(self, ) -> int: ...
|
9310
|
+
@property
|
9311
|
+
def UnrotatedHeight(self, ) -> int: ...
|
9312
|
+
@property
|
9313
|
+
def RotationAngle(self, ) -> int: ...
|
9314
|
+
@property
|
9315
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
9316
|
+
@property
|
9317
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
9318
|
+
@property
|
9319
|
+
def Deprecated(self, ) -> bool: ...
|
9320
|
+
@property
|
9321
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
9322
|
+
@property
|
9323
|
+
def Disabled(self, ) -> bool: ...
|
9324
|
+
@property
|
9325
|
+
def SymbolFilePath(self, ) -> str: ...
|
9326
|
+
@property
|
9327
|
+
def SymbolFilename(self, ) -> str: ...
|
9328
|
+
@property
|
9329
|
+
def IsBeta(self, ) -> bool: ...
|
9330
|
+
@property
|
9331
|
+
def Childrens(self, ) -> List[Any]: ...
|
9332
|
+
@property
|
9333
|
+
def LibraryItemPath(self, ) -> str: ...
|
9334
|
+
@property
|
9335
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
9336
|
+
@property
|
9337
|
+
def Parameters(self, ) -> List[Any]: ...
|
9338
|
+
@property
|
9339
|
+
def Footprint(self, ) -> RectangleI: ...
|
9340
|
+
@property
|
9341
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
9342
|
+
@property
|
9343
|
+
def Position(self, ) -> PointI: ...
|
9344
|
+
@property
|
9345
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
9346
|
+
@property
|
9347
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
9348
|
+
@property
|
9349
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
9350
|
+
@property
|
9351
|
+
def Name(self, ) -> StringParameter: ...
|
9352
|
+
@property
|
9353
|
+
def EntityId(self, ) -> Any: ...
|
9354
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9355
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9356
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
9357
|
+
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: ...
|
9358
|
+
def SetName(self, name: str) -> Any: ...
|
9359
|
+
def GetName(self) -> str: ...
|
9360
|
+
def Serialize(self) -> str: ...
|
9361
|
+
def Copy(self) -> ICopiable: ...
|
9362
|
+
def RotateLeft(self) -> Any: ...
|
9363
|
+
def HorizontalFlip(self) -> Any: ...
|
9364
|
+
def VerticalFlip(self) -> Any: ...
|
9365
|
+
def RotateRight(self) -> Any: ...
|
9366
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
9367
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
9368
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
9369
|
+
def UpdateObservableScopes(self) -> Any: ...
|
9370
|
+
def ParametersUpdated(self) -> Any: ...
|
9371
|
+
def GetType(self) -> Any: ...
|
9372
|
+
def ToString(self) -> str: ...
|
9373
|
+
def Equals(self, obj: Any) -> bool: ...
|
9374
|
+
def GetHashCode(self) -> int: ...
|
9375
|
+
def __init__(self): ...
|
9376
|
+
|
9377
|
+
class DQ0ABCPower:
|
9378
|
+
@property
|
9379
|
+
def LibraryItemName(self, ) -> str: ...
|
9380
|
+
@property
|
9381
|
+
def ModelType(self, ) -> ModelType: ...
|
9382
|
+
@property
|
9383
|
+
def Prefix(self, ) -> str: ...
|
9384
|
+
@property
|
9385
|
+
def Pins(self, ) -> List[Any]: ...
|
9386
|
+
@property
|
9387
|
+
def Shapes(self, ) -> List[Any]: ...
|
9388
|
+
@property
|
9389
|
+
def Scopes(self, ) -> List[Scope]: ...
|
9390
|
+
@property
|
9391
|
+
def D(self, ) -> DevicePin: ...
|
9392
|
+
@property
|
9393
|
+
def Q(self, ) -> DevicePin: ...
|
9394
|
+
@property
|
9395
|
+
def Zero(self, ) -> DevicePin: ...
|
9396
|
+
@property
|
9397
|
+
def A(self, ) -> DevicePin: ...
|
9398
|
+
@property
|
9399
|
+
def B(self, ) -> DevicePin: ...
|
9400
|
+
@property
|
9401
|
+
def C(self, ) -> DevicePin: ...
|
9402
|
+
@property
|
9403
|
+
def Theta(self, ) -> DevicePin: ...
|
9404
|
+
@property
|
9405
|
+
def InstanceID(self, ) -> Any: ...
|
9406
|
+
@property
|
9407
|
+
def UndoTrackingId(self, ) -> Any: ...
|
9408
|
+
@property
|
9409
|
+
def Circuit(self, ) -> Circuit: ...
|
9410
|
+
@property
|
9411
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
9412
|
+
@property
|
9413
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
9414
|
+
@property
|
9415
|
+
def UnrotatedTop(self, ) -> int: ...
|
9416
|
+
@property
|
9417
|
+
def UnrotatedLeft(self, ) -> int: ...
|
9418
|
+
@property
|
9419
|
+
def UnrotatedWidth(self, ) -> int: ...
|
9420
|
+
@property
|
9421
|
+
def UnrotatedHeight(self, ) -> int: ...
|
9422
|
+
@property
|
9423
|
+
def RotationAngle(self, ) -> int: ...
|
9424
|
+
@property
|
9425
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
9426
|
+
@property
|
9427
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
9428
|
+
@property
|
9429
|
+
def Deprecated(self, ) -> bool: ...
|
9430
|
+
@property
|
9431
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
9432
|
+
@property
|
9433
|
+
def Disabled(self, ) -> bool: ...
|
9434
|
+
@property
|
9435
|
+
def SymbolFilePath(self, ) -> str: ...
|
9436
|
+
@property
|
9437
|
+
def SymbolFilename(self, ) -> str: ...
|
9438
|
+
@property
|
9439
|
+
def IsBeta(self, ) -> bool: ...
|
9440
|
+
@property
|
9441
|
+
def Childrens(self, ) -> List[Any]: ...
|
9442
|
+
@property
|
9443
|
+
def LibraryItemPath(self, ) -> str: ...
|
9444
|
+
@property
|
9445
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
9446
|
+
@property
|
9447
|
+
def Parameters(self, ) -> List[Any]: ...
|
9448
|
+
@property
|
9449
|
+
def Footprint(self, ) -> RectangleI: ...
|
9450
|
+
@property
|
9451
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
9452
|
+
@property
|
9453
|
+
def Position(self, ) -> PointI: ...
|
9454
|
+
@property
|
9455
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
9456
|
+
@property
|
9457
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
9458
|
+
@property
|
9459
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
9460
|
+
@property
|
9461
|
+
def Name(self, ) -> StringParameter: ...
|
9462
|
+
@property
|
9463
|
+
def EntityId(self, ) -> Any: ...
|
9464
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9465
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
9466
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
9467
|
+
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: ...
|
9468
|
+
def SetName(self, name: str) -> Any: ...
|
9469
|
+
def GetName(self) -> str: ...
|
9470
|
+
def Serialize(self) -> str: ...
|
9471
|
+
def Copy(self) -> ICopiable: ...
|
9472
|
+
def RotateLeft(self) -> Any: ...
|
9473
|
+
def HorizontalFlip(self) -> Any: ...
|
9474
|
+
def VerticalFlip(self) -> Any: ...
|
9475
|
+
def RotateRight(self) -> Any: ...
|
9476
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
9477
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
9478
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
9479
|
+
def UpdateObservableScopes(self) -> Any: ...
|
9480
|
+
def ParametersUpdated(self) -> Any: ...
|
9481
|
+
def GetType(self) -> Any: ...
|
9482
|
+
def ToString(self) -> str: ...
|
9483
|
+
def Equals(self, obj: Any) -> bool: ...
|
9484
|
+
def GetHashCode(self) -> int: ...
|
9485
|
+
def __init__(self): ...
|
9486
|
+
|
9132
9487
|
class IdealTransformer:
|
9133
9488
|
@property
|
9134
9489
|
def LibraryItemName(self, ) -> str: ...
|
@@ -14365,11 +14720,113 @@ class IdealMosfetWithDiode:
|
|
14365
14720
|
@property
|
14366
14721
|
def ShowJunctionTemperatureControlPin(self, ) -> BoolParameter: ...
|
14367
14722
|
@property
|
14368
|
-
def ThermalData(self, ) -> ThermalData: ...
|
14723
|
+
def ThermalData(self, ) -> ThermalData: ...
|
14724
|
+
@property
|
14725
|
+
def CustomVariables(self, ) -> List[ThermalDataVariable]: ...
|
14726
|
+
@property
|
14727
|
+
def LossCalculationFrequency(self, ) -> DoubleParameter: ...
|
14728
|
+
@property
|
14729
|
+
def InstanceID(self, ) -> Any: ...
|
14730
|
+
@property
|
14731
|
+
def UndoTrackingId(self, ) -> Any: ...
|
14732
|
+
@property
|
14733
|
+
def Circuit(self, ) -> Circuit: ...
|
14734
|
+
@property
|
14735
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
14736
|
+
@property
|
14737
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
14738
|
+
@property
|
14739
|
+
def UnrotatedTop(self, ) -> int: ...
|
14740
|
+
@property
|
14741
|
+
def UnrotatedLeft(self, ) -> int: ...
|
14742
|
+
@property
|
14743
|
+
def UnrotatedWidth(self, ) -> int: ...
|
14744
|
+
@property
|
14745
|
+
def UnrotatedHeight(self, ) -> int: ...
|
14746
|
+
@property
|
14747
|
+
def RotationAngle(self, ) -> int: ...
|
14748
|
+
@property
|
14749
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
14750
|
+
@property
|
14751
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
14752
|
+
@property
|
14753
|
+
def Deprecated(self, ) -> bool: ...
|
14754
|
+
@property
|
14755
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
14756
|
+
@property
|
14757
|
+
def Disabled(self, ) -> bool: ...
|
14758
|
+
@property
|
14759
|
+
def SymbolFilePath(self, ) -> str: ...
|
14760
|
+
@property
|
14761
|
+
def SymbolFilename(self, ) -> str: ...
|
14762
|
+
@property
|
14763
|
+
def IsBeta(self, ) -> bool: ...
|
14764
|
+
@property
|
14765
|
+
def Childrens(self, ) -> List[Any]: ...
|
14766
|
+
@property
|
14767
|
+
def LibraryItemPath(self, ) -> str: ...
|
14768
|
+
@property
|
14769
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
14770
|
+
@property
|
14771
|
+
def Parameters(self, ) -> List[Any]: ...
|
14772
|
+
@property
|
14773
|
+
def Footprint(self, ) -> RectangleI: ...
|
14774
|
+
@property
|
14775
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
14776
|
+
@property
|
14777
|
+
def Position(self, ) -> PointI: ...
|
14778
|
+
@property
|
14779
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
14780
|
+
@property
|
14781
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
14782
|
+
@property
|
14783
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
14784
|
+
@property
|
14785
|
+
def Name(self, ) -> StringParameter: ...
|
14786
|
+
@property
|
14787
|
+
def EntityId(self, ) -> Any: ...
|
14788
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
14789
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
14790
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
14791
|
+
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: ...
|
14792
|
+
def SetName(self, name: str) -> Any: ...
|
14793
|
+
def GetName(self) -> str: ...
|
14794
|
+
def Serialize(self) -> str: ...
|
14795
|
+
def Copy(self) -> ICopiable: ...
|
14796
|
+
def RotateLeft(self) -> Any: ...
|
14797
|
+
def HorizontalFlip(self) -> Any: ...
|
14798
|
+
def VerticalFlip(self) -> Any: ...
|
14799
|
+
def RotateRight(self) -> Any: ...
|
14800
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
14801
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
14802
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
14803
|
+
def UpdateObservableScopes(self) -> Any: ...
|
14804
|
+
def ParametersUpdated(self) -> Any: ...
|
14805
|
+
def GetType(self) -> Any: ...
|
14806
|
+
def ToString(self) -> str: ...
|
14807
|
+
def Equals(self, obj: Any) -> bool: ...
|
14808
|
+
def GetHashCode(self) -> int: ...
|
14809
|
+
def __init__(self): ...
|
14810
|
+
|
14811
|
+
class IdealThyristor:
|
14812
|
+
@property
|
14813
|
+
def LibraryItemName(self, ) -> str: ...
|
14814
|
+
@property
|
14815
|
+
def ModelType(self, ) -> ModelType: ...
|
14816
|
+
@property
|
14817
|
+
def Prefix(self, ) -> str: ...
|
14818
|
+
@property
|
14819
|
+
def Pins(self, ) -> List[Any]: ...
|
14820
|
+
@property
|
14821
|
+
def Shapes(self, ) -> List[Any]: ...
|
14822
|
+
@property
|
14823
|
+
def Scopes(self, ) -> List[Scope]: ...
|
14824
|
+
@property
|
14825
|
+
def Anode(self, ) -> DevicePin: ...
|
14369
14826
|
@property
|
14370
|
-
def
|
14827
|
+
def Cathode(self, ) -> DevicePin: ...
|
14371
14828
|
@property
|
14372
|
-
def
|
14829
|
+
def In(self, ) -> DevicePin: ...
|
14373
14830
|
@property
|
14374
14831
|
def InstanceID(self, ) -> Any: ...
|
14375
14832
|
@property
|
@@ -14453,7 +14910,7 @@ class IdealMosfetWithDiode:
|
|
14453
14910
|
def GetHashCode(self) -> int: ...
|
14454
14911
|
def __init__(self): ...
|
14455
14912
|
|
14456
|
-
class
|
14913
|
+
class ZenerDiode:
|
14457
14914
|
@property
|
14458
14915
|
def LibraryItemName(self, ) -> str: ...
|
14459
14916
|
@property
|
@@ -14471,7 +14928,13 @@ class IdealThyristor:
|
|
14471
14928
|
@property
|
14472
14929
|
def Cathode(self, ) -> DevicePin: ...
|
14473
14930
|
@property
|
14474
|
-
def
|
14931
|
+
def Rd(self, ) -> DoubleParameter: ...
|
14932
|
+
@property
|
14933
|
+
def Vf(self, ) -> DoubleParameter: ...
|
14934
|
+
@property
|
14935
|
+
def Rbr(self, ) -> DoubleParameter: ...
|
14936
|
+
@property
|
14937
|
+
def Vbr(self, ) -> DoubleParameter: ...
|
14475
14938
|
@property
|
14476
14939
|
def InstanceID(self, ) -> Any: ...
|
14477
14940
|
@property
|
@@ -15661,6 +16124,114 @@ class IM:
|
|
15661
16124
|
def GetHashCode(self) -> int: ...
|
15662
16125
|
def __init__(self): ...
|
15663
16126
|
|
16127
|
+
class JmagDirectCoupling:
|
16128
|
+
@property
|
16129
|
+
def LibraryItemName(self, ) -> str: ...
|
16130
|
+
@property
|
16131
|
+
def ModelType(self, ) -> ModelType: ...
|
16132
|
+
@property
|
16133
|
+
def Prefix(self, ) -> str: ...
|
16134
|
+
@property
|
16135
|
+
def Pins(self, ) -> List[Any]: ...
|
16136
|
+
@property
|
16137
|
+
def Scopes(self, ) -> List[Scope]: ...
|
16138
|
+
@property
|
16139
|
+
def Shapes(self, ) -> List[Any]: ...
|
16140
|
+
@property
|
16141
|
+
def InputFilePath(self, ) -> FilePathParameter: ...
|
16142
|
+
@property
|
16143
|
+
def XmlFilePath(self, ) -> FilePathParameter: ...
|
16144
|
+
@property
|
16145
|
+
def DllPath(self, ) -> FilePathParameter: ...
|
16146
|
+
@property
|
16147
|
+
def InterfaceExecutablePath(self, ) -> FilePathParameter: ...
|
16148
|
+
@property
|
16149
|
+
def J0(self, ) -> DoubleParameter: ...
|
16150
|
+
@property
|
16151
|
+
def B0(self, ) -> DoubleParameter: ...
|
16152
|
+
@property
|
16153
|
+
def InstanceID(self, ) -> Any: ...
|
16154
|
+
@property
|
16155
|
+
def UndoTrackingId(self, ) -> Any: ...
|
16156
|
+
@property
|
16157
|
+
def Circuit(self, ) -> Circuit: ...
|
16158
|
+
@property
|
16159
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
16160
|
+
@property
|
16161
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
16162
|
+
@property
|
16163
|
+
def UnrotatedTop(self, ) -> int: ...
|
16164
|
+
@property
|
16165
|
+
def UnrotatedLeft(self, ) -> int: ...
|
16166
|
+
@property
|
16167
|
+
def UnrotatedWidth(self, ) -> int: ...
|
16168
|
+
@property
|
16169
|
+
def UnrotatedHeight(self, ) -> int: ...
|
16170
|
+
@property
|
16171
|
+
def RotationAngle(self, ) -> int: ...
|
16172
|
+
@property
|
16173
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
16174
|
+
@property
|
16175
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
16176
|
+
@property
|
16177
|
+
def Deprecated(self, ) -> bool: ...
|
16178
|
+
@property
|
16179
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
16180
|
+
@property
|
16181
|
+
def Disabled(self, ) -> bool: ...
|
16182
|
+
@property
|
16183
|
+
def SymbolFilePath(self, ) -> str: ...
|
16184
|
+
@property
|
16185
|
+
def SymbolFilename(self, ) -> str: ...
|
16186
|
+
@property
|
16187
|
+
def IsBeta(self, ) -> bool: ...
|
16188
|
+
@property
|
16189
|
+
def Childrens(self, ) -> List[Any]: ...
|
16190
|
+
@property
|
16191
|
+
def LibraryItemPath(self, ) -> str: ...
|
16192
|
+
@property
|
16193
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
16194
|
+
@property
|
16195
|
+
def Parameters(self, ) -> List[Any]: ...
|
16196
|
+
@property
|
16197
|
+
def Footprint(self, ) -> RectangleI: ...
|
16198
|
+
@property
|
16199
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
16200
|
+
@property
|
16201
|
+
def Position(self, ) -> PointI: ...
|
16202
|
+
@property
|
16203
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
16204
|
+
@property
|
16205
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
16206
|
+
@property
|
16207
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
16208
|
+
@property
|
16209
|
+
def Name(self, ) -> StringParameter: ...
|
16210
|
+
@property
|
16211
|
+
def EntityId(self, ) -> Any: ...
|
16212
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
16213
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
16214
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
16215
|
+
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: ...
|
16216
|
+
def SetName(self, name: str) -> Any: ...
|
16217
|
+
def GetName(self) -> str: ...
|
16218
|
+
def Serialize(self) -> str: ...
|
16219
|
+
def Copy(self) -> ICopiable: ...
|
16220
|
+
def RotateLeft(self) -> Any: ...
|
16221
|
+
def HorizontalFlip(self) -> Any: ...
|
16222
|
+
def VerticalFlip(self) -> Any: ...
|
16223
|
+
def RotateRight(self) -> Any: ...
|
16224
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
16225
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
16226
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
16227
|
+
def UpdateObservableScopes(self) -> Any: ...
|
16228
|
+
def ParametersUpdated(self) -> Any: ...
|
16229
|
+
def GetType(self) -> Any: ...
|
16230
|
+
def ToString(self) -> str: ...
|
16231
|
+
def Equals(self, obj: Any) -> bool: ...
|
16232
|
+
def GetHashCode(self) -> int: ...
|
16233
|
+
def __init__(self): ...
|
16234
|
+
|
15664
16235
|
class JmagRT_IM:
|
15665
16236
|
@property
|
15666
16237
|
def LibraryItemName(self, ) -> str: ...
|
@@ -15691,7 +16262,7 @@ class JmagRT_IM:
|
|
15691
16262
|
@property
|
15692
16263
|
def Pin_Pcage(self, ) -> DevicePin: ...
|
15693
16264
|
@property
|
15694
|
-
def RttCalculatorLibraryFilePath(self, ) ->
|
16265
|
+
def RttCalculatorLibraryFilePath(self, ) -> FilePathParameter: ...
|
15695
16266
|
@property
|
15696
16267
|
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameter: ...
|
15697
16268
|
@property
|
@@ -15860,7 +16431,7 @@ class JmagRT_PMSM:
|
|
15860
16431
|
@property
|
15861
16432
|
def Pin_Pmagnet(self, ) -> DevicePin: ...
|
15862
16433
|
@property
|
15863
|
-
def RttCalculatorLibraryFilePath(self, ) ->
|
16434
|
+
def RttCalculatorLibraryFilePath(self, ) -> FilePathParameter: ...
|
15864
16435
|
@property
|
15865
16436
|
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameter: ...
|
15866
16437
|
@property
|
@@ -15872,6 +16443,24 @@ class JmagRT_PMSM:
|
|
15872
16443
|
@property
|
15873
16444
|
def ACCopperLossType(self, ) -> IntParameter: ...
|
15874
16445
|
@property
|
16446
|
+
def NumCoilsInSlotHeight(self, ) -> DoubleParameter: ...
|
16447
|
+
@property
|
16448
|
+
def NumCoilsInSlotWidth(self, ) -> DoubleParameter: ...
|
16449
|
+
@property
|
16450
|
+
def NumSlotsPerPhase(self, ) -> DoubleParameter: ...
|
16451
|
+
@property
|
16452
|
+
def SlotWidth(self, ) -> DoubleParameter: ...
|
16453
|
+
@property
|
16454
|
+
def ConductorSectionType(self, ) -> IntParameter: ...
|
16455
|
+
@property
|
16456
|
+
def CoilWidth(self, ) -> DoubleParameter: ...
|
16457
|
+
@property
|
16458
|
+
def CoilHeight(self, ) -> DoubleParameter: ...
|
16459
|
+
@property
|
16460
|
+
def StackLength(self, ) -> DoubleParameter: ...
|
16461
|
+
@property
|
16462
|
+
def Conductivity(self, ) -> DoubleParameter: ...
|
16463
|
+
@property
|
15875
16464
|
def RotorSkewType(self, ) -> IntParameter: ...
|
15876
16465
|
@property
|
15877
16466
|
def StatorSkewType(self, ) -> IntParameter: ...
|
@@ -16035,7 +16624,7 @@ class JmagRT_WFSM:
|
|
16035
16624
|
@property
|
16036
16625
|
def Pin_Pwinding(self, ) -> DevicePin: ...
|
16037
16626
|
@property
|
16038
|
-
def RttCalculatorLibraryFilePath(self, ) ->
|
16627
|
+
def RttCalculatorLibraryFilePath(self, ) -> FilePathParameter: ...
|
16039
16628
|
@property
|
16040
16629
|
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameterNoSkew: ...
|
16041
16630
|
@property
|
@@ -20047,6 +20636,106 @@ class TriangularWave2:
|
|
20047
20636
|
def GetHashCode(self) -> int: ...
|
20048
20637
|
def __init__(self): ...
|
20049
20638
|
|
20639
|
+
class ControlScope:
|
20640
|
+
@property
|
20641
|
+
def LibraryItemName(self, ) -> str: ...
|
20642
|
+
@property
|
20643
|
+
def ModelType(self, ) -> ModelType: ...
|
20644
|
+
@property
|
20645
|
+
def Prefix(self, ) -> str: ...
|
20646
|
+
@property
|
20647
|
+
def Pins(self, ) -> List[Any]: ...
|
20648
|
+
@property
|
20649
|
+
def Shapes(self, ) -> List[Any]: ...
|
20650
|
+
@property
|
20651
|
+
def Scopes(self, ) -> List[Scope]: ...
|
20652
|
+
@property
|
20653
|
+
def In(self, ) -> DevicePin: ...
|
20654
|
+
@property
|
20655
|
+
def SamplingTime(self, ) -> DoubleParameter: ...
|
20656
|
+
@property
|
20657
|
+
def InstanceID(self, ) -> Any: ...
|
20658
|
+
@property
|
20659
|
+
def UndoTrackingId(self, ) -> Any: ...
|
20660
|
+
@property
|
20661
|
+
def Circuit(self, ) -> Circuit: ...
|
20662
|
+
@property
|
20663
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
20664
|
+
@property
|
20665
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
20666
|
+
@property
|
20667
|
+
def UnrotatedTop(self, ) -> int: ...
|
20668
|
+
@property
|
20669
|
+
def UnrotatedLeft(self, ) -> int: ...
|
20670
|
+
@property
|
20671
|
+
def UnrotatedWidth(self, ) -> int: ...
|
20672
|
+
@property
|
20673
|
+
def UnrotatedHeight(self, ) -> int: ...
|
20674
|
+
@property
|
20675
|
+
def RotationAngle(self, ) -> int: ...
|
20676
|
+
@property
|
20677
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
20678
|
+
@property
|
20679
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
20680
|
+
@property
|
20681
|
+
def Deprecated(self, ) -> bool: ...
|
20682
|
+
@property
|
20683
|
+
def SubcircuitInSolver(self, ) -> bool: ...
|
20684
|
+
@property
|
20685
|
+
def Disabled(self, ) -> bool: ...
|
20686
|
+
@property
|
20687
|
+
def SymbolFilePath(self, ) -> str: ...
|
20688
|
+
@property
|
20689
|
+
def SymbolFilename(self, ) -> str: ...
|
20690
|
+
@property
|
20691
|
+
def IsBeta(self, ) -> bool: ...
|
20692
|
+
@property
|
20693
|
+
def Childrens(self, ) -> List[Any]: ...
|
20694
|
+
@property
|
20695
|
+
def LibraryItemPath(self, ) -> str: ...
|
20696
|
+
@property
|
20697
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
20698
|
+
@property
|
20699
|
+
def Parameters(self, ) -> List[Any]: ...
|
20700
|
+
@property
|
20701
|
+
def Footprint(self, ) -> RectangleI: ...
|
20702
|
+
@property
|
20703
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
20704
|
+
@property
|
20705
|
+
def Position(self, ) -> PointI: ...
|
20706
|
+
@property
|
20707
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
20708
|
+
@property
|
20709
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
20710
|
+
@property
|
20711
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
20712
|
+
@property
|
20713
|
+
def Name(self, ) -> StringParameter: ...
|
20714
|
+
@property
|
20715
|
+
def EntityId(self, ) -> Any: ...
|
20716
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
20717
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
20718
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
20719
|
+
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: ...
|
20720
|
+
def SetName(self, name: str) -> Any: ...
|
20721
|
+
def GetName(self) -> str: ...
|
20722
|
+
def Serialize(self) -> str: ...
|
20723
|
+
def Copy(self) -> ICopiable: ...
|
20724
|
+
def RotateLeft(self) -> Any: ...
|
20725
|
+
def HorizontalFlip(self) -> Any: ...
|
20726
|
+
def VerticalFlip(self) -> Any: ...
|
20727
|
+
def RotateRight(self) -> Any: ...
|
20728
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
20729
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
20730
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
20731
|
+
def UpdateObservableScopes(self) -> Any: ...
|
20732
|
+
def ParametersUpdated(self) -> Any: ...
|
20733
|
+
def GetType(self) -> Any: ...
|
20734
|
+
def ToString(self) -> str: ...
|
20735
|
+
def Equals(self, obj: Any) -> bool: ...
|
20736
|
+
def GetHashCode(self) -> int: ...
|
20737
|
+
def __init__(self): ...
|
20738
|
+
|
20050
20739
|
class AbsoluteValue:
|
20051
20740
|
@property
|
20052
20741
|
def LibraryItemName(self, ) -> str: ...
|
@@ -25167,6 +25856,48 @@ class ReleaseInfo:
|
|
25167
25856
|
def GetHashCode(self) -> int: ...
|
25168
25857
|
def __init__(self): ...
|
25169
25858
|
|
25859
|
+
class CircuitElement:
|
25860
|
+
@property
|
25861
|
+
def File(self, ) -> str: ...
|
25862
|
+
@property
|
25863
|
+
def Name(self, ) -> str: ...
|
25864
|
+
@property
|
25865
|
+
def Terminals(self, ) -> List[Terminal]: ...
|
25866
|
+
def GetType(self) -> Any: ...
|
25867
|
+
def ToString(self) -> str: ...
|
25868
|
+
def Equals(self, obj: Any) -> bool: ...
|
25869
|
+
def GetHashCode(self) -> int: ...
|
25870
|
+
def __init__(self): ...
|
25871
|
+
def __init__(self, xmlPath: str): ...
|
25872
|
+
|
25873
|
+
class Terminal:
|
25874
|
+
@property
|
25875
|
+
def Id(self, ) -> str: ...
|
25876
|
+
@property
|
25877
|
+
def Name(self, ) -> str: ...
|
25878
|
+
@property
|
25879
|
+
def Port(self, ) -> str: ...
|
25880
|
+
@property
|
25881
|
+
def Jmag(self, ) -> Jmag: ...
|
25882
|
+
def GetType(self) -> Any: ...
|
25883
|
+
def ToString(self) -> str: ...
|
25884
|
+
def Equals(self, obj: Any) -> bool: ...
|
25885
|
+
def GetHashCode(self) -> int: ...
|
25886
|
+
def __init__(self): ...
|
25887
|
+
|
25888
|
+
class Jmag:
|
25889
|
+
@property
|
25890
|
+
def Condition(self, ) -> str: ...
|
25891
|
+
@property
|
25892
|
+
def Id(self, ) -> str: ...
|
25893
|
+
@property
|
25894
|
+
def Component(self, ) -> str: ...
|
25895
|
+
def GetType(self) -> Any: ...
|
25896
|
+
def ToString(self) -> str: ...
|
25897
|
+
def Equals(self, obj: Any) -> bool: ...
|
25898
|
+
def GetHashCode(self) -> int: ...
|
25899
|
+
def __init__(self): ...
|
25900
|
+
|
25170
25901
|
class ArrayHelper:
|
25171
25902
|
def ToString(value: Any) -> str: ...
|
25172
25903
|
def SortByFirstColumn(array: List[Any], comparer: Optional[Any] = None) -> List[Any]: ...
|
@@ -25207,6 +25938,8 @@ class SolverLibrary:
|
|
25207
25938
|
def GetHashCode(self) -> int: ...
|
25208
25939
|
|
25209
25940
|
class DefaultColors:
|
25941
|
+
@property
|
25942
|
+
def IsDarkMode() -> bool: ...
|
25210
25943
|
@property
|
25211
25944
|
def ElectricalDevice() -> Any: ...
|
25212
25945
|
@property
|
@@ -25720,7 +26453,7 @@ class ISolverNativeBridge:
|
|
25720
26453
|
def SetAnalysisParameter(self, parameter: SolverParameter, parameter_expression: str) -> Status: ...
|
25721
26454
|
def SetThermalData(self, thermalDataID: str, type: ThermalDataType, array1: DoubleArrayParameter, array2: DoubleArrayParameter, temperature: float, voltage: float) -> Status: ...
|
25722
26455
|
def SetThermalDataComputationMethod(self, thermalDataID: str, thermalDataType: ThermalDataType, thermalComputationMethodType: ThermalComputationMethodType, Formula: Optional[str] = None) -> Status: ...
|
25723
|
-
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str,
|
26456
|
+
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str, axis_data: str, data: str) -> Status: ...
|
25724
26457
|
def CheckCircuitConsistency(self) -> Status: ...
|
25725
26458
|
def SetLogLevel(self, log_type: LogType, log_level: int) -> Status: ...
|
25726
26459
|
def DisposeNativeSolver(self) -> Any: ...
|
@@ -25901,11 +26634,11 @@ class SignalCalculatorJob:
|
|
25901
26634
|
@property
|
25902
26635
|
def EntityId(self, ) -> Any: ...
|
25903
26636
|
def Run(self) -> Status: ...
|
25904
|
-
def Dispose(self) -> Any: ...
|
25905
26637
|
def SetSignalData(self, signal_name: str, time_data: Any, y_data: Any, size: int) -> Status: ...
|
25906
26638
|
def RunSignalCalculatorJob(self, expression: str, size: Any) -> Status: ...
|
25907
26639
|
def GetCalculatedSignal(self, time_data: Any, y_data: Any) -> Status: ...
|
25908
|
-
def
|
26640
|
+
def Dispose(self) -> Any: ...
|
26641
|
+
def DisposeUnmanagedResources(self) -> Any: ...
|
25909
26642
|
def Summary(self) -> str: ...
|
25910
26643
|
def UpdateProgress(self, status: Status, progress: float, errorOrWarning: ErrorOrWarning) -> Any: ...
|
25911
26644
|
def SavedInDatabase(self) -> Any: ...
|
@@ -25933,7 +26666,7 @@ class SolverNativeBridge:
|
|
25933
26666
|
def ClearScopesData(self, clear_all: bool, start_time: float) -> Status: ...
|
25934
26667
|
def SetThermalData(self, thermalDataID: str, type: ThermalDataType, array1: DoubleArrayParameter, array2: DoubleArrayParameter, temperature: float, voltage: float) -> Status: ...
|
25935
26668
|
def SetThermalDataComputationMethod(self, thermalDataID: str, thermalDataType: ThermalDataType, thermalComputationMethodType: ThermalComputationMethodType, Formula: Optional[str] = None) -> Status: ...
|
25936
|
-
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str,
|
26669
|
+
def SetThermalDataCustomTable(self, thermalDataID: str, customTableName: str, axis_data: str, data: str) -> Status: ...
|
25937
26670
|
def CheckCircuitConsistency(self) -> Status: ...
|
25938
26671
|
def SetVariable(self, variable_name: str, variable_expression: str, subcircuit_definition_id: Optional[str] = None, subcircuit_instance_id: Optional[str] = None) -> Status: ...
|
25939
26672
|
def SetLogLevel(self, log_type: LogType, log_level: int) -> Status: ...
|