aesim.simba 2024.5.17a1__py3-none-win_amd64.whl → 2024.5.28a1__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 +460 -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 +98 -0
  24. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/METADATA +1 -1
  25. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/RECORD +27 -27
  26. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.dist-info}/WHEEL +0 -0
  27. {aesim.simba-2024.5.17a1.dist-info → aesim.simba-2024.5.28a1.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.17": {
9
+ "Simba.Data/24.05.28": {
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.17",
20
- "Simba.Helper": "24.5.17",
19
+ "Simba.Drawing": "24.5.28",
20
+ "Simba.Helper": "24.5.28",
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.17": {
630
+ "Simba.Drawing/24.5.28": {
631
631
  "runtime": {
632
632
  "Simba.Drawing.dll": {}
633
633
  }
634
634
  },
635
- "Simba.Helper/24.5.17": {
635
+ "Simba.Helper/24.5.28": {
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.17": {
643
+ "Simba.Data/24.05.28": {
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.17": {
1152
+ "Simba.Drawing/24.5.28": {
1153
1153
  "type": "project",
1154
1154
  "serviceable": false,
1155
1155
  "sha512": ""
1156
1156
  },
1157
- "Simba.Helper/24.5.17": {
1157
+ "Simba.Helper/24.5.28": {
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.17a1"
2
+ __version__ = "2024.05.28a1"
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
@@ -14532,6 +14532,102 @@ class Capacitor:
14532
14532
  def GetHashCode(self) -> int: ...
14533
14533
  def __init__(self): ...
14534
14534
 
14535
+ class CommonModeChoke:
14536
+ @property
14537
+ def LibraryItemName(self, ) -> str: ...
14538
+ @property
14539
+ def ModelType(self, ) -> ModelType: ...
14540
+ @property
14541
+ def Prefix(self, ) -> str: ...
14542
+ @property
14543
+ def Pins(self, ) -> List[Any]: ...
14544
+ @property
14545
+ def Scopes(self, ) -> List[Scope]: ...
14546
+ @property
14547
+ def Shapes(self, ) -> List[Any]: ...
14548
+ @property
14549
+ def CommonModeInductance(self, ) -> DoubleParameter: ...
14550
+ @property
14551
+ def LeakageInductance(self, ) -> DoubleParameter: ...
14552
+ @property
14553
+ def WindingResistance(self, ) -> DoubleParameter: ...
14554
+ @property
14555
+ def InstanceID(self, ) -> Any: ...
14556
+ @property
14557
+ def UndoTrackingId(self, ) -> Any: ...
14558
+ @property
14559
+ def Circuit(self, ) -> Circuit: ...
14560
+ @property
14561
+ def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
14562
+ @property
14563
+ def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
14564
+ @property
14565
+ def UnrotatedTop(self, ) -> int: ...
14566
+ @property
14567
+ def UnrotatedLeft(self, ) -> int: ...
14568
+ @property
14569
+ def UnrotatedWidth(self, ) -> int: ...
14570
+ @property
14571
+ def UnrotatedHeight(self, ) -> int: ...
14572
+ @property
14573
+ def RotationAngle(self, ) -> int: ...
14574
+ @property
14575
+ def HorizontallyFlipped(self, ) -> bool: ...
14576
+ @property
14577
+ def VerticallyFlipped(self, ) -> bool: ...
14578
+ @property
14579
+ def Deprecated(self, ) -> bool: ...
14580
+ @property
14581
+ def Disabled(self, ) -> bool: ...
14582
+ @property
14583
+ def IsBeta(self, ) -> bool: ...
14584
+ @property
14585
+ def Childrens(self, ) -> List[Any]: ...
14586
+ @property
14587
+ def LibraryItemPath(self, ) -> str: ...
14588
+ @property
14589
+ def ParameterShapes(self, ) -> List[Any]: ...
14590
+ @property
14591
+ def Parameters(self, ) -> List[Any]: ...
14592
+ @property
14593
+ def Footprint(self, ) -> RectangleI: ...
14594
+ @property
14595
+ def PositionUnrotated(self, ) -> PointI: ...
14596
+ @property
14597
+ def Position(self, ) -> PointI: ...
14598
+ @property
14599
+ def DocumentationURL(self, ) -> Documentation: ...
14600
+ @property
14601
+ def ObservableScopes(self, ) -> List[Any]: ...
14602
+ @property
14603
+ def Additional_Data(self, ) -> Dict[str, List[str]]: ...
14604
+ @property
14605
+ def Name(self, ) -> StringParameter: ...
14606
+ @property
14607
+ def EntityId(self, ) -> Any: ...
14608
+ def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
14609
+ def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
14610
+ def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
14611
+ 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: ...
14612
+ def SetName(self, name: str) -> Any: ...
14613
+ def GetName(self) -> str: ...
14614
+ def Serialize(self) -> str: ...
14615
+ def Copy(self) -> ICopiable: ...
14616
+ def RotateLeft(self) -> Any: ...
14617
+ def HorizontalFlip(self) -> Any: ...
14618
+ def VerticalFlip(self) -> Any: ...
14619
+ def RotateRight(self) -> Any: ...
14620
+ def SetColors(self, type: SignalType) -> Any: ...
14621
+ def SameTypeAndFootprint(self, d: Device) -> bool: ...
14622
+ def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
14623
+ def UpdateObservableScopes(self) -> Any: ...
14624
+ def ParametersUpdated(self) -> Any: ...
14625
+ def GetType(self) -> Any: ...
14626
+ def ToString(self) -> str: ...
14627
+ def Equals(self, obj: Any) -> bool: ...
14628
+ def GetHashCode(self) -> int: ...
14629
+ def __init__(self): ...
14630
+
14535
14631
  class ControlledCapacitor:
14536
14632
  @property
14537
14633
  def LibraryItemName(self, ) -> str: ...
@@ -23145,6 +23241,8 @@ class Signal:
23145
23241
  @property
23146
23242
  def DataPoints(self, ) -> Any: ...
23147
23243
  @property
23244
+ def TimePoints(self, ) -> Any: ...
23245
+ @property
23148
23246
  def EntityId(self, ) -> Any: ...
23149
23247
  def Get_Y_Pointer(self, action: Any) -> Status: ...
23150
23248
  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.17a1
3
+ Version: 2024.5.28a1
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=FfVZVP-UQoczJlqJIUJoors66kV6g8-7mZhZGM6wVBg,2690
2
- aesim/simba/__init__.pyi,sha256=jUE0Cxlc8HhBrhdVuiHJj7jxnDtYEO83lws4H8y5Pjs,916606
1
+ aesim/simba/__init__.py,sha256=DQioPpcb9s3YTm2R2HMN-zVSWHtv6oa2ADEe2PFX6aw,2690
2
+ aesim/simba/__init__.pyi,sha256=15LHMK2Qnk15cXsTCBr_Vi6lq4HEYXn7ESwDeMmGL40,920488
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=krn8Q-naPjKXX3uq1Qf0YsbZki3DzuX_NkYziiXPp_4,50108
14
- aesim/simba/Resources/Simba.Data.dll,sha256=LCotVdP7xAAHFqHpOc30hdtAvkmS_auIzPW7XXbLYwM,1014784
13
+ aesim/simba/Resources/Simba.Data.deps.json,sha256=f6uhE4bO4PZM3cOcFqVEt6mrsfCq3mmI7b_XZ56fIKY,50108
14
+ aesim/simba/Resources/Simba.Data.dll,sha256=UrVAJ_Gwj9uyKBLY7ox4nUkTqqory7uf7JPvp-UDpiY,1023488
15
15
  aesim/simba/Resources/Simba.Data.runtimeconfig.json,sha256=KDKc8I9lBec4BrF1WLGHwC8MHFFv5H6_t6AT0IKqowY,340
16
- aesim/simba/Resources/Simba.Drawing.dll,sha256=e4I9DV1lemnviNrC-TOQaQmV-Uy-_QVdWLI5J7foP6U,22016
17
- aesim/simba/Resources/Simba.Helper.dll,sha256=iV3BzBNp_yuOPViTE9Nifuq6mCcu-mewdvlVi3Qlgy0,13824
16
+ aesim/simba/Resources/Simba.Drawing.dll,sha256=fTkInKpoZM23s382Nsx2kyvMAI5-kDA6mG8k9k3pwrs,22016
17
+ aesim/simba/Resources/Simba.Helper.dll,sha256=VODXxi-Xq6Ix6wBIu7T1fPXmjCNd5goayXCqFpc0NzA,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=HA8b4QFHWIbvnCO73oPIQFN69lacCytjHpGMCFiMSe0,1468205
21
+ aesim/simba/Resources/Resources/DesignExamples.jsimba,sha256=MPVZ5hsdlv3brN-0TD3vcoFnpIHS8y4KvNJgH12jkjU,1468405
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=iGI8vywfPjVqjkbfma4QrAxs_f4b7zPIMv-mX0m84Ow,10313728
25
+ aesim/simba/Resources/Resources/Simba.Solvers.win-x64.dll,sha256=iEfmkoVYQq51QkLJbIcMVmfyGMICueLQb3VHwnAJHfU,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.17a1.dist-info/METADATA,sha256=gspIoKkTxsG2ABjUtNvUZNOySWOt5Ex87mAjfQL5YYU,3208
243
- aesim.simba-2024.5.17a1.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
244
- aesim.simba-2024.5.17a1.dist-info/top_level.txt,sha256=Rl2TekTH7Z1aRbKhE4okcrHjcDpapnmnsn5xI4Mb7_k,6
245
- aesim.simba-2024.5.17a1.dist-info/RECORD,,
242
+ aesim.simba-2024.5.28a1.dist-info/METADATA,sha256=c1Vpr5CLY9GmdFE-7TB_gJdJbKhN3Ye23l9SS05jYsA,3208
243
+ aesim.simba-2024.5.28a1.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
244
+ aesim.simba-2024.5.28a1.dist-info/top_level.txt,sha256=Rl2TekTH7Z1aRbKhE4okcrHjcDpapnmnsn5xI4Mb7_k,6
245
+ aesim.simba-2024.5.28a1.dist-info/RECORD,,