aesim.simba 2024.9.26a1__py3-none-manylinux2014_aarch64.whl → 2024.11.6a1__py3-none-manylinux2014_aarch64.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/CommunityToolkit.Mvvm.dll +0 -0
- aesim/simba/Resources/CsvHelper.dll +0 -0
- aesim/simba/Resources/DeviceId.dll +0 -0
- aesim/simba/Resources/Resources/DesignExamples.jsimba +342 -102
- aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba +2 -2
- aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_forward_magnetic.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba +1 -1
- aesim/simba/Resources/Resources/Examples/im_drive_example.jsimba +1 -1
- aesim/simba/Resources/Resources/libSimba.Solvers.linux-arm64.so +0 -0
- aesim/simba/Resources/Simba.Data.deps.json +40 -40
- aesim/simba/Resources/Simba.Data.dll +0 -0
- aesim/simba/Resources/Simba.Data.runtimeconfig.json +1 -0
- aesim/simba/Resources/Simba.Drawing.dll +0 -0
- aesim/simba/Resources/Simba.Helper.dll +0 -0
- aesim/simba/__init__.py +1 -1
- aesim/simba/__init__.pyi +265 -2
- {aesim.simba-2024.9.26a1.dist-info → aesim.simba-2024.11.6a1.dist-info}/METADATA +1 -1
- {aesim.simba-2024.9.26a1.dist-info → aesim.simba-2024.11.6a1.dist-info}/RECORD +33 -33
- {aesim.simba-2024.9.26a1.dist-info → aesim.simba-2024.11.6a1.dist-info}/WHEEL +0 -0
- {aesim.simba-2024.9.26a1.dist-info → aesim.simba-2024.11.6a1.dist-info}/top_level.txt +0 -0
aesim/simba/__init__.pyi
CHANGED
@@ -190,9 +190,9 @@ class CircuitChanges:
|
|
190
190
|
def Equals(self, obj: Any) -> bool: ...
|
191
191
|
def GetHashCode(self) -> int: ...
|
192
192
|
def __init__(self, oldState: CircuitSnapshot, newState: CircuitSnapshot, tracked_IDs: List[Any]): ...
|
193
|
-
def __init__(self, targets: List[IMovable], oldvalues: List[Any], propName: str, propType: Any): ...
|
194
193
|
|
195
194
|
class CircuitMap:
|
195
|
+
def Clean(self, movables: List[IMovable]) -> List[IMovable]: ...
|
196
196
|
def GetSelectableItemAt(self, p: PointI) -> List[IMovable]: ...
|
197
197
|
def GetSelectableItemAt(self, p: Any, maxDistance: float) -> List[IMovable]: ...
|
198
198
|
def GetSelectableItemsIn(self, r: RectangleI, entirelyInside: bool, same_footprint: Optional[bool] = None) -> List[IMovable]: ...
|
@@ -2224,6 +2224,7 @@ class Geometry:
|
|
2224
2224
|
def Displacement(direction: Direction) -> PointI: ...
|
2225
2225
|
def RotateVector(vector: PointI, angle_degree: int) -> PointI: ...
|
2226
2226
|
def TransformPointF(point: Any, transformationMatrix: Any) -> Any: ...
|
2227
|
+
def GetRectangleLineIntersection(rect: RectangleI, A: Any, B: Any) -> Any: ...
|
2227
2228
|
def GetType(self) -> Any: ...
|
2228
2229
|
def ToString(self) -> str: ...
|
2229
2230
|
def Equals(self, obj: Any) -> bool: ...
|
@@ -2867,6 +2868,7 @@ class Custom1DTable:
|
|
2867
2868
|
def GetHashCode(self) -> int: ...
|
2868
2869
|
def __init__(self): ...
|
2869
2870
|
def __init__(self, table: Table1D): ...
|
2871
|
+
def __init__(self, table: Custom1DTable): ...
|
2870
2872
|
|
2871
2873
|
class Custom2DTable:
|
2872
2874
|
@property
|
@@ -2886,6 +2888,7 @@ class Custom2DTable:
|
|
2886
2888
|
def Equals(self, obj: Any) -> bool: ...
|
2887
2889
|
def GetHashCode(self) -> int: ...
|
2888
2890
|
def __init__(self): ...
|
2891
|
+
def __init__(self, table: Custom2DTable): ...
|
2889
2892
|
def __init__(self, table: Table2D): ...
|
2890
2893
|
|
2891
2894
|
class Custom3DTable:
|
@@ -2909,6 +2912,7 @@ class Custom3DTable:
|
|
2909
2912
|
def Equals(self, obj: Any) -> bool: ...
|
2910
2913
|
def GetHashCode(self) -> int: ...
|
2911
2914
|
def __init__(self): ...
|
2915
|
+
def __init__(self, table: Custom3DTable): ...
|
2912
2916
|
def __init__(self, table: Table3D): ...
|
2913
2917
|
def __init__(self, table: Custom2DTable): ...
|
2914
2918
|
def __init__(self, table: Custom1DTable): ...
|
@@ -4814,6 +4818,102 @@ class ConstantTemperature:
|
|
4814
4818
|
def GetHashCode(self) -> int: ...
|
4815
4819
|
def __init__(self): ...
|
4816
4820
|
|
4821
|
+
class ControlledHeatSource:
|
4822
|
+
@property
|
4823
|
+
def LibraryItemName(self, ) -> str: ...
|
4824
|
+
@property
|
4825
|
+
def ModelType(self, ) -> ModelType: ...
|
4826
|
+
@property
|
4827
|
+
def Prefix(self, ) -> str: ...
|
4828
|
+
@property
|
4829
|
+
def Pins(self, ) -> List[Any]: ...
|
4830
|
+
@property
|
4831
|
+
def Shapes(self, ) -> List[Any]: ...
|
4832
|
+
@property
|
4833
|
+
def Scopes(self, ) -> List[Scope]: ...
|
4834
|
+
@property
|
4835
|
+
def P(self, ) -> DevicePin: ...
|
4836
|
+
@property
|
4837
|
+
def N(self, ) -> Pin: ...
|
4838
|
+
@property
|
4839
|
+
def In(self, ) -> Pin: ...
|
4840
|
+
@property
|
4841
|
+
def InstanceID(self, ) -> Any: ...
|
4842
|
+
@property
|
4843
|
+
def UndoTrackingId(self, ) -> Any: ...
|
4844
|
+
@property
|
4845
|
+
def Circuit(self, ) -> Circuit: ...
|
4846
|
+
@property
|
4847
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
4848
|
+
@property
|
4849
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
4850
|
+
@property
|
4851
|
+
def UnrotatedTop(self, ) -> int: ...
|
4852
|
+
@property
|
4853
|
+
def UnrotatedLeft(self, ) -> int: ...
|
4854
|
+
@property
|
4855
|
+
def UnrotatedWidth(self, ) -> int: ...
|
4856
|
+
@property
|
4857
|
+
def UnrotatedHeight(self, ) -> int: ...
|
4858
|
+
@property
|
4859
|
+
def RotationAngle(self, ) -> int: ...
|
4860
|
+
@property
|
4861
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
4862
|
+
@property
|
4863
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
4864
|
+
@property
|
4865
|
+
def Deprecated(self, ) -> bool: ...
|
4866
|
+
@property
|
4867
|
+
def Disabled(self, ) -> bool: ...
|
4868
|
+
@property
|
4869
|
+
def IsBeta(self, ) -> bool: ...
|
4870
|
+
@property
|
4871
|
+
def Childrens(self, ) -> List[Any]: ...
|
4872
|
+
@property
|
4873
|
+
def LibraryItemPath(self, ) -> str: ...
|
4874
|
+
@property
|
4875
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
4876
|
+
@property
|
4877
|
+
def Parameters(self, ) -> List[Any]: ...
|
4878
|
+
@property
|
4879
|
+
def Footprint(self, ) -> RectangleI: ...
|
4880
|
+
@property
|
4881
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
4882
|
+
@property
|
4883
|
+
def Position(self, ) -> PointI: ...
|
4884
|
+
@property
|
4885
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
4886
|
+
@property
|
4887
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
4888
|
+
@property
|
4889
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
4890
|
+
@property
|
4891
|
+
def Name(self, ) -> StringParameter: ...
|
4892
|
+
@property
|
4893
|
+
def EntityId(self, ) -> Any: ...
|
4894
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
4895
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
4896
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
4897
|
+
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: ...
|
4898
|
+
def SetName(self, name: str) -> Any: ...
|
4899
|
+
def GetName(self) -> str: ...
|
4900
|
+
def Serialize(self) -> str: ...
|
4901
|
+
def Copy(self) -> ICopiable: ...
|
4902
|
+
def RotateLeft(self) -> Any: ...
|
4903
|
+
def HorizontalFlip(self) -> Any: ...
|
4904
|
+
def VerticalFlip(self) -> Any: ...
|
4905
|
+
def RotateRight(self) -> Any: ...
|
4906
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
4907
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
4908
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
4909
|
+
def UpdateObservableScopes(self) -> Any: ...
|
4910
|
+
def ParametersUpdated(self) -> Any: ...
|
4911
|
+
def GetType(self) -> Any: ...
|
4912
|
+
def ToString(self) -> str: ...
|
4913
|
+
def Equals(self, obj: Any) -> bool: ...
|
4914
|
+
def GetHashCode(self) -> int: ...
|
4915
|
+
def __init__(self): ...
|
4916
|
+
|
4817
4917
|
class ControlledTemperatureSource:
|
4818
4918
|
@property
|
4819
4919
|
def LibraryItemName(self, ) -> str: ...
|
@@ -14544,6 +14644,169 @@ class IM:
|
|
14544
14644
|
def GetHashCode(self) -> int: ...
|
14545
14645
|
def __init__(self): ...
|
14546
14646
|
|
14647
|
+
class JmagRT_IM:
|
14648
|
+
@property
|
14649
|
+
def LibraryItemName(self, ) -> str: ...
|
14650
|
+
@property
|
14651
|
+
def ModelType(self, ) -> ModelType: ...
|
14652
|
+
@property
|
14653
|
+
def Prefix(self, ) -> str: ...
|
14654
|
+
@property
|
14655
|
+
def Pins(self, ) -> List[Any]: ...
|
14656
|
+
@property
|
14657
|
+
def Scopes(self, ) -> List[Scope]: ...
|
14658
|
+
@property
|
14659
|
+
def Shapes(self, ) -> List[Any]: ...
|
14660
|
+
@property
|
14661
|
+
def Pin_A(self, ) -> DevicePin: ...
|
14662
|
+
@property
|
14663
|
+
def Pin_B(self, ) -> DevicePin: ...
|
14664
|
+
@property
|
14665
|
+
def Pin_C(self, ) -> DevicePin: ...
|
14666
|
+
@property
|
14667
|
+
def Pin_R(self, ) -> DevicePin: ...
|
14668
|
+
@property
|
14669
|
+
def Pin_Angle(self, ) -> DevicePin: ...
|
14670
|
+
@property
|
14671
|
+
def Pin_Pcore(self, ) -> DevicePin: ...
|
14672
|
+
@property
|
14673
|
+
def Pin_Pwinding(self, ) -> DevicePin: ...
|
14674
|
+
@property
|
14675
|
+
def Pin_Pcage(self, ) -> DevicePin: ...
|
14676
|
+
@property
|
14677
|
+
def RttCalculatorLibraryFilePath(self, ) -> StringParameter: ...
|
14678
|
+
@property
|
14679
|
+
def AdvancedParameters(self, ) -> JMAGRT_AdvancedParameter: ...
|
14680
|
+
@property
|
14681
|
+
def IronLossType(self, ) -> IntParameter: ...
|
14682
|
+
@property
|
14683
|
+
def UseFilterInductance(self, ) -> IntParameter: ...
|
14684
|
+
@property
|
14685
|
+
def FilterInductanceValue(self, ) -> DoubleParameter: ...
|
14686
|
+
@property
|
14687
|
+
def ACCopperLossType(self, ) -> IntParameter: ...
|
14688
|
+
@property
|
14689
|
+
def RotorSkewType(self, ) -> IntParameter: ...
|
14690
|
+
@property
|
14691
|
+
def StatorSkewType(self, ) -> IntParameter: ...
|
14692
|
+
@property
|
14693
|
+
def RotorSkewAngle(self, ) -> DoubleParameter: ...
|
14694
|
+
@property
|
14695
|
+
def StatorSkewAngle(self, ) -> DoubleParameter: ...
|
14696
|
+
@property
|
14697
|
+
def RotorSkewSteps(self, ) -> IntParameter: ...
|
14698
|
+
@property
|
14699
|
+
def StatorSkewSteps(self, ) -> IntParameter: ...
|
14700
|
+
@property
|
14701
|
+
def UseCorrection(self, ) -> IntParameter: ...
|
14702
|
+
@property
|
14703
|
+
def CoefInd(self, ) -> DoubleParameter: ...
|
14704
|
+
@property
|
14705
|
+
def CoefFlux(self, ) -> DoubleParameter: ...
|
14706
|
+
@property
|
14707
|
+
def CoefTorque(self, ) -> DoubleParameter: ...
|
14708
|
+
@property
|
14709
|
+
def CoefMat(self, ) -> DoubleParameter: ...
|
14710
|
+
@property
|
14711
|
+
def TurnCorr1(self, ) -> DoubleParameter: ...
|
14712
|
+
@property
|
14713
|
+
def TurnCorr2(self, ) -> DoubleParameter: ...
|
14714
|
+
@property
|
14715
|
+
def InterpolationType(self, ) -> IntParameter: ...
|
14716
|
+
@property
|
14717
|
+
def TemperatureCorrection(self, ) -> IntParameter: ...
|
14718
|
+
@property
|
14719
|
+
def RttFilePath(self, ) -> FilePathParameter: ...
|
14720
|
+
@property
|
14721
|
+
def J(self, ) -> DoubleParameter: ...
|
14722
|
+
@property
|
14723
|
+
def B(self, ) -> DoubleParameter: ...
|
14724
|
+
@property
|
14725
|
+
def InitialSpeed(self, ) -> DoubleParameter: ...
|
14726
|
+
@property
|
14727
|
+
def Rs(self, ) -> DoubleParameter: ...
|
14728
|
+
@property
|
14729
|
+
def NPP(self, ) -> IntParameter: ...
|
14730
|
+
@property
|
14731
|
+
def AverageLossCalcFreq(self, ) -> DoubleParameter: ...
|
14732
|
+
@property
|
14733
|
+
def InstanceID(self, ) -> Any: ...
|
14734
|
+
@property
|
14735
|
+
def UndoTrackingId(self, ) -> Any: ...
|
14736
|
+
@property
|
14737
|
+
def Circuit(self, ) -> Circuit: ...
|
14738
|
+
@property
|
14739
|
+
def DeviceToCircuitMatrixTransform(self, ) -> Any: ...
|
14740
|
+
@property
|
14741
|
+
def CircuitToDeviceMatrixTransform(self, ) -> Any: ...
|
14742
|
+
@property
|
14743
|
+
def UnrotatedTop(self, ) -> int: ...
|
14744
|
+
@property
|
14745
|
+
def UnrotatedLeft(self, ) -> int: ...
|
14746
|
+
@property
|
14747
|
+
def UnrotatedWidth(self, ) -> int: ...
|
14748
|
+
@property
|
14749
|
+
def UnrotatedHeight(self, ) -> int: ...
|
14750
|
+
@property
|
14751
|
+
def RotationAngle(self, ) -> int: ...
|
14752
|
+
@property
|
14753
|
+
def HorizontallyFlipped(self, ) -> bool: ...
|
14754
|
+
@property
|
14755
|
+
def VerticallyFlipped(self, ) -> bool: ...
|
14756
|
+
@property
|
14757
|
+
def Deprecated(self, ) -> bool: ...
|
14758
|
+
@property
|
14759
|
+
def Disabled(self, ) -> bool: ...
|
14760
|
+
@property
|
14761
|
+
def IsBeta(self, ) -> bool: ...
|
14762
|
+
@property
|
14763
|
+
def Childrens(self, ) -> List[Any]: ...
|
14764
|
+
@property
|
14765
|
+
def LibraryItemPath(self, ) -> str: ...
|
14766
|
+
@property
|
14767
|
+
def ParameterShapes(self, ) -> List[Any]: ...
|
14768
|
+
@property
|
14769
|
+
def Parameters(self, ) -> List[Any]: ...
|
14770
|
+
@property
|
14771
|
+
def Footprint(self, ) -> RectangleI: ...
|
14772
|
+
@property
|
14773
|
+
def PositionUnrotated(self, ) -> PointI: ...
|
14774
|
+
@property
|
14775
|
+
def Position(self, ) -> PointI: ...
|
14776
|
+
@property
|
14777
|
+
def DocumentationURL(self, ) -> Documentation: ...
|
14778
|
+
@property
|
14779
|
+
def ObservableScopes(self, ) -> List[Any]: ...
|
14780
|
+
@property
|
14781
|
+
def Additional_Data(self, ) -> Dict[str, List[str]]: ...
|
14782
|
+
@property
|
14783
|
+
def Name(self, ) -> StringParameter: ...
|
14784
|
+
@property
|
14785
|
+
def EntityId(self, ) -> Any: ...
|
14786
|
+
def PathWithoutExtension(self) -> str: ...
|
14787
|
+
def Move(self, delta: Optional[Any] = None, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
14788
|
+
def Move(self, deltaX: int, deltaY: int, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None) -> bool: ...
|
14789
|
+
def CanMove(self, delta: Any, rotationAngle: Optional[int] = None, horizontalFlip: Optional[bool] = None, verticalFlip: Optional[bool] = None, itemsToIgnore: Optional[List[Any]] = None) -> bool: ...
|
14790
|
+
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: ...
|
14791
|
+
def SetName(self, name: str) -> Any: ...
|
14792
|
+
def GetName(self) -> str: ...
|
14793
|
+
def Serialize(self) -> str: ...
|
14794
|
+
def Copy(self) -> ICopiable: ...
|
14795
|
+
def RotateLeft(self) -> Any: ...
|
14796
|
+
def HorizontalFlip(self) -> Any: ...
|
14797
|
+
def VerticalFlip(self) -> Any: ...
|
14798
|
+
def RotateRight(self) -> Any: ...
|
14799
|
+
def SetColors(self, type: SignalType) -> Any: ...
|
14800
|
+
def SameTypeAndFootprint(self, d: Device) -> bool: ...
|
14801
|
+
def Resize(self, new_left: int, new_top: int, new_width: int, new_height: int) -> Any: ...
|
14802
|
+
def UpdateObservableScopes(self) -> Any: ...
|
14803
|
+
def ParametersUpdated(self) -> Any: ...
|
14804
|
+
def GetType(self) -> Any: ...
|
14805
|
+
def ToString(self) -> str: ...
|
14806
|
+
def Equals(self, obj: Any) -> bool: ...
|
14807
|
+
def GetHashCode(self) -> int: ...
|
14808
|
+
def __init__(self): ...
|
14809
|
+
|
14547
14810
|
class JmagRT_PMSM:
|
14548
14811
|
@property
|
14549
14812
|
def LibraryItemName(self, ) -> str: ...
|
@@ -22890,7 +23153,7 @@ class C_Code:
|
|
22890
23153
|
def NeedToInstallCompiler() -> bool: ...
|
22891
23154
|
def Compile_and_set_path(self) -> ErrorOrWarning: ...
|
22892
23155
|
def GetCompilerPath(quotify: Optional[bool] = None) -> str: ...
|
22893
|
-
def InstallCompiler() ->
|
23156
|
+
def InstallCompiler() -> bool: ...
|
22894
23157
|
def Library_HeaderFilePath() -> str: ...
|
22895
23158
|
def GetDeterministicHashCode(str: str) -> int: ...
|
22896
23159
|
def NativeLibraryExtension() -> Any: ...
|
@@ -1,48 +1,48 @@
|
|
1
|
-
aesim/simba/__init__.py,sha256
|
2
|
-
aesim/simba/__init__.pyi,sha256=
|
3
|
-
aesim/simba/Resources/CommunityToolkit.Mvvm.dll,sha256=
|
4
|
-
aesim/simba/Resources/CsvHelper.dll,sha256=
|
1
|
+
aesim/simba/__init__.py,sha256=-9lYs_ZPR3L6VpZNqc0DDiz72odu5rLaaWnAt21oP3M,2632
|
2
|
+
aesim/simba/__init__.pyi,sha256=Z1SPegoqkHf5TN8InbcbHquFmiaxw25Xqp2avI-_Pw4,936812
|
3
|
+
aesim/simba/Resources/CommunityToolkit.Mvvm.dll,sha256=8ni2zfKv8v-yfwHYPIirGvVA1FtBEpJ082fuvGAawAs,120616
|
4
|
+
aesim/simba/Resources/CsvHelper.dll,sha256=4OmT41HLbUDs7BzGokrFwRvqkV5QXu5o7m4KbDNEK0I,225280
|
5
5
|
aesim/simba/Resources/DeviceId.Linux.dll,sha256=5R05VNI01G2dNTSiVK5hjZqbJ1KvfBlAhxALLXxWeP8,10752
|
6
6
|
aesim/simba/Resources/DeviceId.Mac.dll,sha256=mUZ2MJ_AQAbtu99CS6UzJR3UlgdQoopH6_jqFc4PMCU,6144
|
7
7
|
aesim/simba/Resources/DeviceId.Windows.dll,sha256=88hWhyfVag8z9nkjTC84Fd0Wrknl49RMa85FWAPBm1Y,8192
|
8
|
-
aesim/simba/Resources/DeviceId.dll,sha256=
|
8
|
+
aesim/simba/Resources/DeviceId.dll,sha256=ep730H8--FUV558ATLzyzqtdTJ7scUyQXJTgvDFsAzU,23552
|
9
9
|
aesim/simba/Resources/DotNetZip.dll,sha256=65uEo99q5RdZVEugQiSk-RRUuKgdVLN8hGpCFrxywV4,252928
|
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
|
-
aesim/simba/Resources/Simba.Data.deps.json,sha256=
|
13
|
-
aesim/simba/Resources/Simba.Data.dll,sha256=
|
14
|
-
aesim/simba/Resources/Simba.Data.runtimeconfig.json,sha256=
|
15
|
-
aesim/simba/Resources/Simba.Drawing.dll,sha256=
|
16
|
-
aesim/simba/Resources/Simba.Helper.dll,sha256=
|
12
|
+
aesim/simba/Resources/Simba.Data.deps.json,sha256=QAt7A8-pQxu8YXxz9y7aCDoalfNLSUSIEswTy2XeA7A,48556
|
13
|
+
aesim/simba/Resources/Simba.Data.dll,sha256=7Ckq0d_A95bzICwSa5kOB0B8promPmBdnnu36X5e-kY,1133056
|
14
|
+
aesim/simba/Resources/Simba.Data.runtimeconfig.json,sha256=eiGdFiOP6-q6erbF_lq-cOxJiRmzK3awHw8vQKlCLEc,394
|
15
|
+
aesim/simba/Resources/Simba.Drawing.dll,sha256=ZtAinsmUl1EijuTXa_ABDb5W_Jn8nwGJH8qCxZXJrbI,23040
|
16
|
+
aesim/simba/Resources/Simba.Helper.dll,sha256=oq11PZiU-ThscqHyzq4xLoipRSwM4ycz8ohnis4xesU,14336
|
17
17
|
aesim/simba/Resources/System.Drawing.Common.dll,sha256=E-_s4U4Xt_iFr_-Dd7ZSqXXAOJZKgnOAW4C5r7OPcHc,143408
|
18
18
|
aesim/simba/Resources/System.Security.Permissions.dll,sha256=dO87Z5YKm1af7ZrEVxV3adv-QzsPT6E8UhZ8Ika_7XE,92536
|
19
19
|
aesim/simba/Resources/System.Windows.Extensions.dll,sha256=q76BRvo_Y47p9aquhRgtct54B8nwoGMR7xTrTl88s7A,25976
|
20
|
-
aesim/simba/Resources/Resources/DesignExamples.jsimba,sha256=
|
20
|
+
aesim/simba/Resources/Resources/DesignExamples.jsimba,sha256=o0m7b7kMLVLTJFnR8PK-XSTs7YoUf3eU6tQ7TUQ0pUI,1487198
|
21
21
|
aesim/simba/Resources/Resources/PsimSimbaDictionary.json,sha256=tCxP2KKLZ8gQJXMaXrKy-nHrkjnJckMz9mPvW3-A-DE,488852
|
22
|
-
aesim/simba/Resources/Resources/libSimba.Solvers.linux-arm64.so,sha256=
|
22
|
+
aesim/simba/Resources/Resources/libSimba.Solvers.linux-arm64.so,sha256=mX0fcdf97ntmcBe59kxWR0BWMg_aVn5FO0sZ4u5_wGc,8181296
|
23
23
|
aesim/simba/Resources/Resources/simba_library.c,sha256=gMHpqpngHvQ7uN8zmPtrIkr1xjrOjARHg0qKYC5sNEU,2823
|
24
24
|
aesim/simba/Resources/Resources/simba_library.h,sha256=ypY3lWFy3bx9epXQGbFhaaJheyfk7CN0PttmBOUHjzM,999
|
25
|
-
aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba,sha256=
|
26
|
-
aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba,sha256=
|
27
|
-
aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba,sha256=
|
28
|
-
aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba,sha256=
|
29
|
-
aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba,sha256=
|
25
|
+
aesim/simba/Resources/Resources/Examples/acdc_3ph_diodebridge.jsimba,sha256=Ua2-bBTjM5rR__owCoTBPBK9TsqJXGrtTLfeEA8bLm0,30216
|
26
|
+
aesim/simba/Resources/Resources/Examples/acdc_3ph_thyristor_rectifier.jsimba,sha256=hgoG1ErvJMCEYT-mbFbTUAopGnyYDh1RoVkdcPtp8JI,99990
|
27
|
+
aesim/simba/Resources/Resources/Examples/acdc_pfc_totem_pole.jsimba,sha256=pd1vdz6NpzcJ54Ryl4fcM7T2L-5AnDqXyrVN_jo5jH8,93478
|
28
|
+
aesim/simba/Resources/Resources/Examples/bldc_drive_example.jsimba,sha256=77fDbuVPgju77vr5wQoSBhUo0B86Ak0QgxHs4V1JUAw,178789
|
29
|
+
aesim/simba/Resources/Resources/Examples/dcac_3_phase_inverter_spwm.jsimba,sha256=_1R0g-aa3Pp110ngYRXbLd5l92ABZUBjxAHEVV3BUlE,54680
|
30
30
|
aesim/simba/Resources/Resources/Examples/dcac_5lvl_npc.jsimba,sha256=pF62jzaOGr9_2orHDS4LOeR8NaKxRZMoLXvo6zuuGyU,83331
|
31
|
-
aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba,sha256=
|
32
|
-
aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba,sha256=
|
33
|
-
aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba,sha256=
|
34
|
-
aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba,sha256=
|
31
|
+
aesim/simba/Resources/Resources/Examples/dcdc_boost_converter.jsimba,sha256=2av8PGS6yDcCC1Ucx3T6a2_LkNXtR9DRWCQm7Q38AFU,14787
|
32
|
+
aesim/simba/Resources/Resources/Examples/dcdc_buck_c_code.jsimba,sha256=GQrB9btCr7kd0kY9J_oNXp7KER-NlhZQ7fzrXHghxzs,37795
|
33
|
+
aesim/simba/Resources/Resources/Examples/dcdc_buck_chopper_thermal.jsimba,sha256=NHoAsaMD6DP5AnMryNaqpCubu_p5KWmXa-rz6tlgZUI,27930
|
34
|
+
aesim/simba/Resources/Resources/Examples/dcdc_buck_converter_ac_sweep.jsimba,sha256=1nfL2pIPmIHWFDXfqbkqNdJpzE-EmTbECLqbs3k6AQQ,24410
|
35
35
|
aesim/simba/Resources/Resources/Examples/dcdc_buck_detailed.jsimba,sha256=ivC0KaXYXdSRG9lFc-jYWCiCFU9HGHaU-oLEYABWtxI,19345
|
36
|
-
aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba,sha256=
|
37
|
-
aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba,sha256=
|
38
|
-
aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba,sha256=
|
36
|
+
aesim/simba/Resources/Resources/Examples/dcdc_buckboost.jsimba,sha256=8b9cYfnghlUlMCloUwZ9QLp2AegeuCNsTfvZSbiRmJ8,33394
|
37
|
+
aesim/simba/Resources/Resources/Examples/dcdc_dual_active_bridge_converter.jsimba,sha256=W3Hi5yW5PhM3XkNJwDkw7bYPtWjWYd6KzIXctKjgyP8,93090
|
38
|
+
aesim/simba/Resources/Resources/Examples/dcdc_flyback.jsimba,sha256=GrMX90IXtiI49DZzqiaMInPkRaXmfJACt6aCj4Xm9c4,19178
|
39
39
|
aesim/simba/Resources/Resources/Examples/dcdc_forward.jsimba,sha256=7KgzQCui5v4gxMIoLc1vHDej3KWPZfh8uOoaoY9vTuc,11429
|
40
|
-
aesim/simba/Resources/Resources/Examples/dcdc_forward_magnetic.jsimba,sha256=
|
41
|
-
aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba,sha256=
|
42
|
-
aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba,sha256=
|
43
|
-
aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba,sha256=
|
40
|
+
aesim/simba/Resources/Resources/Examples/dcdc_forward_magnetic.jsimba,sha256=pGfDJcxuVDzdQoAsQ_7nP0LUM0TE7Eso_2mj75lYCIk,54608
|
41
|
+
aesim/simba/Resources/Resources/Examples/dcdc_interleaved_buck_chopper.jsimba,sha256=y-cgHrRIh_Z9wX-v6RAvof8pRI1_yTz7IvVj8tHFnjs,39927
|
42
|
+
aesim/simba/Resources/Resources/Examples/dcdc_llc_resonant_converter.jsimba,sha256=CSD4fItN91jihy_4BeHbzyKL4AvpfsfQ7DguRJ-18a8,110927
|
43
|
+
aesim/simba/Resources/Resources/Examples/dcdc_phase_shift_full_bridge_converter.jsimba,sha256=VGoqkdbe1pCU1Y3SDYB3aiQsM3MtP2smRF_zVtmPh5U,92801
|
44
44
|
aesim/simba/Resources/Resources/Examples/double_pulse_test.jsimba,sha256=vvNeqDT2ocWPgKZuWAR4pXjM5LKq2wSBWfS7u5hduVU,17929
|
45
|
-
aesim/simba/Resources/Resources/Examples/im_drive_example.jsimba,sha256=
|
45
|
+
aesim/simba/Resources/Resources/Examples/im_drive_example.jsimba,sha256=NHpntwcyLBNTHjTwIRmF9_W7S7_dqOsqxjlLER9Dv14,198660
|
46
46
|
aesim/simba/Resources/dotnet/LICENSE.txt,sha256=z8IfXovWVa6ZfuyRYTi3B7HSkLgycsAqlcn4IbjIcxA,1116
|
47
47
|
aesim/simba/Resources/dotnet/ThirdPartyNotices.txt,sha256=-0fJfSkZ2VhPJVZAWPlz3kJNqLUA1RtG5AY5HG6a3KY,94355
|
48
48
|
aesim/simba/Resources/dotnet/dotnet,sha256=CoWdhT-Og0OmWQQgwQ2YDIdhzlFExBI231oY2Y0KHBk,68400
|
@@ -235,7 +235,7 @@ aesim/simba/Resources/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll,
|
|
235
235
|
aesim/simba/Resources/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll,sha256=HVu_sifyDoZs8l9kmgWbYcPzUzb2nr0ZuO3ntuFKdBQ,50248
|
236
236
|
aesim/simba/Resources/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll,sha256=30Cd54Iuvkhxqt7x-OSlU0BjlcjWknBAN3gXd7plAwA,414280
|
237
237
|
aesim/simba/Resources/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll,sha256=sLFe4SPSSiINw0RslqYnPi_a3nHR81K_BiF73ld3iyQ,56184
|
238
|
-
aesim.simba-2024.
|
239
|
-
aesim.simba-2024.
|
240
|
-
aesim.simba-2024.
|
241
|
-
aesim.simba-2024.
|
238
|
+
aesim.simba-2024.11.6a1.dist-info/METADATA,sha256=-WkwHXNkoQeoG5w6cb4mouPCpgE0d01DlrqgWgkInT4,3118
|
239
|
+
aesim.simba-2024.11.6a1.dist-info/WHEEL,sha256=PXnMNwb3inXb9U41xumNGJvW5JpJlxfyk0LK1ialEhU,110
|
240
|
+
aesim.simba-2024.11.6a1.dist-info/top_level.txt,sha256=Rl2TekTH7Z1aRbKhE4okcrHjcDpapnmnsn5xI4Mb7_k,6
|
241
|
+
aesim.simba-2024.11.6a1.dist-info/RECORD,,
|
File without changes
|
File without changes
|