aesim.simba 2024.5.22a1__py3-none-win_amd64.whl → 2024.5.29__py3-none-win_amd64.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.
Files changed (27) hide show
  1. aesim/simba/Resources/Resources/DesignExamples.jsimba +490 -465
  2. aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba +548 -37
  3. aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba +1627 -216
  4. aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba +1343 -108
  5. aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba +1941 -146
  6. aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba +977 -58
  7. aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba +271 -50
  8. aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba +618 -50
  9. aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba +399 -29
  10. aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba +420 -28
  11. aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba +595 -54
  12. aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba +1672 -122
  13. aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba +342 -28
  14. aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba +723 -66
  15. aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba +1859 -124
  16. aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba +1598 -160
  17. aesim/simba/Resources/Resources/Simba.Solvers.win-x64.dll +0 -0
  18. aesim/simba/Resources/Simba.Data.deps.json +8 -8
  19. aesim/simba/Resources/Simba.Data.dll +0 -0
  20. aesim/simba/Resources/Simba.Drawing.dll +0 -0
  21. aesim/simba/Resources/Simba.Helper.dll +0 -0
  22. aesim/simba/__init__.py +1 -1
  23. aesim/simba/__init__.pyi +175 -69
  24. {aesim.simba-2024.5.22a1.dist-info → aesim.simba-2024.5.29.dist-info}/METADATA +1 -1
  25. {aesim.simba-2024.5.22a1.dist-info → aesim.simba-2024.5.29.dist-info}/RECORD +27 -27
  26. {aesim.simba-2024.5.22a1.dist-info → aesim.simba-2024.5.29.dist-info}/WHEEL +0 -0
  27. {aesim.simba-2024.5.22a1.dist-info → aesim.simba-2024.5.29.dist-info}/top_level.txt +0 -0
@@ -6,7 +6,7 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v8.0": {
9
- "Simba.Data/24.05.22": {
9
+ "Simba.Data/24.05.29": {
10
10
  "dependencies": {
11
11
  "CommunityToolkit.Mvvm": "8.2.2",
12
12
  "CsvHelper": "31.0.2",
@@ -16,8 +16,8 @@
16
16
  "DeviceId.Windows": "6.6.0",
17
17
  "DotNetZip": "1.16.0",
18
18
  "SevenZipExtractor": "1.0.17",
19
- "Simba.Drawing": "24.5.22",
20
- "Simba.Helper": "24.5.22",
19
+ "Simba.Drawing": "24.5.29",
20
+ "Simba.Helper": "24.5.29",
21
21
  "System.ComponentModel.Annotations": "5.0.0",
22
22
  "System.Net.Http": "4.3.4",
23
23
  "pythonnet": "3.0.3"
@@ -627,12 +627,12 @@
627
627
  }
628
628
  }
629
629
  },
630
- "Simba.Drawing/24.5.22": {
630
+ "Simba.Drawing/24.5.29": {
631
631
  "runtime": {
632
632
  "Simba.Drawing.dll": {}
633
633
  }
634
634
  },
635
- "Simba.Helper/24.5.22": {
635
+ "Simba.Helper/24.5.29": {
636
636
  "runtime": {
637
637
  "Simba.Helper.dll": {}
638
638
  }
@@ -640,7 +640,7 @@
640
640
  }
641
641
  },
642
642
  "libraries": {
643
- "Simba.Data/24.05.22": {
643
+ "Simba.Data/24.05.29": {
644
644
  "type": "project",
645
645
  "serviceable": false,
646
646
  "sha512": ""
@@ -1149,12 +1149,12 @@
1149
1149
  "path": "system.windows.extensions/4.7.0",
1150
1150
  "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
1151
1151
  },
1152
- "Simba.Drawing/24.5.22": {
1152
+ "Simba.Drawing/24.5.29": {
1153
1153
  "type": "project",
1154
1154
  "serviceable": false,
1155
1155
  "sha512": ""
1156
1156
  },
1157
- "Simba.Helper/24.5.22": {
1157
+ "Simba.Helper/24.5.29": {
1158
1158
  "type": "project",
1159
1159
  "serviceable": false,
1160
1160
  "sha512": ""
Binary file
Binary file
Binary file
aesim/simba/__init__.py CHANGED
@@ -1,5 +1,5 @@
1
1
  #%% Load modules...
2
- __version__ = "2024.05.22a1"
2
+ __version__ = "2024.05.29"
3
3
 
4
4
  import pythonnet, clr_loader, os
5
5
  resources_folder_name = os.path.join(os.path.dirname(os.path.abspath(__file__)),'Resources')
aesim/simba/__init__.pyi CHANGED
@@ -13847,6 +13847,8 @@ class BLDC:
13847
13847
  @property
13848
13848
  def InitialSpeed(self, ) -> DoubleParameter: ...
13849
13849
  @property
13850
+ def InitialCurrent(self, ) -> DoubleArrayParameter: ...
13851
+ @property
13850
13852
  def NPP(self, ) -> IntParameter: ...
13851
13853
  @property
13852
13854
  def ExposeNeutralPoint(self, ) -> BoolParameter: ...
@@ -13965,6 +13967,8 @@ class IM:
13965
13967
  @property
13966
13968
  def B(self, ) -> DoubleParameter: ...
13967
13969
  @property
13970
+ def InitialCurrent(self, ) -> DoubleArrayParameter: ...
13971
+ @property
13968
13972
  def NPP(self, ) -> IntParameter: ...
13969
13973
  @property
13970
13974
  def InstanceID(self, ) -> Any: ...
@@ -14236,6 +14240,8 @@ class PMSM:
14236
14240
  @property
14237
14241
  def InitialSpeed(self, ) -> DoubleParameter: ...
14238
14242
  @property
14243
+ def InitialCurrent(self, ) -> DoubleArrayParameter: ...
14244
+ @property
14239
14245
  def NPP(self, ) -> IntParameter: ...
14240
14246
  @property
14241
14247
  def ExposeNeutralPoint(self, ) -> BoolParameter: ...
@@ -14354,6 +14360,8 @@ class SynRM:
14354
14360
  @property
14355
14361
  def InitialSpeed(self, ) -> DoubleParameter: ...
14356
14362
  @property
14363
+ def InitialCurrent(self, ) -> DoubleArrayParameter: ...
14364
+ @property
14357
14365
  def NPP(self, ) -> IntParameter: ...
14358
14366
  @property
14359
14367
  def ExposeNeutralPoint(self, ) -> BoolParameter: ...
@@ -14532,6 +14540,102 @@ class Capacitor:
14532
14540
  def GetHashCode(self) -> int: ...
14533
14541
  def __init__(self): ...
14534
14542
 
14543
+ class CommonModeChoke:
14544
+ @property
14545
+ def LibraryItemName(self, ) -> str: ...
14546
+ @property
14547
+ def ModelType(self, ) -> ModelType: ...
14548
+ @property
14549
+ def Prefix(self, ) -> str: ...
14550
+ @property
14551
+ def Pins(self, ) -> List[Any]: ...
14552
+ @property
14553
+ def Scopes(self, ) -> List[Scope]: ...
14554
+ @property
14555
+ def Shapes(self, ) -> List[Any]: ...
14556
+ @property
14557
+ def CommonModeInductance(self, ) -> DoubleParameter: ...
14558
+ @property
14559
+ def LeakageInductance(self, ) -> DoubleParameter: ...
14560
+ @property
14561
+ def WindingResistance(self, ) -> DoubleParameter: ...
14562
+ @property
14563
+ def InstanceID(self, ) -> Any: ...
14564
+ @property
14565
+ def UndoTrackingId(self, ) -> Any: ...
14566
+ @property
14567
+ def Circuit(self, ) -> Circuit: ...
14568
+ @property
14569
+ def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
14570
+ @property
14571
+ def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
14572
+ @property
14573
+ def UnrotatedTop(self, ) -> int: ...
14574
+ @property
14575
+ def UnrotatedLeft(self, ) -> int: ...
14576
+ @property
14577
+ def UnrotatedWidth(self, ) -> int: ...
14578
+ @property
14579
+ def UnrotatedHeight(self, ) -> int: ...
14580
+ @property
14581
+ def RotationAngle(self, ) -> int: ...
14582
+ @property
14583
+ def HorizontallyFlipped(self, ) -> bool: ...
14584
+ @property
14585
+ def VerticallyFlipped(self, ) -> bool: ...
14586
+ @property
14587
+ def Deprecated(self, ) -> bool: ...
14588
+ @property
14589
+ def Disabled(self, ) -> bool: ...
14590
+ @property
14591
+ def IsBeta(self, ) -> bool: ...
14592
+ @property
14593
+ def Childrens(self, ) -> List[Any]: ...
14594
+ @property
14595
+ def LibraryItemPath(self, ) -> str: ...
14596
+ @property
14597
+ def ParameterShapes(self, ) -> List[Any]: ...
14598
+ @property
14599
+ def Parameters(self, ) -> List[Any]: ...
14600
+ @property
14601
+ def Footprint(self, ) -> RectangleI: ...
14602
+ @property
14603
+ def PositionUnrotated(self, ) -> PointI: ...
14604
+ @property
14605
+ def Position(self, ) -> PointI: ...
14606
+ @property
14607
+ def DocumentationURL(self, ) -> Documentation: ...
14608
+ @property
14609
+ def ObservableScopes(self, ) -> List[Any]: ...
14610
+ @property
14611
+ def Additional_Data(self, ) -> Dict[str, List[str]]: ...
14612
+ @property
14613
+ def Name(self, ) -> StringParameter: ...
14614
+ @property
14615
+ def EntityId(self, ) -> Any: ...
14616
+ def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
14617
+ def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
14618
+ def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
14619
+ 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: ...
14620
+ def SetName(self, name: str) -> Any: ...
14621
+ def GetName(self) -> str: ...
14622
+ def Serialize(self) -> str: ...
14623
+ def Copy(self) -> ICopiable: ...
14624
+ def RotateLeft(self) -> Any: ...
14625
+ def HorizontalFlip(self) -> Any: ...
14626
+ def VerticalFlip(self) -> Any: ...
14627
+ def RotateRight(self) -> Any: ...
14628
+ def SetColors(self, type: SignalType) -> Any: ...
14629
+ def SameTypeAndFootprint(self, d: Device) -> bool: ...
14630
+ def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
14631
+ def UpdateObservableScopes(self) -> Any: ...
14632
+ def ParametersUpdated(self) -> Any: ...
14633
+ def GetType(self) -> Any: ...
14634
+ def ToString(self) -> str: ...
14635
+ def Equals(self, obj: Any) -> bool: ...
14636
+ def GetHashCode(self) -> int: ...
14637
+ def __init__(self): ...
14638
+
14535
14639
  class ControlledCapacitor:
14536
14640
  @property
14537
14641
  def LibraryItemName(self, ) -> str: ...
@@ -19523,7 +19627,7 @@ class UserDefinedExpression:
19523
19627
  def GetHashCode(self) -> int: ...
19524
19628
  def __init__(self): ...
19525
19629
 
19526
- class AndGate:
19630
+ class Monostable:
19527
19631
  @property
19528
19632
  def LibraryItemName(self, ) -> str: ...
19529
19633
  @property
@@ -19537,11 +19641,15 @@ class AndGate:
19537
19641
  @property
19538
19642
  def Scopes(self, ) -> List[Scope]: ...
19539
19643
  @property
19540
- def In1(self, ) -> DevicePin: ...
19644
+ def Rising(self, ) -> DevicePin: ...
19541
19645
  @property
19542
- def In2(self, ) -> DevicePin: ...
19646
+ def Falling(self, ) -> DevicePin: ...
19543
19647
  @property
19544
- def Out(self, ) -> DevicePin: ...
19648
+ def PulseWidth(self, ) -> DevicePin: ...
19649
+ @property
19650
+ def Q(self, ) -> DevicePin: ...
19651
+ @property
19652
+ def notQ(self, ) -> DevicePin: ...
19545
19653
  @property
19546
19654
  def SamplingTime(self, ) -> DoubleParameter: ...
19547
19655
  @property
@@ -19621,7 +19729,7 @@ class AndGate:
19621
19729
  def GetHashCode(self) -> int: ...
19622
19730
  def __init__(self): ...
19623
19731
 
19624
- class JKFlipFlop:
19732
+ class AndGate:
19625
19733
  @property
19626
19734
  def LibraryItemName(self, ) -> str: ...
19627
19735
  @property
@@ -19635,15 +19743,11 @@ class JKFlipFlop:
19635
19743
  @property
19636
19744
  def Scopes(self, ) -> List[Scope]: ...
19637
19745
  @property
19638
- def J(self, ) -> DevicePin: ...
19639
- @property
19640
- def K(self, ) -> DevicePin: ...
19641
- @property
19642
- def clock(self, ) -> DevicePin: ...
19746
+ def In1(self, ) -> DevicePin: ...
19643
19747
  @property
19644
- def Q(self, ) -> DevicePin: ...
19748
+ def In2(self, ) -> DevicePin: ...
19645
19749
  @property
19646
- def notQ(self, ) -> DevicePin: ...
19750
+ def Out(self, ) -> DevicePin: ...
19647
19751
  @property
19648
19752
  def SamplingTime(self, ) -> DoubleParameter: ...
19649
19753
  @property
@@ -19723,7 +19827,7 @@ class JKFlipFlop:
19723
19827
  def GetHashCode(self) -> int: ...
19724
19828
  def __init__(self): ...
19725
19829
 
19726
- class NotGate:
19830
+ class JKFlipFlop:
19727
19831
  @property
19728
19832
  def LibraryItemName(self, ) -> str: ...
19729
19833
  @property
@@ -19737,9 +19841,15 @@ class NotGate:
19737
19841
  @property
19738
19842
  def Scopes(self, ) -> List[Scope]: ...
19739
19843
  @property
19740
- def In(self, ) -> DevicePin: ...
19844
+ def J(self, ) -> DevicePin: ...
19741
19845
  @property
19742
- def Out(self, ) -> DevicePin: ...
19846
+ def K(self, ) -> DevicePin: ...
19847
+ @property
19848
+ def clock(self, ) -> DevicePin: ...
19849
+ @property
19850
+ def Q(self, ) -> DevicePin: ...
19851
+ @property
19852
+ def notQ(self, ) -> DevicePin: ...
19743
19853
  @property
19744
19854
  def SamplingTime(self, ) -> DoubleParameter: ...
19745
19855
  @property
@@ -19819,7 +19929,7 @@ class NotGate:
19819
19929
  def GetHashCode(self) -> int: ...
19820
19930
  def __init__(self): ...
19821
19931
 
19822
- class OrGate:
19932
+ class NotGate:
19823
19933
  @property
19824
19934
  def LibraryItemName(self, ) -> str: ...
19825
19935
  @property
@@ -19833,9 +19943,7 @@ class OrGate:
19833
19943
  @property
19834
19944
  def Scopes(self, ) -> List[Scope]: ...
19835
19945
  @property
19836
- def In1(self, ) -> DevicePin: ...
19837
- @property
19838
- def In2(self, ) -> DevicePin: ...
19946
+ def In(self, ) -> DevicePin: ...
19839
19947
  @property
19840
19948
  def Out(self, ) -> DevicePin: ...
19841
19949
  @property
@@ -19917,7 +20025,7 @@ class OrGate:
19917
20025
  def GetHashCode(self) -> int: ...
19918
20026
  def __init__(self): ...
19919
20027
 
19920
- class SignalSelector:
20028
+ class OrGate:
19921
20029
  @property
19922
20030
  def LibraryItemName(self, ) -> str: ...
19923
20031
  @property
@@ -19931,16 +20039,12 @@ class SignalSelector:
19931
20039
  @property
19932
20040
  def Scopes(self, ) -> List[Scope]: ...
19933
20041
  @property
19934
- def i1(self, ) -> DevicePin: ...
19935
- @property
19936
- def i2(self, ) -> DevicePin: ...
20042
+ def In1(self, ) -> DevicePin: ...
19937
20043
  @property
19938
- def Selector(self, ) -> DevicePin: ...
20044
+ def In2(self, ) -> DevicePin: ...
19939
20045
  @property
19940
20046
  def Out(self, ) -> DevicePin: ...
19941
20047
  @property
19942
- def NumberOfInputs(self, ) -> IntParameter: ...
19943
- @property
19944
20048
  def SamplingTime(self, ) -> DoubleParameter: ...
19945
20049
  @property
19946
20050
  def InstanceID(self, ) -> Any: ...
@@ -19996,7 +20100,6 @@ class SignalSelector:
19996
20100
  def Name(self, ) -> StringParameter: ...
19997
20101
  @property
19998
20102
  def EntityId(self, ) -> Any: ...
19999
- def SetSameNumberOfPins(self, obj: IDeviceWithVariablePinNumbers) -> Any: ...
20000
20103
  def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
20001
20104
  def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
20002
20105
  def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
@@ -20020,7 +20123,7 @@ class SignalSelector:
20020
20123
  def GetHashCode(self) -> int: ...
20021
20124
  def __init__(self): ...
20022
20125
 
20023
- class SRFlipFlop:
20126
+ class SignalSelector:
20024
20127
  @property
20025
20128
  def LibraryItemName(self, ) -> str: ...
20026
20129
  @property
@@ -20034,13 +20137,15 @@ class SRFlipFlop:
20034
20137
  @property
20035
20138
  def Scopes(self, ) -> List[Scope]: ...
20036
20139
  @property
20037
- def S(self, ) -> DevicePin: ...
20140
+ def i1(self, ) -> DevicePin: ...
20038
20141
  @property
20039
- def R(self, ) -> DevicePin: ...
20142
+ def i2(self, ) -> DevicePin: ...
20040
20143
  @property
20041
- def Q(self, ) -> DevicePin: ...
20144
+ def Selector(self, ) -> DevicePin: ...
20042
20145
  @property
20043
- def notQ(self, ) -> DevicePin: ...
20146
+ def Out(self, ) -> DevicePin: ...
20147
+ @property
20148
+ def NumberOfInputs(self, ) -> IntParameter: ...
20044
20149
  @property
20045
20150
  def SamplingTime(self, ) -> DoubleParameter: ...
20046
20151
  @property
@@ -20097,6 +20202,7 @@ class SRFlipFlop:
20097
20202
  def Name(self, ) -> StringParameter: ...
20098
20203
  @property
20099
20204
  def EntityId(self, ) -> Any: ...
20205
+ def SetSameNumberOfPins(self, obj: IDeviceWithVariablePinNumbers) -> Any: ...
20100
20206
  def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
20101
20207
  def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
20102
20208
  def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
@@ -20120,7 +20226,7 @@ class SRFlipFlop:
20120
20226
  def GetHashCode(self) -> int: ...
20121
20227
  def __init__(self): ...
20122
20228
 
20123
- class XorGate:
20229
+ class SRFlipFlop:
20124
20230
  @property
20125
20231
  def LibraryItemName(self, ) -> str: ...
20126
20232
  @property
@@ -20134,11 +20240,13 @@ class XorGate:
20134
20240
  @property
20135
20241
  def Scopes(self, ) -> List[Scope]: ...
20136
20242
  @property
20137
- def In1(self, ) -> DevicePin: ...
20243
+ def S(self, ) -> DevicePin: ...
20138
20244
  @property
20139
- def In2(self, ) -> DevicePin: ...
20245
+ def R(self, ) -> DevicePin: ...
20140
20246
  @property
20141
- def Out(self, ) -> DevicePin: ...
20247
+ def Q(self, ) -> DevicePin: ...
20248
+ @property
20249
+ def notQ(self, ) -> DevicePin: ...
20142
20250
  @property
20143
20251
  def SamplingTime(self, ) -> DoubleParameter: ...
20144
20252
  @property
@@ -20218,7 +20326,7 @@ class XorGate:
20218
20326
  def GetHashCode(self) -> int: ...
20219
20327
  def __init__(self): ...
20220
20328
 
20221
- class DeadTime:
20329
+ class XorGate:
20222
20330
  @property
20223
20331
  def LibraryItemName(self, ) -> str: ...
20224
20332
  @property
@@ -20232,13 +20340,11 @@ class DeadTime:
20232
20340
  @property
20233
20341
  def Scopes(self, ) -> List[Scope]: ...
20234
20342
  @property
20235
- def In(self, ) -> DevicePin: ...
20236
- @property
20237
- def Out(self, ) -> DevicePin: ...
20343
+ def In1(self, ) -> DevicePin: ...
20238
20344
  @property
20239
- def RisingEdgeDelay(self, ) -> DoubleParameter: ...
20345
+ def In2(self, ) -> DevicePin: ...
20240
20346
  @property
20241
- def FallingEdgeDelay(self, ) -> DoubleParameter: ...
20347
+ def Out(self, ) -> DevicePin: ...
20242
20348
  @property
20243
20349
  def SamplingTime(self, ) -> DoubleParameter: ...
20244
20350
  @property
@@ -20318,7 +20424,7 @@ class DeadTime:
20318
20424
  def GetHashCode(self) -> int: ...
20319
20425
  def __init__(self): ...
20320
20426
 
20321
- class Delay:
20427
+ class DeadTime:
20322
20428
  @property
20323
20429
  def LibraryItemName(self, ) -> str: ...
20324
20430
  @property
@@ -20336,7 +20442,9 @@ class Delay:
20336
20442
  @property
20337
20443
  def Out(self, ) -> DevicePin: ...
20338
20444
  @property
20339
- def DelayLength(self, ) -> DoubleParameter: ...
20445
+ def RisingEdgeDelay(self, ) -> DoubleParameter: ...
20446
+ @property
20447
+ def FallingEdgeDelay(self, ) -> DoubleParameter: ...
20340
20448
  @property
20341
20449
  def SamplingTime(self, ) -> DoubleParameter: ...
20342
20450
  @property
@@ -20416,7 +20524,7 @@ class Delay:
20416
20524
  def GetHashCode(self) -> int: ...
20417
20525
  def __init__(self): ...
20418
20526
 
20419
- class DigitalIntegrator:
20527
+ class Delay:
20420
20528
  @property
20421
20529
  def LibraryItemName(self, ) -> str: ...
20422
20530
  @property
@@ -20434,13 +20542,7 @@ class DigitalIntegrator:
20434
20542
  @property
20435
20543
  def Out(self, ) -> DevicePin: ...
20436
20544
  @property
20437
- def InitialValue(self, ) -> DoubleParameter: ...
20438
- @property
20439
- def Lower(self, ) -> DoubleParameter: ...
20440
- @property
20441
- def Upper(self, ) -> DoubleParameter: ...
20442
- @property
20443
- def WrappedMode(self, ) -> BoolParameter: ...
20545
+ def DelayLength(self, ) -> DoubleParameter: ...
20444
20546
  @property
20445
20547
  def SamplingTime(self, ) -> DoubleParameter: ...
20446
20548
  @property
@@ -20520,7 +20622,7 @@ class DigitalIntegrator:
20520
20622
  def GetHashCode(self) -> int: ...
20521
20623
  def __init__(self): ...
20522
20624
 
20523
- class DiscreteTransferFunction:
20625
+ class DigitalIntegrator:
20524
20626
  @property
20525
20627
  def LibraryItemName(self, ) -> str: ...
20526
20628
  @property
@@ -20538,9 +20640,13 @@ class DiscreteTransferFunction:
20538
20640
  @property
20539
20641
  def Out(self, ) -> DevicePin: ...
20540
20642
  @property
20541
- def Num(self, ) -> DoubleArrayParameter: ...
20643
+ def InitialValue(self, ) -> DoubleParameter: ...
20542
20644
  @property
20543
- def Den(self, ) -> DoubleArrayParameter: ...
20645
+ def Lower(self, ) -> DoubleParameter: ...
20646
+ @property
20647
+ def Upper(self, ) -> DoubleParameter: ...
20648
+ @property
20649
+ def WrappedMode(self, ) -> BoolParameter: ...
20544
20650
  @property
20545
20651
  def SamplingTime(self, ) -> DoubleParameter: ...
20546
20652
  @property
@@ -20620,7 +20726,7 @@ class DiscreteTransferFunction:
20620
20726
  def GetHashCode(self) -> int: ...
20621
20727
  def __init__(self): ...
20622
20728
 
20623
- class InternalResettableDigitalIntegrator:
20729
+ class DiscreteTransferFunction:
20624
20730
  @property
20625
20731
  def LibraryItemName(self, ) -> str: ...
20626
20732
  @property
@@ -20638,11 +20744,9 @@ class InternalResettableDigitalIntegrator:
20638
20744
  @property
20639
20745
  def Out(self, ) -> DevicePin: ...
20640
20746
  @property
20641
- def InitialValue(self, ) -> DoubleParameter: ...
20642
- @property
20643
- def Lower(self, ) -> DoubleParameter: ...
20747
+ def Num(self, ) -> DoubleArrayParameter: ...
20644
20748
  @property
20645
- def Upper(self, ) -> DoubleParameter: ...
20749
+ def Den(self, ) -> DoubleArrayParameter: ...
20646
20750
  @property
20647
20751
  def SamplingTime(self, ) -> DoubleParameter: ...
20648
20752
  @property
@@ -20722,7 +20826,7 @@ class InternalResettableDigitalIntegrator:
20722
20826
  def GetHashCode(self) -> int: ...
20723
20827
  def __init__(self): ...
20724
20828
 
20725
- class Memory:
20829
+ class InternalResettableDigitalIntegrator:
20726
20830
  @property
20727
20831
  def LibraryItemName(self, ) -> str: ...
20728
20832
  @property
@@ -20742,6 +20846,10 @@ class Memory:
20742
20846
  @property
20743
20847
  def InitialValue(self, ) -> DoubleParameter: ...
20744
20848
  @property
20849
+ def Lower(self, ) -> DoubleParameter: ...
20850
+ @property
20851
+ def Upper(self, ) -> DoubleParameter: ...
20852
+ @property
20745
20853
  def SamplingTime(self, ) -> DoubleParameter: ...
20746
20854
  @property
20747
20855
  def InstanceID(self, ) -> Any: ...
@@ -20820,7 +20928,7 @@ class Memory:
20820
20928
  def GetHashCode(self) -> int: ...
20821
20929
  def __init__(self): ...
20822
20930
 
20823
- class Monostable:
20931
+ class Memory:
20824
20932
  @property
20825
20933
  def LibraryItemName(self, ) -> str: ...
20826
20934
  @property
@@ -20834,15 +20942,11 @@ class Monostable:
20834
20942
  @property
20835
20943
  def Scopes(self, ) -> List[Scope]: ...
20836
20944
  @property
20837
- def Rising(self, ) -> DevicePin: ...
20838
- @property
20839
- def Falling(self, ) -> DevicePin: ...
20840
- @property
20841
- def PulseWidth(self, ) -> DevicePin: ...
20945
+ def In(self, ) -> DevicePin: ...
20842
20946
  @property
20843
- def Q(self, ) -> DevicePin: ...
20947
+ def Out(self, ) -> DevicePin: ...
20844
20948
  @property
20845
- def notQ(self, ) -> DevicePin: ...
20949
+ def InitialValue(self, ) -> DoubleParameter: ...
20846
20950
  @property
20847
20951
  def SamplingTime(self, ) -> DoubleParameter: ...
20848
20952
  @property
@@ -23145,6 +23249,8 @@ class Signal:
23145
23249
  @property
23146
23250
  def DataPoints(self, ) -> Any: ...
23147
23251
  @property
23252
+ def TimePoints(self, ) -> Any: ...
23253
+ @property
23148
23254
  def EntityId(self, ) -> Any: ...
23149
23255
  def Get_Y_Pointer(self, action: Any) -> Status: ...
23150
23256
  def Get_X_Pointer(self, action: Any) -> Status: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aesim.simba
3
- Version: 2024.5.22a1
3
+ Version: 2024.5.29
4
4
  Summary: Power Electronics and Motor Drive Simulation
5
5
  Home-page: https://simba.io
6
6
  Author: AESIM.tech
@@ -1,5 +1,5 @@
1
- aesim/simba/__init__.py,sha256=_D-BODChTlsncQwWtTanC71jmeoH76Li6V_zYTbE0P0,2690
2
- aesim/simba/__init__.pyi,sha256=jUE0Cxlc8HhBrhdVuiHJj7jxnDtYEO83lws4H8y5Pjs,916606
1
+ aesim/simba/__init__.py,sha256=o_dBQCA9YmBeSyFmlItFgSs2Z_iucKwe--QZwCnDJO0,2688
2
+ aesim/simba/__init__.pyi,sha256=cwwZ8IL5KIJotpjnB-6t4d1l_9EY9TYH20vpXSEP6uA,920792
3
3
  aesim/simba/Resources/CommunityToolkit.Mvvm.dll,sha256=oqsulFVnM7C7ilbH956OoKNj-YTEmgrnV-MponOkV3Q,117392
4
4
  aesim/simba/Resources/CsvHelper.dll,sha256=4eydqo90kUyP8CtZNZ-kGDfwNbSubdeEx_JzBaFL_Zw,210432
5
5
  aesim/simba/Resources/DeviceId.Linux.dll,sha256=5R05VNI01G2dNTSiVK5hjZqbJ1KvfBlAhxALLXxWeP8,10752
@@ -10,39 +10,39 @@ aesim/simba/Resources/DotNetZip.dll,sha256=65uEo99q5RdZVEugQiSk-RRUuKgdVLN8hGpCF
10
10
  aesim/simba/Resources/Microsoft.Win32.SystemEvents.dll,sha256=56MWX7GCuiW-O0EPzkUo0jj6T_mhpVB6x-UFQtaS2qE,23112
11
11
  aesim/simba/Resources/Python.Runtime.dll,sha256=ZjqNvuSeP9WKTZmjkmwsE_k2-8ykd_wDj_RyyUWbjgk,431616
12
12
  aesim/simba/Resources/SevenZipExtractor.dll,sha256=hbq9SRuhkpCkzVkWFj46uZI9olaCo0bBm4B8euTIwPI,31744
13
- aesim/simba/Resources/Simba.Data.deps.json,sha256=RkYRM20laR4GSC89g6stJK67NwZxPgo7IIKZFd9VdMA,50108
14
- aesim/simba/Resources/Simba.Data.dll,sha256=d-P0zD0MoAgGpDrf6-I5gICbRReCd2YdRTC3uLN8XA8,1014784
13
+ aesim/simba/Resources/Simba.Data.deps.json,sha256=oC81khp_fcfWWkyIsz31u8EAdvkHqMzSWXghpmqHIbs,50108
14
+ aesim/simba/Resources/Simba.Data.dll,sha256=VQm9w2CNqjgrdY1vnJXSN51N6zdrPO5spLgkntktUHk,1024512
15
15
  aesim/simba/Resources/Simba.Data.runtimeconfig.json,sha256=KDKc8I9lBec4BrF1WLGHwC8MHFFv5H6_t6AT0IKqowY,340
16
- aesim/simba/Resources/Simba.Drawing.dll,sha256=ZTNyPMQsj939l5M6lWS1qwD4EtY-lyElJ3NIj1jnf-A,22016
17
- aesim/simba/Resources/Simba.Helper.dll,sha256=HQTor5TBUnSV_OlRFmEJShvlHzTVrlmivqVpzBrmwak,13824
16
+ aesim/simba/Resources/Simba.Drawing.dll,sha256=nGgX2aFd2LxJOR9TAmyvCTwbOeynch4EWZVgDOvipOg,22016
17
+ aesim/simba/Resources/Simba.Helper.dll,sha256=EjQzNj3jXo9caAuWIszUWVpbez9tPSqamEF4QIv7Jvg,13824
18
18
  aesim/simba/Resources/System.Drawing.Common.dll,sha256=E-_s4U4Xt_iFr_-Dd7ZSqXXAOJZKgnOAW4C5r7OPcHc,143408
19
19
  aesim/simba/Resources/System.Security.Permissions.dll,sha256=dO87Z5YKm1af7ZrEVxV3adv-QzsPT6E8UhZ8Ika_7XE,92536
20
20
  aesim/simba/Resources/System.Windows.Extensions.dll,sha256=q76BRvo_Y47p9aquhRgtct54B8nwoGMR7xTrTl88s7A,25976
21
- aesim/simba/Resources/Resources/DesignExamples.jsimba,sha256=x7cNEf3WtYWzsHXPmBYVPhmAbWMyQXeu8D0VpeXSW3o,1468205
21
+ aesim/simba/Resources/Resources/DesignExamples.jsimba,sha256=_1yr7bwTxLE0XYQZzmWprnsQcODisH6zyF4a5zpZhZs,1469488
22
22
  aesim/simba/Resources/Resources/GCC-64.7z,sha256=NfohF-BFD5hYDCGFzaCLV944zQm71CGjsW8-aWN2vNA,34148981
23
23
  aesim/simba/Resources/Resources/PsimSimbaDictionary.json,sha256=o37Jqv2SdHEyZEn6y9_4V3NJ-yc6h3GgsAmdIcPm80A,504518
24
24
  aesim/simba/Resources/Resources/RTTCalculator.dll,sha256=WO-oRadL5nS-HwW-Fz1b53evdDWN74fEPRPk1GLKI5s,1382912
25
- aesim/simba/Resources/Resources/Simba.Solvers.win-x64.dll,sha256=NGBAMFHaz-HbigAzQTmQDcLYBaOlNuABG_T_OVKf9_g,10314240
25
+ aesim/simba/Resources/Resources/Simba.Solvers.win-x64.dll,sha256=w4QHHA3OPSsB3983BeVBo0t5owCPshuXjlM6vtsQKqA,10320896
26
26
  aesim/simba/Resources/Resources/simba_library.c,sha256=Ot9TrSrR6I2VUq7QxSYm_Ar3gOFyQOQ8BaAgO35sk2U,2914
27
27
  aesim/simba/Resources/Resources/simba_library.h,sha256=-Bxj9PWNHMTeYAzPCN5FMO8HlzCBrRu9hO7PID6SxQI,1035
28
- aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba,sha256=5pEKOQFj7a8z5eEnMnhdARvcuIxy07O4fJcNxNYjySM,14412
29
- aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba,sha256=K1rHX0zhLq4qVN7pLh3vpfVjtVnVcZxgQMBpYssQBUk,50648
30
- aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba,sha256=CCr6tW9co4DxLEF2nkyaX1fFi2dvhTtcNli81FwO1NI,56046
31
- aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba,sha256=CDy3t2yIMEbNwm_35N_WiKKrlIA0N-PRyPXDC0vcTsM,119515
32
- aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba,sha256=OFCAxrcj-dW_S0ksM7QaampU5TnjYA7luKmrfW0Jd18,25935
28
+ aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba,sha256=xm41i5GaO08IP3-yfKl_Q3E7EtG63odb0o1Ab_eO4tQ,31279
29
+ aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba,sha256=bDF3gqkmjrvkcEaT49qSzukY4_xCJFyQUJnGNJUnd2o,102990
30
+ aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba,sha256=eZNBVUlIalvnsIehD2sXYhv2NX_29cDiPe5gjPleP8I,96503
31
+ aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba,sha256=DwSCBerpu19eatftv3YltbggzFuQam40u8G-hsk9EOE,184658
32
+ aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba,sha256=ZiHeQ97kGYYHME6f6SLh1U1ywbnctheMAoLEOR63Xl4,56583
33
33
  aesim/simba/Resources/Resources/Examples/dcac_5lvl_npc.jsimba,sha256=ubsTIpSAFC9Mb1LYYaHplFs-St1RNddW7g3S4n32aKo,86622
34
- aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba,sha256=4VNdjFr6q8LWCNkLaHbLLWMRXfj5CYLprMA4_Ru6DoI,7914
35
- aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba,sha256=cmoUSxGFfB5cLT2us3RJfgliGZEw5oabmEAh_gkDjzg,20309
36
- aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba,sha256=bvd-mg8yuwUGbW0OZ5pef3kl9qukxlOB0H62fTeOnJk,16444
37
- aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba,sha256=JJ-NBE0bS3zIx8IHcRV0we0lzOtWzJZrsJTgGjjjaRE,12235
34
+ aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba,sha256=MVZa7NpIF3RilgUZlq3fB25U6tqIHXMzUbb5Q1ADNAY,15312
35
+ aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba,sha256=O_pqVCYSF3Oa9IZ9aClZ4FS1JLYr9yfVOO6uRbGI9IE,39032
36
+ aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba,sha256=553fkBbkcOqOUjsH9wQVW2hz_Yx_UFpSlCC34IA_NoY,28850
37
+ aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba,sha256=4pgK6bLmTkURXLJpbjEiEOcMx9dFh9lo1gvWwblM6AY,25270
38
38
  aesim/simba/Resources/Resources/Examples/dcdc_buck_detailed.jsimba,sha256=Rp2z4KCqyz7kud8USkbCbeLCl6-2Np4gg0FmUUCWrPk,20057
39
- aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba,sha256=KQlS0bF7NyZkYZ8pDxCSv1AHEpvixFIuQDkgosNcJGk,16648
40
- aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba,sha256=SrIrJl7stjHTIpfpsTp3VBTZ4zRGGbnadKU0jiJ2gyM,45141
41
- aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba,sha256=jNfq8kq92-T2Q4p97kvBYJ3_BudLrv9iRPGN6XJx5Qw,9493
39
+ aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba,sha256=aBOG6Jq65QI-krPCnYkfaFRAcwhtbp49ovtKFnmVBBc,34578
40
+ aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba,sha256=w6uGzdWSJi2t9NGlcIsLvpJQCQLuU_-oPjtll3JWcgE,96268
41
+ aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba,sha256=CAfWFlxLa6yPk-uq7HlYUnXfJO-ciG57sGxN5MZyrt0,19853
42
42
  aesim/simba/Resources/Resources/Examples/dcdc_forward.jsimba,sha256=EmY9m1_JvAQTgxWk7nV2I9qY49aXS97_UaM4amuG274,11886
43
- aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba,sha256=T1xAuZsOm95IWj4kvfPkgm_f9Ox1iwDVIquWusCs-nU,19609
44
- aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba,sha256=jzS_65nRh_pYU9ipvq4zqY2V7VbTdmdFXKqR7SHWliU,53561
45
- aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba,sha256=ROxj638eKF7Lxzp4p_X2w4yl29_riLUErJl3Iruf6KU,43771
43
+ aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba,sha256=e0tIlJlYeVw4wS-oqze96sJSmkXY5A5jpdrDDxp3VmA,41320
44
+ aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba,sha256=9ARI6Op0bzmwxrx7Z8xBaA-lJ78kXc68x0iSTUDsJQI,114534
45
+ aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba,sha256=pxn2U_xYbPD3Tp33zHTbEYg0lmlRW9hurjEwghyuTWY,95713
46
46
  aesim/simba/Resources/Resources/Examples/double_pulse_test.jsimba,sha256=7fbNPykNwidZRWp-j1naQ4dxX2lwIFF0tARfW7b2uf0,18485
47
47
  aesim/simba/Resources/Resources/Examples/im_drive_example.jsimba,sha256=VyBrs5SNdhPWJGcz656ANJ-lXw5Qwe_zEsVsu6UrtwQ,204921
48
48
  aesim/simba/Resources/dotnet/LICENSE.txt,sha256=f2g5phzokrecZUni3FqB_b0kCgsmD4iBIWtFt_2otF0,9519
@@ -239,7 +239,7 @@ aesim/simba/Resources/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll,s
239
239
  aesim/simba/Resources/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll,sha256=sLFe4SPSSiINw0RslqYnPi_a3nHR81K_BiF73ld3iyQ,56184
240
240
  aesim/simba/Resources/x64/7z.dll,sha256=QF6ad4V3U9IeBg3P-rEvgg-nWTrhUrRViHA78xK1_0Q,1710080
241
241
  aesim/simba/Resources/x86/7z.dll,sha256=PbYgduX8yJf_KdpH_kApkApK1pazlbb6lqz_EilETB0,1167872
242
- aesim.simba-2024.5.22a1.dist-info/METADATA,sha256=MYPnurm8c5lvgDYo8Mjhzc_69lZqTf6SuxbrHLf-5UU,3208
243
- aesim.simba-2024.5.22a1.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
244
- aesim.simba-2024.5.22a1.dist-info/top_level.txt,sha256=Rl2TekTH7Z1aRbKhE4okcrHjcDpapnmnsn5xI4Mb7_k,6
245
- aesim.simba-2024.5.22a1.dist-info/RECORD,,
242
+ aesim.simba-2024.5.29.dist-info/METADATA,sha256=XRy2okpRj07fNDjg2BcULBKGhJGyQTMKyjiUouXWzwQ,3206
243
+ aesim.simba-2024.5.29.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
244
+ aesim.simba-2024.5.29.dist-info/top_level.txt,sha256=Rl2TekTH7Z1aRbKhE4okcrHjcDpapnmnsn5xI4Mb7_k,6
245
+ aesim.simba-2024.5.29.dist-info/RECORD,,