aesim.simba 2024.11.22__py3-none-manylinux1_x86_64.whl → 2025.1.9__py3-none-manylinux1_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aesim/simba/Resources/Resources/DesignExamples.jsimba +53 -53
- aesim/simba/Resources/Resources/libSimba.Solvers.linux-x64.so +0 -0
- aesim/simba/Resources/Simba.Data.deps.json +12 -12
- aesim/simba/Resources/Simba.Data.dll +0 -0
- aesim/simba/Resources/Simba.Drawing.dll +0 -0
- aesim/simba/Resources/Simba.Helper.dll +0 -0
- aesim/simba/__init__.py +1 -1
- aesim/simba/__init__.pyi +801 -1
- {aesim.simba-2024.11.22.dist-info → aesim.simba-2025.1.9.dist-info}/METADATA +1 -1
- {aesim.simba-2024.11.22.dist-info → aesim.simba-2025.1.9.dist-info}/RECORD +12 -12
- {aesim.simba-2024.11.22.dist-info → aesim.simba-2025.1.9.dist-info}/WHEEL +1 -1
- {aesim.simba-2024.11.22.dist-info → aesim.simba-2025.1.9.dist-info}/top_level.txt +0 -0
aesim/simba/__init__.pyi
CHANGED
@@ -39,6 +39,10 @@ class Annotation:
|
|
39
39
|
@property
|
40
40
|
def Disabled(self, ) -> bool: ...
|
41
41
|
@property
|
42
|
+
def SymbolFilePath(self, ) -> str: ...
|
43
|
+
@property
|
44
|
+
def SymbolFilename(self, ) -> str: ...
|
45
|
+
@property
|
42
46
|
def LibraryItemName(self, ) -> str: ...
|
43
47
|
@property
|
44
48
|
def IsBeta(self, ) -> bool: ...
|
@@ -378,6 +382,10 @@ class ControlDevice:
|
|
378
382
|
@property
|
379
383
|
def Disabled(self, ) -> bool: ...
|
380
384
|
@property
|
385
|
+
def SymbolFilePath(self, ) -> str: ...
|
386
|
+
@property
|
387
|
+
def SymbolFilename(self, ) -> str: ...
|
388
|
+
@property
|
381
389
|
def LibraryItemName(self, ) -> str: ...
|
382
390
|
@property
|
383
391
|
def IsBeta(self, ) -> bool: ...
|
@@ -493,6 +501,10 @@ class Device:
|
|
493
501
|
@property
|
494
502
|
def Disabled(self, ) -> bool: ...
|
495
503
|
@property
|
504
|
+
def SymbolFilePath(self, ) -> str: ...
|
505
|
+
@property
|
506
|
+
def SymbolFilename(self, ) -> str: ...
|
507
|
+
@property
|
496
508
|
def LibraryItemName(self, ) -> str: ...
|
497
509
|
@property
|
498
510
|
def IsBeta(self, ) -> bool: ...
|
@@ -604,6 +616,10 @@ class FreneticDevice:
|
|
604
616
|
@property
|
605
617
|
def Disabled(self, ) -> bool: ...
|
606
618
|
@property
|
619
|
+
def SymbolFilePath(self, ) -> str: ...
|
620
|
+
@property
|
621
|
+
def SymbolFilename(self, ) -> str: ...
|
622
|
+
@property
|
607
623
|
def LibraryItemName(self, ) -> str: ...
|
608
624
|
@property
|
609
625
|
def IsBeta(self, ) -> bool: ...
|
@@ -1757,6 +1773,10 @@ class Subcircuit:
|
|
1757
1773
|
@property
|
1758
1774
|
def Disabled(self, ) -> bool: ...
|
1759
1775
|
@property
|
1776
|
+
def SymbolFilePath(self, ) -> str: ...
|
1777
|
+
@property
|
1778
|
+
def SymbolFilename(self, ) -> str: ...
|
1779
|
+
@property
|
1760
1780
|
def IsBeta(self, ) -> bool: ...
|
1761
1781
|
@property
|
1762
1782
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -2383,7 +2403,7 @@ class Library:
|
|
2383
2403
|
def DefaultThermalLibrary() -> Library: ...
|
2384
2404
|
def DefaultMagneticLibrary() -> Library: ...
|
2385
2405
|
def DefaultLibraries(include_deprecated: Optional[bool] = None) -> Library: ...
|
2386
|
-
def GetLibraryFromNameSpace(ns: str, include_deprecated: Optional[bool] = None) -> Library: ...
|
2406
|
+
def GetLibraryFromNameSpace(ns: str, include_deprecated: Optional[bool] = None, prefix: Optional[str] = None) -> Library: ...
|
2387
2407
|
def GetTypesInNamespace(assembly: Any, nameSpace: str) -> Any: ...
|
2388
2408
|
def GetAllTypesInNamespace(ns: str) -> List[Any]: ...
|
2389
2409
|
def GetDevicesinNameSpace(nameSpace: str, include_deprecated: Optional[bool] = None) -> List[Device]: ...
|
@@ -3382,6 +3402,10 @@ class ThermalDevice:
|
|
3382
3402
|
@property
|
3383
3403
|
def Disabled(self, ) -> bool: ...
|
3384
3404
|
@property
|
3405
|
+
def SymbolFilePath(self, ) -> str: ...
|
3406
|
+
@property
|
3407
|
+
def SymbolFilename(self, ) -> str: ...
|
3408
|
+
@property
|
3385
3409
|
def LibraryItemName(self, ) -> str: ...
|
3386
3410
|
@property
|
3387
3411
|
def IsBeta(self, ) -> bool: ...
|
@@ -4230,6 +4254,10 @@ class ControlInConnectorLabel:
|
|
4230
4254
|
@property
|
4231
4255
|
def Disabled(self, ) -> bool: ...
|
4232
4256
|
@property
|
4257
|
+
def SymbolFilePath(self, ) -> str: ...
|
4258
|
+
@property
|
4259
|
+
def SymbolFilename(self, ) -> str: ...
|
4260
|
+
@property
|
4233
4261
|
def IsBeta(self, ) -> bool: ...
|
4234
4262
|
@property
|
4235
4263
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4324,6 +4352,10 @@ class ControlOutConnectorLabel:
|
|
4324
4352
|
@property
|
4325
4353
|
def Disabled(self, ) -> bool: ...
|
4326
4354
|
@property
|
4355
|
+
def SymbolFilePath(self, ) -> str: ...
|
4356
|
+
@property
|
4357
|
+
def SymbolFilename(self, ) -> str: ...
|
4358
|
+
@property
|
4327
4359
|
def IsBeta(self, ) -> bool: ...
|
4328
4360
|
@property
|
4329
4361
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4418,6 +4450,10 @@ class ElectricalConnectorLabel:
|
|
4418
4450
|
@property
|
4419
4451
|
def Disabled(self, ) -> bool: ...
|
4420
4452
|
@property
|
4453
|
+
def SymbolFilePath(self, ) -> str: ...
|
4454
|
+
@property
|
4455
|
+
def SymbolFilename(self, ) -> str: ...
|
4456
|
+
@property
|
4421
4457
|
def IsBeta(self, ) -> bool: ...
|
4422
4458
|
@property
|
4423
4459
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4512,6 +4548,10 @@ class RotationalMechanicalConnectorLabel:
|
|
4512
4548
|
@property
|
4513
4549
|
def Disabled(self, ) -> bool: ...
|
4514
4550
|
@property
|
4551
|
+
def SymbolFilePath(self, ) -> str: ...
|
4552
|
+
@property
|
4553
|
+
def SymbolFilename(self, ) -> str: ...
|
4554
|
+
@property
|
4515
4555
|
def IsBeta(self, ) -> bool: ...
|
4516
4556
|
@property
|
4517
4557
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4606,6 +4646,10 @@ class ThermalConnectorLabel:
|
|
4606
4646
|
@property
|
4607
4647
|
def Disabled(self, ) -> bool: ...
|
4608
4648
|
@property
|
4649
|
+
def SymbolFilePath(self, ) -> str: ...
|
4650
|
+
@property
|
4651
|
+
def SymbolFilename(self, ) -> str: ...
|
4652
|
+
@property
|
4609
4653
|
def IsBeta(self, ) -> bool: ...
|
4610
4654
|
@property
|
4611
4655
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4698,6 +4742,10 @@ class UnknownDevice:
|
|
4698
4742
|
@property
|
4699
4743
|
def Disabled(self, ) -> bool: ...
|
4700
4744
|
@property
|
4745
|
+
def SymbolFilePath(self, ) -> str: ...
|
4746
|
+
@property
|
4747
|
+
def SymbolFilename(self, ) -> str: ...
|
4748
|
+
@property
|
4701
4749
|
def IsBeta(self, ) -> bool: ...
|
4702
4750
|
@property
|
4703
4751
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4796,6 +4844,10 @@ class ConstantTemperature:
|
|
4796
4844
|
@property
|
4797
4845
|
def Disabled(self, ) -> bool: ...
|
4798
4846
|
@property
|
4847
|
+
def SymbolFilePath(self, ) -> str: ...
|
4848
|
+
@property
|
4849
|
+
def SymbolFilename(self, ) -> str: ...
|
4850
|
+
@property
|
4799
4851
|
def IsBeta(self, ) -> bool: ...
|
4800
4852
|
@property
|
4801
4853
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4894,6 +4946,10 @@ class ControlledHeatSource:
|
|
4894
4946
|
@property
|
4895
4947
|
def Disabled(self, ) -> bool: ...
|
4896
4948
|
@property
|
4949
|
+
def SymbolFilePath(self, ) -> str: ...
|
4950
|
+
@property
|
4951
|
+
def SymbolFilename(self, ) -> str: ...
|
4952
|
+
@property
|
4897
4953
|
def IsBeta(self, ) -> bool: ...
|
4898
4954
|
@property
|
4899
4955
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -4992,6 +5048,10 @@ class ControlledTemperatureSource:
|
|
4992
5048
|
@property
|
4993
5049
|
def Disabled(self, ) -> bool: ...
|
4994
5050
|
@property
|
5051
|
+
def SymbolFilePath(self, ) -> str: ...
|
5052
|
+
@property
|
5053
|
+
def SymbolFilename(self, ) -> str: ...
|
5054
|
+
@property
|
4995
5055
|
def IsBeta(self, ) -> bool: ...
|
4996
5056
|
@property
|
4997
5057
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5088,6 +5148,10 @@ class ControlledTemperatureSourceSmall:
|
|
5088
5148
|
@property
|
5089
5149
|
def Disabled(self, ) -> bool: ...
|
5090
5150
|
@property
|
5151
|
+
def SymbolFilePath(self, ) -> str: ...
|
5152
|
+
@property
|
5153
|
+
def SymbolFilename(self, ) -> str: ...
|
5154
|
+
@property
|
5091
5155
|
def IsBeta(self, ) -> bool: ...
|
5092
5156
|
@property
|
5093
5157
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5186,6 +5250,10 @@ class PiecewiseLinearTemperatureSource:
|
|
5186
5250
|
@property
|
5187
5251
|
def Disabled(self, ) -> bool: ...
|
5188
5252
|
@property
|
5253
|
+
def SymbolFilePath(self, ) -> str: ...
|
5254
|
+
@property
|
5255
|
+
def SymbolFilename(self, ) -> str: ...
|
5256
|
+
@property
|
5189
5257
|
def IsBeta(self, ) -> bool: ...
|
5190
5258
|
@property
|
5191
5259
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5288,6 +5356,10 @@ class StepTemperatureSource:
|
|
5288
5356
|
@property
|
5289
5357
|
def Disabled(self, ) -> bool: ...
|
5290
5358
|
@property
|
5359
|
+
def SymbolFilePath(self, ) -> str: ...
|
5360
|
+
@property
|
5361
|
+
def SymbolFilename(self, ) -> str: ...
|
5362
|
+
@property
|
5291
5363
|
def IsBeta(self, ) -> bool: ...
|
5292
5364
|
@property
|
5293
5365
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5382,6 +5454,10 @@ class ThermalGround:
|
|
5382
5454
|
@property
|
5383
5455
|
def Disabled(self, ) -> bool: ...
|
5384
5456
|
@property
|
5457
|
+
def SymbolFilePath(self, ) -> str: ...
|
5458
|
+
@property
|
5459
|
+
def SymbolFilename(self, ) -> str: ...
|
5460
|
+
@property
|
5385
5461
|
def IsBeta(self, ) -> bool: ...
|
5386
5462
|
@property
|
5387
5463
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5482,6 +5558,10 @@ class ThermalCapacitor:
|
|
5482
5558
|
@property
|
5483
5559
|
def Disabled(self, ) -> bool: ...
|
5484
5560
|
@property
|
5561
|
+
def SymbolFilePath(self, ) -> str: ...
|
5562
|
+
@property
|
5563
|
+
def SymbolFilename(self, ) -> str: ...
|
5564
|
+
@property
|
5485
5565
|
def IsBeta(self, ) -> bool: ...
|
5486
5566
|
@property
|
5487
5567
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5580,6 +5660,10 @@ class ThermalControlledResistor:
|
|
5580
5660
|
@property
|
5581
5661
|
def Disabled(self, ) -> bool: ...
|
5582
5662
|
@property
|
5663
|
+
def SymbolFilePath(self, ) -> str: ...
|
5664
|
+
@property
|
5665
|
+
def SymbolFilename(self, ) -> str: ...
|
5666
|
+
@property
|
5583
5667
|
def IsBeta(self, ) -> bool: ...
|
5584
5668
|
@property
|
5585
5669
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5678,6 +5762,10 @@ class ThermalResistor:
|
|
5678
5762
|
@property
|
5679
5763
|
def Disabled(self, ) -> bool: ...
|
5680
5764
|
@property
|
5765
|
+
def SymbolFilePath(self, ) -> str: ...
|
5766
|
+
@property
|
5767
|
+
def SymbolFilename(self, ) -> str: ...
|
5768
|
+
@property
|
5681
5769
|
def IsBeta(self, ) -> bool: ...
|
5682
5770
|
@property
|
5683
5771
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5774,6 +5862,10 @@ class HeatFlowMeter:
|
|
5774
5862
|
@property
|
5775
5863
|
def Disabled(self, ) -> bool: ...
|
5776
5864
|
@property
|
5865
|
+
def SymbolFilePath(self, ) -> str: ...
|
5866
|
+
@property
|
5867
|
+
def SymbolFilename(self, ) -> str: ...
|
5868
|
+
@property
|
5777
5869
|
def IsBeta(self, ) -> bool: ...
|
5778
5870
|
@property
|
5779
5871
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5874,6 +5966,10 @@ class HeatFlowProbe:
|
|
5874
5966
|
@property
|
5875
5967
|
def Disabled(self, ) -> bool: ...
|
5876
5968
|
@property
|
5969
|
+
def SymbolFilePath(self, ) -> str: ...
|
5970
|
+
@property
|
5971
|
+
def SymbolFilename(self, ) -> str: ...
|
5972
|
+
@property
|
5877
5973
|
def IsBeta(self, ) -> bool: ...
|
5878
5974
|
@property
|
5879
5975
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -5968,6 +6064,10 @@ class TemperatureMeter:
|
|
5968
6064
|
@property
|
5969
6065
|
def Disabled(self, ) -> bool: ...
|
5970
6066
|
@property
|
6067
|
+
def SymbolFilePath(self, ) -> str: ...
|
6068
|
+
@property
|
6069
|
+
def SymbolFilename(self, ) -> str: ...
|
6070
|
+
@property
|
5971
6071
|
def IsBeta(self, ) -> bool: ...
|
5972
6072
|
@property
|
5973
6073
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6066,6 +6166,10 @@ class TemperatureProbe:
|
|
6066
6166
|
@property
|
6067
6167
|
def Disabled(self, ) -> bool: ...
|
6068
6168
|
@property
|
6169
|
+
def SymbolFilePath(self, ) -> str: ...
|
6170
|
+
@property
|
6171
|
+
def SymbolFilename(self, ) -> str: ...
|
6172
|
+
@property
|
6069
6173
|
def IsBeta(self, ) -> bool: ...
|
6070
6174
|
@property
|
6071
6175
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6160,6 +6264,10 @@ class ControlInPin:
|
|
6160
6264
|
@property
|
6161
6265
|
def Disabled(self, ) -> bool: ...
|
6162
6266
|
@property
|
6267
|
+
def SymbolFilePath(self, ) -> str: ...
|
6268
|
+
@property
|
6269
|
+
def SymbolFilename(self, ) -> str: ...
|
6270
|
+
@property
|
6163
6271
|
def IsBeta(self, ) -> bool: ...
|
6164
6272
|
@property
|
6165
6273
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6254,6 +6362,10 @@ class ControlOutPin:
|
|
6254
6362
|
@property
|
6255
6363
|
def Disabled(self, ) -> bool: ...
|
6256
6364
|
@property
|
6365
|
+
def SymbolFilePath(self, ) -> str: ...
|
6366
|
+
@property
|
6367
|
+
def SymbolFilename(self, ) -> str: ...
|
6368
|
+
@property
|
6257
6369
|
def IsBeta(self, ) -> bool: ...
|
6258
6370
|
@property
|
6259
6371
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6348,6 +6460,10 @@ class ElectricalPin:
|
|
6348
6460
|
@property
|
6349
6461
|
def Disabled(self, ) -> bool: ...
|
6350
6462
|
@property
|
6463
|
+
def SymbolFilePath(self, ) -> str: ...
|
6464
|
+
@property
|
6465
|
+
def SymbolFilename(self, ) -> str: ...
|
6466
|
+
@property
|
6351
6467
|
def IsBeta(self, ) -> bool: ...
|
6352
6468
|
@property
|
6353
6469
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6442,6 +6558,10 @@ class RotationalMechanicalPin:
|
|
6442
6558
|
@property
|
6443
6559
|
def Disabled(self, ) -> bool: ...
|
6444
6560
|
@property
|
6561
|
+
def SymbolFilePath(self, ) -> str: ...
|
6562
|
+
@property
|
6563
|
+
def SymbolFilename(self, ) -> str: ...
|
6564
|
+
@property
|
6445
6565
|
def IsBeta(self, ) -> bool: ...
|
6446
6566
|
@property
|
6447
6567
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6536,6 +6656,10 @@ class ThermalPin:
|
|
6536
6656
|
@property
|
6537
6657
|
def Disabled(self, ) -> bool: ...
|
6538
6658
|
@property
|
6659
|
+
def SymbolFilePath(self, ) -> str: ...
|
6660
|
+
@property
|
6661
|
+
def SymbolFilename(self, ) -> str: ...
|
6662
|
+
@property
|
6539
6663
|
def IsBeta(self, ) -> bool: ...
|
6540
6664
|
@property
|
6541
6665
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6634,6 +6758,10 @@ class SpeedProbe:
|
|
6634
6758
|
@property
|
6635
6759
|
def Disabled(self, ) -> bool: ...
|
6636
6760
|
@property
|
6761
|
+
def SymbolFilePath(self, ) -> str: ...
|
6762
|
+
@property
|
6763
|
+
def SymbolFilename(self, ) -> str: ...
|
6764
|
+
@property
|
6637
6765
|
def IsBeta(self, ) -> bool: ...
|
6638
6766
|
@property
|
6639
6767
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6734,6 +6862,10 @@ class TorqueProbe:
|
|
6734
6862
|
@property
|
6735
6863
|
def Disabled(self, ) -> bool: ...
|
6736
6864
|
@property
|
6865
|
+
def SymbolFilePath(self, ) -> str: ...
|
6866
|
+
@property
|
6867
|
+
def SymbolFilename(self, ) -> str: ...
|
6868
|
+
@property
|
6737
6869
|
def IsBeta(self, ) -> bool: ...
|
6738
6870
|
@property
|
6739
6871
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6832,6 +6964,10 @@ class ConstantPowerLoad:
|
|
6832
6964
|
@property
|
6833
6965
|
def Disabled(self, ) -> bool: ...
|
6834
6966
|
@property
|
6967
|
+
def SymbolFilePath(self, ) -> str: ...
|
6968
|
+
@property
|
6969
|
+
def SymbolFilename(self, ) -> str: ...
|
6970
|
+
@property
|
6835
6971
|
def IsBeta(self, ) -> bool: ...
|
6836
6972
|
@property
|
6837
6973
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -6930,6 +7066,10 @@ class ConstantSpeed:
|
|
6930
7066
|
@property
|
6931
7067
|
def Disabled(self, ) -> bool: ...
|
6932
7068
|
@property
|
7069
|
+
def SymbolFilePath(self, ) -> str: ...
|
7070
|
+
@property
|
7071
|
+
def SymbolFilename(self, ) -> str: ...
|
7072
|
+
@property
|
6933
7073
|
def IsBeta(self, ) -> bool: ...
|
6934
7074
|
@property
|
6935
7075
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7026,6 +7166,10 @@ class ConstantTorque:
|
|
7026
7166
|
@property
|
7027
7167
|
def Disabled(self, ) -> bool: ...
|
7028
7168
|
@property
|
7169
|
+
def SymbolFilePath(self, ) -> str: ...
|
7170
|
+
@property
|
7171
|
+
def SymbolFilename(self, ) -> str: ...
|
7172
|
+
@property
|
7029
7173
|
def IsBeta(self, ) -> bool: ...
|
7030
7174
|
@property
|
7031
7175
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7122,6 +7266,10 @@ class ControlledSpeed:
|
|
7122
7266
|
@property
|
7123
7267
|
def Disabled(self, ) -> bool: ...
|
7124
7268
|
@property
|
7269
|
+
def SymbolFilePath(self, ) -> str: ...
|
7270
|
+
@property
|
7271
|
+
def SymbolFilename(self, ) -> str: ...
|
7272
|
+
@property
|
7125
7273
|
def IsBeta(self, ) -> bool: ...
|
7126
7274
|
@property
|
7127
7275
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7218,6 +7366,10 @@ class ControlledTorque:
|
|
7218
7366
|
@property
|
7219
7367
|
def Disabled(self, ) -> bool: ...
|
7220
7368
|
@property
|
7369
|
+
def SymbolFilePath(self, ) -> str: ...
|
7370
|
+
@property
|
7371
|
+
def SymbolFilename(self, ) -> str: ...
|
7372
|
+
@property
|
7221
7373
|
def IsBeta(self, ) -> bool: ...
|
7222
7374
|
@property
|
7223
7375
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7320,6 +7472,10 @@ class GenericLoad:
|
|
7320
7472
|
@property
|
7321
7473
|
def Disabled(self, ) -> bool: ...
|
7322
7474
|
@property
|
7475
|
+
def SymbolFilePath(self, ) -> str: ...
|
7476
|
+
@property
|
7477
|
+
def SymbolFilename(self, ) -> str: ...
|
7478
|
+
@property
|
7323
7479
|
def IsBeta(self, ) -> bool: ...
|
7324
7480
|
@property
|
7325
7481
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7418,6 +7574,10 @@ class ConstantFluxRateSource:
|
|
7418
7574
|
@property
|
7419
7575
|
def Disabled(self, ) -> bool: ...
|
7420
7576
|
@property
|
7577
|
+
def SymbolFilePath(self, ) -> str: ...
|
7578
|
+
@property
|
7579
|
+
def SymbolFilename(self, ) -> str: ...
|
7580
|
+
@property
|
7421
7581
|
def IsBeta(self, ) -> bool: ...
|
7422
7582
|
@property
|
7423
7583
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7516,6 +7676,10 @@ class ConstantMMFSource:
|
|
7516
7676
|
@property
|
7517
7677
|
def Disabled(self, ) -> bool: ...
|
7518
7678
|
@property
|
7679
|
+
def SymbolFilePath(self, ) -> str: ...
|
7680
|
+
@property
|
7681
|
+
def SymbolFilename(self, ) -> str: ...
|
7682
|
+
@property
|
7519
7683
|
def IsBeta(self, ) -> bool: ...
|
7520
7684
|
@property
|
7521
7685
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7610,6 +7774,10 @@ class MagneticGround:
|
|
7610
7774
|
@property
|
7611
7775
|
def Disabled(self, ) -> bool: ...
|
7612
7776
|
@property
|
7777
|
+
def SymbolFilePath(self, ) -> str: ...
|
7778
|
+
@property
|
7779
|
+
def SymbolFilename(self, ) -> str: ...
|
7780
|
+
@property
|
7613
7781
|
def IsBeta(self, ) -> bool: ...
|
7614
7782
|
@property
|
7615
7783
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7712,6 +7880,10 @@ class FluxProbe:
|
|
7712
7880
|
@property
|
7713
7881
|
def Disabled(self, ) -> bool: ...
|
7714
7882
|
@property
|
7883
|
+
def SymbolFilePath(self, ) -> str: ...
|
7884
|
+
@property
|
7885
|
+
def SymbolFilename(self, ) -> str: ...
|
7886
|
+
@property
|
7715
7887
|
def IsBeta(self, ) -> bool: ...
|
7716
7888
|
@property
|
7717
7889
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7812,6 +7984,10 @@ class MMFProbe:
|
|
7812
7984
|
@property
|
7813
7985
|
def Disabled(self, ) -> bool: ...
|
7814
7986
|
@property
|
7987
|
+
def SymbolFilePath(self, ) -> str: ...
|
7988
|
+
@property
|
7989
|
+
def SymbolFilename(self, ) -> str: ...
|
7990
|
+
@property
|
7815
7991
|
def IsBeta(self, ) -> bool: ...
|
7816
7992
|
@property
|
7817
7993
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -7914,6 +8090,10 @@ class AirGap:
|
|
7914
8090
|
@property
|
7915
8091
|
def Disabled(self, ) -> bool: ...
|
7916
8092
|
@property
|
8093
|
+
def SymbolFilePath(self, ) -> str: ...
|
8094
|
+
@property
|
8095
|
+
def SymbolFilename(self, ) -> str: ...
|
8096
|
+
@property
|
7917
8097
|
def IsBeta(self, ) -> bool: ...
|
7918
8098
|
@property
|
7919
8099
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8016,6 +8196,10 @@ class LinearCore:
|
|
8016
8196
|
@property
|
8017
8197
|
def Disabled(self, ) -> bool: ...
|
8018
8198
|
@property
|
8199
|
+
def SymbolFilePath(self, ) -> str: ...
|
8200
|
+
@property
|
8201
|
+
def SymbolFilename(self, ) -> str: ...
|
8202
|
+
@property
|
8019
8203
|
def IsBeta(self, ) -> bool: ...
|
8020
8204
|
@property
|
8021
8205
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8116,6 +8300,10 @@ class Permeance:
|
|
8116
8300
|
@property
|
8117
8301
|
def Disabled(self, ) -> bool: ...
|
8118
8302
|
@property
|
8303
|
+
def SymbolFilePath(self, ) -> str: ...
|
8304
|
+
@property
|
8305
|
+
def SymbolFilename(self, ) -> str: ...
|
8306
|
+
@property
|
8119
8307
|
def IsBeta(self, ) -> bool: ...
|
8120
8308
|
@property
|
8121
8309
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8218,6 +8406,10 @@ class Winding:
|
|
8218
8406
|
@property
|
8219
8407
|
def Disabled(self, ) -> bool: ...
|
8220
8408
|
@property
|
8409
|
+
def SymbolFilePath(self, ) -> str: ...
|
8410
|
+
@property
|
8411
|
+
def SymbolFilename(self, ) -> str: ...
|
8412
|
+
@property
|
8221
8413
|
def IsBeta(self, ) -> bool: ...
|
8222
8414
|
@property
|
8223
8415
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8324,6 +8516,10 @@ class FreneticIdealTransformer:
|
|
8324
8516
|
@property
|
8325
8517
|
def Disabled(self, ) -> bool: ...
|
8326
8518
|
@property
|
8519
|
+
def SymbolFilePath(self, ) -> str: ...
|
8520
|
+
@property
|
8521
|
+
def SymbolFilename(self, ) -> str: ...
|
8522
|
+
@property
|
8327
8523
|
def IsBeta(self, ) -> bool: ...
|
8328
8524
|
@property
|
8329
8525
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8437,6 +8633,10 @@ class FreneticIdealTransformer3Winding:
|
|
8437
8633
|
@property
|
8438
8634
|
def Disabled(self, ) -> bool: ...
|
8439
8635
|
@property
|
8636
|
+
def SymbolFilePath(self, ) -> str: ...
|
8637
|
+
@property
|
8638
|
+
def SymbolFilename(self, ) -> str: ...
|
8639
|
+
@property
|
8440
8640
|
def IsBeta(self, ) -> bool: ...
|
8441
8641
|
@property
|
8442
8642
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8538,6 +8738,10 @@ class FreneticIdealTransformerMultiWinding:
|
|
8538
8738
|
@property
|
8539
8739
|
def Disabled(self, ) -> bool: ...
|
8540
8740
|
@property
|
8741
|
+
def SymbolFilePath(self, ) -> str: ...
|
8742
|
+
@property
|
8743
|
+
def SymbolFilename(self, ) -> str: ...
|
8744
|
+
@property
|
8541
8745
|
def IsBeta(self, ) -> bool: ...
|
8542
8746
|
@property
|
8543
8747
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8644,6 +8848,10 @@ class FreneticInductor:
|
|
8644
8848
|
@property
|
8645
8849
|
def Disabled(self, ) -> bool: ...
|
8646
8850
|
@property
|
8851
|
+
def SymbolFilePath(self, ) -> str: ...
|
8852
|
+
@property
|
8853
|
+
def SymbolFilename(self, ) -> str: ...
|
8854
|
+
@property
|
8647
8855
|
def IsBeta(self, ) -> bool: ...
|
8648
8856
|
@property
|
8649
8857
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8749,6 +8957,10 @@ class FreneticSaturableInductor:
|
|
8749
8957
|
@property
|
8750
8958
|
def Disabled(self, ) -> bool: ...
|
8751
8959
|
@property
|
8960
|
+
def SymbolFilePath(self, ) -> str: ...
|
8961
|
+
@property
|
8962
|
+
def SymbolFilename(self, ) -> str: ...
|
8963
|
+
@property
|
8752
8964
|
def IsBeta(self, ) -> bool: ...
|
8753
8965
|
@property
|
8754
8966
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8852,6 +9064,10 @@ class IdealTransformer:
|
|
8852
9064
|
@property
|
8853
9065
|
def Disabled(self, ) -> bool: ...
|
8854
9066
|
@property
|
9067
|
+
def SymbolFilePath(self, ) -> str: ...
|
9068
|
+
@property
|
9069
|
+
def SymbolFilename(self, ) -> str: ...
|
9070
|
+
@property
|
8855
9071
|
def IsBeta(self, ) -> bool: ...
|
8856
9072
|
@property
|
8857
9073
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -8960,6 +9176,10 @@ class IdealTransformer3Winding:
|
|
8960
9176
|
@property
|
8961
9177
|
def Disabled(self, ) -> bool: ...
|
8962
9178
|
@property
|
9179
|
+
def SymbolFilePath(self, ) -> str: ...
|
9180
|
+
@property
|
9181
|
+
def SymbolFilename(self, ) -> str: ...
|
9182
|
+
@property
|
8963
9183
|
def IsBeta(self, ) -> bool: ...
|
8964
9184
|
@property
|
8965
9185
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9056,6 +9276,10 @@ class IdealTransformerMultiWinding:
|
|
9056
9276
|
@property
|
9057
9277
|
def Disabled(self, ) -> bool: ...
|
9058
9278
|
@property
|
9279
|
+
def SymbolFilePath(self, ) -> str: ...
|
9280
|
+
@property
|
9281
|
+
def SymbolFilename(self, ) -> str: ...
|
9282
|
+
@property
|
9059
9283
|
def IsBeta(self, ) -> bool: ...
|
9060
9284
|
@property
|
9061
9285
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9159,6 +9383,10 @@ class IdealTransformerWithControlledRatio:
|
|
9159
9383
|
@property
|
9160
9384
|
def Disabled(self, ) -> bool: ...
|
9161
9385
|
@property
|
9386
|
+
def SymbolFilePath(self, ) -> str: ...
|
9387
|
+
@property
|
9388
|
+
def SymbolFilename(self, ) -> str: ...
|
9389
|
+
@property
|
9162
9390
|
def IsBeta(self, ) -> bool: ...
|
9163
9391
|
@property
|
9164
9392
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9271,6 +9499,10 @@ class NonIdealTransformer:
|
|
9271
9499
|
@property
|
9272
9500
|
def Disabled(self, ) -> bool: ...
|
9273
9501
|
@property
|
9502
|
+
def SymbolFilePath(self, ) -> str: ...
|
9503
|
+
@property
|
9504
|
+
def SymbolFilename(self, ) -> str: ...
|
9505
|
+
@property
|
9274
9506
|
def IsBeta(self, ) -> bool: ...
|
9275
9507
|
@property
|
9276
9508
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9369,6 +9601,10 @@ class ControlledSwitch:
|
|
9369
9601
|
@property
|
9370
9602
|
def Disabled(self, ) -> bool: ...
|
9371
9603
|
@property
|
9604
|
+
def SymbolFilePath(self, ) -> str: ...
|
9605
|
+
@property
|
9606
|
+
def SymbolFilename(self, ) -> str: ...
|
9607
|
+
@property
|
9372
9608
|
def IsBeta(self, ) -> bool: ...
|
9373
9609
|
@property
|
9374
9610
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9473,6 +9709,10 @@ class ControlledSwitchWithThreshold:
|
|
9473
9709
|
@property
|
9474
9710
|
def Disabled(self, ) -> bool: ...
|
9475
9711
|
@property
|
9712
|
+
def SymbolFilePath(self, ) -> str: ...
|
9713
|
+
@property
|
9714
|
+
def SymbolFilename(self, ) -> str: ...
|
9715
|
+
@property
|
9476
9716
|
def IsBeta(self, ) -> bool: ...
|
9477
9717
|
@property
|
9478
9718
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9573,6 +9813,10 @@ class Switch:
|
|
9573
9813
|
@property
|
9574
9814
|
def Disabled(self, ) -> bool: ...
|
9575
9815
|
@property
|
9816
|
+
def SymbolFilePath(self, ) -> str: ...
|
9817
|
+
@property
|
9818
|
+
def SymbolFilename(self, ) -> str: ...
|
9819
|
+
@property
|
9576
9820
|
def IsBeta(self, ) -> bool: ...
|
9577
9821
|
@property
|
9578
9822
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9671,6 +9915,10 @@ class SpiceNetlist:
|
|
9671
9915
|
@property
|
9672
9916
|
def Disabled(self, ) -> bool: ...
|
9673
9917
|
@property
|
9918
|
+
def SymbolFilePath(self, ) -> str: ...
|
9919
|
+
@property
|
9920
|
+
def SymbolFilename(self, ) -> str: ...
|
9921
|
+
@property
|
9674
9922
|
def IsBeta(self, ) -> bool: ...
|
9675
9923
|
@property
|
9676
9924
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9778,6 +10026,10 @@ class ACCurrentSource:
|
|
9778
10026
|
@property
|
9779
10027
|
def Disabled(self, ) -> bool: ...
|
9780
10028
|
@property
|
10029
|
+
def SymbolFilePath(self, ) -> str: ...
|
10030
|
+
@property
|
10031
|
+
def SymbolFilename(self, ) -> str: ...
|
10032
|
+
@property
|
9781
10033
|
def IsBeta(self, ) -> bool: ...
|
9782
10034
|
@property
|
9783
10035
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9880,6 +10132,10 @@ class ACVoltageSource:
|
|
9880
10132
|
@property
|
9881
10133
|
def Disabled(self, ) -> bool: ...
|
9882
10134
|
@property
|
10135
|
+
def SymbolFilePath(self, ) -> str: ...
|
10136
|
+
@property
|
10137
|
+
def SymbolFilename(self, ) -> str: ...
|
10138
|
+
@property
|
9883
10139
|
def IsBeta(self, ) -> bool: ...
|
9884
10140
|
@property
|
9885
10141
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -9978,6 +10234,10 @@ class ControlledCurrentSource:
|
|
9978
10234
|
@property
|
9979
10235
|
def Disabled(self, ) -> bool: ...
|
9980
10236
|
@property
|
10237
|
+
def SymbolFilePath(self, ) -> str: ...
|
10238
|
+
@property
|
10239
|
+
def SymbolFilename(self, ) -> str: ...
|
10240
|
+
@property
|
9981
10241
|
def IsBeta(self, ) -> bool: ...
|
9982
10242
|
@property
|
9983
10243
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10076,6 +10336,10 @@ class ControlledVoltageSource:
|
|
10076
10336
|
@property
|
10077
10337
|
def Disabled(self, ) -> bool: ...
|
10078
10338
|
@property
|
10339
|
+
def SymbolFilePath(self, ) -> str: ...
|
10340
|
+
@property
|
10341
|
+
def SymbolFilename(self, ) -> str: ...
|
10342
|
+
@property
|
10079
10343
|
def IsBeta(self, ) -> bool: ...
|
10080
10344
|
@property
|
10081
10345
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10172,6 +10436,10 @@ class ControlledVoltageSourceSmall:
|
|
10172
10436
|
@property
|
10173
10437
|
def Disabled(self, ) -> bool: ...
|
10174
10438
|
@property
|
10439
|
+
def SymbolFilePath(self, ) -> str: ...
|
10440
|
+
@property
|
10441
|
+
def SymbolFilename(self, ) -> str: ...
|
10442
|
+
@property
|
10175
10443
|
def IsBeta(self, ) -> bool: ...
|
10176
10444
|
@property
|
10177
10445
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10274,6 +10542,10 @@ class CurrentControlledCurrentSource:
|
|
10274
10542
|
@property
|
10275
10543
|
def Disabled(self, ) -> bool: ...
|
10276
10544
|
@property
|
10545
|
+
def SymbolFilePath(self, ) -> str: ...
|
10546
|
+
@property
|
10547
|
+
def SymbolFilename(self, ) -> str: ...
|
10548
|
+
@property
|
10277
10549
|
def IsBeta(self, ) -> bool: ...
|
10278
10550
|
@property
|
10279
10551
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10376,6 +10648,10 @@ class CurrentControlledVoltageSource:
|
|
10376
10648
|
@property
|
10377
10649
|
def Disabled(self, ) -> bool: ...
|
10378
10650
|
@property
|
10651
|
+
def SymbolFilePath(self, ) -> str: ...
|
10652
|
+
@property
|
10653
|
+
def SymbolFilename(self, ) -> str: ...
|
10654
|
+
@property
|
10379
10655
|
def IsBeta(self, ) -> bool: ...
|
10380
10656
|
@property
|
10381
10657
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10474,6 +10750,10 @@ class DCCurrentSource:
|
|
10474
10750
|
@property
|
10475
10751
|
def Disabled(self, ) -> bool: ...
|
10476
10752
|
@property
|
10753
|
+
def SymbolFilePath(self, ) -> str: ...
|
10754
|
+
@property
|
10755
|
+
def SymbolFilename(self, ) -> str: ...
|
10756
|
+
@property
|
10477
10757
|
def IsBeta(self, ) -> bool: ...
|
10478
10758
|
@property
|
10479
10759
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10572,6 +10852,10 @@ class DCVoltageSource:
|
|
10572
10852
|
@property
|
10573
10853
|
def Disabled(self, ) -> bool: ...
|
10574
10854
|
@property
|
10855
|
+
def SymbolFilePath(self, ) -> str: ...
|
10856
|
+
@property
|
10857
|
+
def SymbolFilename(self, ) -> str: ...
|
10858
|
+
@property
|
10575
10859
|
def IsBeta(self, ) -> bool: ...
|
10576
10860
|
@property
|
10577
10861
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10674,6 +10958,10 @@ class DeprectedACCurrentSource:
|
|
10674
10958
|
@property
|
10675
10959
|
def Disabled(self, ) -> bool: ...
|
10676
10960
|
@property
|
10961
|
+
def SymbolFilePath(self, ) -> str: ...
|
10962
|
+
@property
|
10963
|
+
def SymbolFilename(self, ) -> str: ...
|
10964
|
+
@property
|
10677
10965
|
def IsBeta(self, ) -> bool: ...
|
10678
10966
|
@property
|
10679
10967
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10776,6 +11064,10 @@ class DeprecatedACVoltageSource:
|
|
10776
11064
|
@property
|
10777
11065
|
def Disabled(self, ) -> bool: ...
|
10778
11066
|
@property
|
11067
|
+
def SymbolFilePath(self, ) -> str: ...
|
11068
|
+
@property
|
11069
|
+
def SymbolFilename(self, ) -> str: ...
|
11070
|
+
@property
|
10779
11071
|
def IsBeta(self, ) -> bool: ...
|
10780
11072
|
@property
|
10781
11073
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10870,6 +11162,10 @@ class Ground:
|
|
10870
11162
|
@property
|
10871
11163
|
def Disabled(self, ) -> bool: ...
|
10872
11164
|
@property
|
11165
|
+
def SymbolFilePath(self, ) -> str: ...
|
11166
|
+
@property
|
11167
|
+
def SymbolFilename(self, ) -> str: ...
|
11168
|
+
@property
|
10873
11169
|
def IsBeta(self, ) -> bool: ...
|
10874
11170
|
@property
|
10875
11171
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -10972,6 +11268,10 @@ class NonLinearCurrentSourceGeneric:
|
|
10972
11268
|
@property
|
10973
11269
|
def Disabled(self, ) -> bool: ...
|
10974
11270
|
@property
|
11271
|
+
def SymbolFilePath(self, ) -> str: ...
|
11272
|
+
@property
|
11273
|
+
def SymbolFilename(self, ) -> str: ...
|
11274
|
+
@property
|
10975
11275
|
def IsBeta(self, ) -> bool: ...
|
10976
11276
|
@property
|
10977
11277
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11074,6 +11374,10 @@ class NonLinearVoltageSourceGeneric:
|
|
11074
11374
|
@property
|
11075
11375
|
def Disabled(self, ) -> bool: ...
|
11076
11376
|
@property
|
11377
|
+
def SymbolFilePath(self, ) -> str: ...
|
11378
|
+
@property
|
11379
|
+
def SymbolFilename(self, ) -> str: ...
|
11380
|
+
@property
|
11077
11381
|
def IsBeta(self, ) -> bool: ...
|
11078
11382
|
@property
|
11079
11383
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11180,6 +11484,10 @@ class NonLinearVoltageSourceProduct:
|
|
11180
11484
|
@property
|
11181
11485
|
def Disabled(self, ) -> bool: ...
|
11182
11486
|
@property
|
11487
|
+
def SymbolFilePath(self, ) -> str: ...
|
11488
|
+
@property
|
11489
|
+
def SymbolFilename(self, ) -> str: ...
|
11490
|
+
@property
|
11183
11491
|
def IsBeta(self, ) -> bool: ...
|
11184
11492
|
@property
|
11185
11493
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11278,6 +11586,10 @@ class PiecewiseLinearCurrentSource:
|
|
11278
11586
|
@property
|
11279
11587
|
def Disabled(self, ) -> bool: ...
|
11280
11588
|
@property
|
11589
|
+
def SymbolFilePath(self, ) -> str: ...
|
11590
|
+
@property
|
11591
|
+
def SymbolFilename(self, ) -> str: ...
|
11592
|
+
@property
|
11281
11593
|
def IsBeta(self, ) -> bool: ...
|
11282
11594
|
@property
|
11283
11595
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11376,6 +11688,10 @@ class PiecewiseLinearVoltageSource:
|
|
11376
11688
|
@property
|
11377
11689
|
def Disabled(self, ) -> bool: ...
|
11378
11690
|
@property
|
11691
|
+
def SymbolFilePath(self, ) -> str: ...
|
11692
|
+
@property
|
11693
|
+
def SymbolFilename(self, ) -> str: ...
|
11694
|
+
@property
|
11379
11695
|
def IsBeta(self, ) -> bool: ...
|
11380
11696
|
@property
|
11381
11697
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11488,6 +11804,10 @@ class PulseCurrentSource:
|
|
11488
11804
|
@property
|
11489
11805
|
def Disabled(self, ) -> bool: ...
|
11490
11806
|
@property
|
11807
|
+
def SymbolFilePath(self, ) -> str: ...
|
11808
|
+
@property
|
11809
|
+
def SymbolFilename(self, ) -> str: ...
|
11810
|
+
@property
|
11491
11811
|
def IsBeta(self, ) -> bool: ...
|
11492
11812
|
@property
|
11493
11813
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11600,6 +11920,10 @@ class PulseVoltageSource:
|
|
11600
11920
|
@property
|
11601
11921
|
def Disabled(self, ) -> bool: ...
|
11602
11922
|
@property
|
11923
|
+
def SymbolFilePath(self, ) -> str: ...
|
11924
|
+
@property
|
11925
|
+
def SymbolFilename(self, ) -> str: ...
|
11926
|
+
@property
|
11603
11927
|
def IsBeta(self, ) -> bool: ...
|
11604
11928
|
@property
|
11605
11929
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11702,6 +12026,10 @@ class StepCurrentSource:
|
|
11702
12026
|
@property
|
11703
12027
|
def Disabled(self, ) -> bool: ...
|
11704
12028
|
@property
|
12029
|
+
def SymbolFilePath(self, ) -> str: ...
|
12030
|
+
@property
|
12031
|
+
def SymbolFilename(self, ) -> str: ...
|
12032
|
+
@property
|
11705
12033
|
def IsBeta(self, ) -> bool: ...
|
11706
12034
|
@property
|
11707
12035
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11804,6 +12132,10 @@ class StepVoltageSource:
|
|
11804
12132
|
@property
|
11805
12133
|
def Disabled(self, ) -> bool: ...
|
11806
12134
|
@property
|
12135
|
+
def SymbolFilePath(self, ) -> str: ...
|
12136
|
+
@property
|
12137
|
+
def SymbolFilename(self, ) -> str: ...
|
12138
|
+
@property
|
11807
12139
|
def IsBeta(self, ) -> bool: ...
|
11808
12140
|
@property
|
11809
12141
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -11906,6 +12238,10 @@ class VariableGainVoltageControlledVoltageSource:
|
|
11906
12238
|
@property
|
11907
12239
|
def Disabled(self, ) -> bool: ...
|
11908
12240
|
@property
|
12241
|
+
def SymbolFilePath(self, ) -> str: ...
|
12242
|
+
@property
|
12243
|
+
def SymbolFilename(self, ) -> str: ...
|
12244
|
+
@property
|
11909
12245
|
def IsBeta(self, ) -> bool: ...
|
11910
12246
|
@property
|
11911
12247
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12008,6 +12344,10 @@ class VoltageControlledCurrentSource:
|
|
12008
12344
|
@property
|
12009
12345
|
def Disabled(self, ) -> bool: ...
|
12010
12346
|
@property
|
12347
|
+
def SymbolFilePath(self, ) -> str: ...
|
12348
|
+
@property
|
12349
|
+
def SymbolFilename(self, ) -> str: ...
|
12350
|
+
@property
|
12011
12351
|
def IsBeta(self, ) -> bool: ...
|
12012
12352
|
@property
|
12013
12353
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12110,6 +12450,10 @@ class VoltageControlledVoltageSource:
|
|
12110
12450
|
@property
|
12111
12451
|
def Disabled(self, ) -> bool: ...
|
12112
12452
|
@property
|
12453
|
+
def SymbolFilePath(self, ) -> str: ...
|
12454
|
+
@property
|
12455
|
+
def SymbolFilename(self, ) -> str: ...
|
12456
|
+
@property
|
12113
12457
|
def IsBeta(self, ) -> bool: ...
|
12114
12458
|
@property
|
12115
12459
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12210,6 +12554,10 @@ class Diode_Deprecated:
|
|
12210
12554
|
@property
|
12211
12555
|
def Disabled(self, ) -> bool: ...
|
12212
12556
|
@property
|
12557
|
+
def SymbolFilePath(self, ) -> str: ...
|
12558
|
+
@property
|
12559
|
+
def SymbolFilename(self, ) -> str: ...
|
12560
|
+
@property
|
12213
12561
|
def IsBeta(self, ) -> bool: ...
|
12214
12562
|
@property
|
12215
12563
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12324,6 +12672,10 @@ class IdealDiode_Deprecated:
|
|
12324
12672
|
@property
|
12325
12673
|
def Disabled(self, ) -> bool: ...
|
12326
12674
|
@property
|
12675
|
+
def SymbolFilePath(self, ) -> str: ...
|
12676
|
+
@property
|
12677
|
+
def SymbolFilename(self, ) -> str: ...
|
12678
|
+
@property
|
12327
12679
|
def IsBeta(self, ) -> bool: ...
|
12328
12680
|
@property
|
12329
12681
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12440,6 +12792,10 @@ class IdealIGBT_Deprecated:
|
|
12440
12792
|
@property
|
12441
12793
|
def Disabled(self, ) -> bool: ...
|
12442
12794
|
@property
|
12795
|
+
def SymbolFilePath(self, ) -> str: ...
|
12796
|
+
@property
|
12797
|
+
def SymbolFilename(self, ) -> str: ...
|
12798
|
+
@property
|
12443
12799
|
def IsBeta(self, ) -> bool: ...
|
12444
12800
|
@property
|
12445
12801
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12554,6 +12910,10 @@ class IdealMOSFET_Deprecated:
|
|
12554
12910
|
@property
|
12555
12911
|
def Disabled(self, ) -> bool: ...
|
12556
12912
|
@property
|
12913
|
+
def SymbolFilePath(self, ) -> str: ...
|
12914
|
+
@property
|
12915
|
+
def SymbolFilename(self, ) -> str: ...
|
12916
|
+
@property
|
12557
12917
|
def IsBeta(self, ) -> bool: ...
|
12558
12918
|
@property
|
12559
12919
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12672,6 +13032,10 @@ class MosfetWithDiode_Deprecated:
|
|
12672
13032
|
@property
|
12673
13033
|
def Disabled(self, ) -> bool: ...
|
12674
13034
|
@property
|
13035
|
+
def SymbolFilePath(self, ) -> str: ...
|
13036
|
+
@property
|
13037
|
+
def SymbolFilename(self, ) -> str: ...
|
13038
|
+
@property
|
12675
13039
|
def IsBeta(self, ) -> bool: ...
|
12676
13040
|
@property
|
12677
13041
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12772,6 +13136,10 @@ class PiecewiseLinearDiode:
|
|
12772
13136
|
@property
|
12773
13137
|
def Disabled(self, ) -> bool: ...
|
12774
13138
|
@property
|
13139
|
+
def SymbolFilePath(self, ) -> str: ...
|
13140
|
+
@property
|
13141
|
+
def SymbolFilename(self, ) -> str: ...
|
13142
|
+
@property
|
12775
13143
|
def IsBeta(self, ) -> bool: ...
|
12776
13144
|
@property
|
12777
13145
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12876,6 +13244,10 @@ class PiecewiseLinearInternalMosfet:
|
|
12876
13244
|
@property
|
12877
13245
|
def Disabled(self, ) -> bool: ...
|
12878
13246
|
@property
|
13247
|
+
def SymbolFilePath(self, ) -> str: ...
|
13248
|
+
@property
|
13249
|
+
def SymbolFilename(self, ) -> str: ...
|
13250
|
+
@property
|
12879
13251
|
def IsBeta(self, ) -> bool: ...
|
12880
13252
|
@property
|
12881
13253
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -12992,6 +13364,10 @@ class PiecewiseLinearMosfet:
|
|
12992
13364
|
@property
|
12993
13365
|
def Disabled(self, ) -> bool: ...
|
12994
13366
|
@property
|
13367
|
+
def SymbolFilePath(self, ) -> str: ...
|
13368
|
+
@property
|
13369
|
+
def SymbolFilename(self, ) -> str: ...
|
13370
|
+
@property
|
12995
13371
|
def IsBeta(self, ) -> bool: ...
|
12996
13372
|
@property
|
12997
13373
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13090,6 +13466,10 @@ class Thyristor_Deprecated:
|
|
13090
13466
|
@property
|
13091
13467
|
def Disabled(self, ) -> bool: ...
|
13092
13468
|
@property
|
13469
|
+
def SymbolFilePath(self, ) -> str: ...
|
13470
|
+
@property
|
13471
|
+
def SymbolFilename(self, ) -> str: ...
|
13472
|
+
@property
|
13093
13473
|
def IsBeta(self, ) -> bool: ...
|
13094
13474
|
@property
|
13095
13475
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13192,6 +13572,10 @@ class DetailedDiode:
|
|
13192
13572
|
@property
|
13193
13573
|
def Disabled(self, ) -> bool: ...
|
13194
13574
|
@property
|
13575
|
+
def SymbolFilePath(self, ) -> str: ...
|
13576
|
+
@property
|
13577
|
+
def SymbolFilename(self, ) -> str: ...
|
13578
|
+
@property
|
13195
13579
|
def IsBeta(self, ) -> bool: ...
|
13196
13580
|
@property
|
13197
13581
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13312,6 +13696,10 @@ class DetailedMOSFETDatasheet:
|
|
13312
13696
|
@property
|
13313
13697
|
def Disabled(self, ) -> bool: ...
|
13314
13698
|
@property
|
13699
|
+
def SymbolFilePath(self, ) -> str: ...
|
13700
|
+
@property
|
13701
|
+
def SymbolFilename(self, ) -> str: ...
|
13702
|
+
@property
|
13315
13703
|
def IsBeta(self, ) -> bool: ...
|
13316
13704
|
@property
|
13317
13705
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13416,6 +13804,10 @@ class DetailedMOSFETSpiceVDMOS:
|
|
13416
13804
|
@property
|
13417
13805
|
def Disabled(self, ) -> bool: ...
|
13418
13806
|
@property
|
13807
|
+
def SymbolFilePath(self, ) -> str: ...
|
13808
|
+
@property
|
13809
|
+
def SymbolFilename(self, ) -> str: ...
|
13810
|
+
@property
|
13419
13811
|
def IsBeta(self, ) -> bool: ...
|
13420
13812
|
@property
|
13421
13813
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13530,6 +13922,10 @@ class IdealDiode:
|
|
13530
13922
|
@property
|
13531
13923
|
def Disabled(self, ) -> bool: ...
|
13532
13924
|
@property
|
13925
|
+
def SymbolFilePath(self, ) -> str: ...
|
13926
|
+
@property
|
13927
|
+
def SymbolFilename(self, ) -> str: ...
|
13928
|
+
@property
|
13533
13929
|
def IsBeta(self, ) -> bool: ...
|
13534
13930
|
@property
|
13535
13931
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13646,6 +14042,10 @@ class IdealIGBT:
|
|
13646
14042
|
@property
|
13647
14043
|
def Disabled(self, ) -> bool: ...
|
13648
14044
|
@property
|
14045
|
+
def SymbolFilePath(self, ) -> str: ...
|
14046
|
+
@property
|
14047
|
+
def SymbolFilename(self, ) -> str: ...
|
14048
|
+
@property
|
13649
14049
|
def IsBeta(self, ) -> bool: ...
|
13650
14050
|
@property
|
13651
14051
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13760,6 +14160,10 @@ class IdealMOSFET:
|
|
13760
14160
|
@property
|
13761
14161
|
def Disabled(self, ) -> bool: ...
|
13762
14162
|
@property
|
14163
|
+
def SymbolFilePath(self, ) -> str: ...
|
14164
|
+
@property
|
14165
|
+
def SymbolFilename(self, ) -> str: ...
|
14166
|
+
@property
|
13763
14167
|
def IsBeta(self, ) -> bool: ...
|
13764
14168
|
@property
|
13765
14169
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13878,6 +14282,10 @@ class IdealMosfetWithDiode:
|
|
13878
14282
|
@property
|
13879
14283
|
def Disabled(self, ) -> bool: ...
|
13880
14284
|
@property
|
14285
|
+
def SymbolFilePath(self, ) -> str: ...
|
14286
|
+
@property
|
14287
|
+
def SymbolFilename(self, ) -> str: ...
|
14288
|
+
@property
|
13881
14289
|
def IsBeta(self, ) -> bool: ...
|
13882
14290
|
@property
|
13883
14291
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -13976,6 +14384,10 @@ class IdealThyristor:
|
|
13976
14384
|
@property
|
13977
14385
|
def Disabled(self, ) -> bool: ...
|
13978
14386
|
@property
|
14387
|
+
def SymbolFilePath(self, ) -> str: ...
|
14388
|
+
@property
|
14389
|
+
def SymbolFilename(self, ) -> str: ...
|
14390
|
+
@property
|
13979
14391
|
def IsBeta(self, ) -> bool: ...
|
13980
14392
|
@property
|
13981
14393
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14074,6 +14486,10 @@ class CurrentMeter:
|
|
14074
14486
|
@property
|
14075
14487
|
def Disabled(self, ) -> bool: ...
|
14076
14488
|
@property
|
14489
|
+
def SymbolFilePath(self, ) -> str: ...
|
14490
|
+
@property
|
14491
|
+
def SymbolFilename(self, ) -> str: ...
|
14492
|
+
@property
|
14077
14493
|
def IsBeta(self, ) -> bool: ...
|
14078
14494
|
@property
|
14079
14495
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14176,6 +14592,10 @@ class CurrentProbe:
|
|
14176
14592
|
@property
|
14177
14593
|
def Disabled(self, ) -> bool: ...
|
14178
14594
|
@property
|
14595
|
+
def SymbolFilePath(self, ) -> str: ...
|
14596
|
+
@property
|
14597
|
+
def SymbolFilename(self, ) -> str: ...
|
14598
|
+
@property
|
14179
14599
|
def IsBeta(self, ) -> bool: ...
|
14180
14600
|
@property
|
14181
14601
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14274,6 +14694,10 @@ class DifferentialVoltageMeter:
|
|
14274
14694
|
@property
|
14275
14695
|
def Disabled(self, ) -> bool: ...
|
14276
14696
|
@property
|
14697
|
+
def SymbolFilePath(self, ) -> str: ...
|
14698
|
+
@property
|
14699
|
+
def SymbolFilename(self, ) -> str: ...
|
14700
|
+
@property
|
14277
14701
|
def IsBeta(self, ) -> bool: ...
|
14278
14702
|
@property
|
14279
14703
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14376,6 +14800,10 @@ class DifferentialVoltageProbe:
|
|
14376
14800
|
@property
|
14377
14801
|
def Disabled(self, ) -> bool: ...
|
14378
14802
|
@property
|
14803
|
+
def SymbolFilePath(self, ) -> str: ...
|
14804
|
+
@property
|
14805
|
+
def SymbolFilename(self, ) -> str: ...
|
14806
|
+
@property
|
14379
14807
|
def IsBeta(self, ) -> bool: ...
|
14380
14808
|
@property
|
14381
14809
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14488,6 +14916,10 @@ class PowerProbe:
|
|
14488
14916
|
@property
|
14489
14917
|
def Disabled(self, ) -> bool: ...
|
14490
14918
|
@property
|
14919
|
+
def SymbolFilePath(self, ) -> str: ...
|
14920
|
+
@property
|
14921
|
+
def SymbolFilename(self, ) -> str: ...
|
14922
|
+
@property
|
14491
14923
|
def IsBeta(self, ) -> bool: ...
|
14492
14924
|
@property
|
14493
14925
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14602,6 +15034,10 @@ class PowerProbe3Phases:
|
|
14602
15034
|
@property
|
14603
15035
|
def Disabled(self, ) -> bool: ...
|
14604
15036
|
@property
|
15037
|
+
def SymbolFilePath(self, ) -> str: ...
|
15038
|
+
@property
|
15039
|
+
def SymbolFilename(self, ) -> str: ...
|
15040
|
+
@property
|
14605
15041
|
def IsBeta(self, ) -> bool: ...
|
14606
15042
|
@property
|
14607
15043
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14698,6 +15134,10 @@ class VoltageMeter:
|
|
14698
15134
|
@property
|
14699
15135
|
def Disabled(self, ) -> bool: ...
|
14700
15136
|
@property
|
15137
|
+
def SymbolFilePath(self, ) -> str: ...
|
15138
|
+
@property
|
15139
|
+
def SymbolFilename(self, ) -> str: ...
|
15140
|
+
@property
|
14701
15141
|
def IsBeta(self, ) -> bool: ...
|
14702
15142
|
@property
|
14703
15143
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14798,6 +15238,10 @@ class VoltageProbe:
|
|
14798
15238
|
@property
|
14799
15239
|
def Disabled(self, ) -> bool: ...
|
14800
15240
|
@property
|
15241
|
+
def SymbolFilePath(self, ) -> str: ...
|
15242
|
+
@property
|
15243
|
+
def SymbolFilename(self, ) -> str: ...
|
15244
|
+
@property
|
14801
15245
|
def IsBeta(self, ) -> bool: ...
|
14802
15246
|
@property
|
14803
15247
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -14922,6 +15366,10 @@ class BLDC:
|
|
14922
15366
|
@property
|
14923
15367
|
def Disabled(self, ) -> bool: ...
|
14924
15368
|
@property
|
15369
|
+
def SymbolFilePath(self, ) -> str: ...
|
15370
|
+
@property
|
15371
|
+
def SymbolFilename(self, ) -> str: ...
|
15372
|
+
@property
|
14925
15373
|
def IsBeta(self, ) -> bool: ...
|
14926
15374
|
@property
|
14927
15375
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15042,6 +15490,10 @@ class IM:
|
|
15042
15490
|
@property
|
15043
15491
|
def Disabled(self, ) -> bool: ...
|
15044
15492
|
@property
|
15493
|
+
def SymbolFilePath(self, ) -> str: ...
|
15494
|
+
@property
|
15495
|
+
def SymbolFilename(self, ) -> str: ...
|
15496
|
+
@property
|
15045
15497
|
def IsBeta(self, ) -> bool: ...
|
15046
15498
|
@property
|
15047
15499
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15206,6 +15658,10 @@ class JmagRT_IM:
|
|
15206
15658
|
@property
|
15207
15659
|
def Disabled(self, ) -> bool: ...
|
15208
15660
|
@property
|
15661
|
+
def SymbolFilePath(self, ) -> str: ...
|
15662
|
+
@property
|
15663
|
+
def SymbolFilename(self, ) -> str: ...
|
15664
|
+
@property
|
15209
15665
|
def IsBeta(self, ) -> bool: ...
|
15210
15666
|
@property
|
15211
15667
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15377,6 +15833,10 @@ class JmagRT_PMSM:
|
|
15377
15833
|
@property
|
15378
15834
|
def Disabled(self, ) -> bool: ...
|
15379
15835
|
@property
|
15836
|
+
def SymbolFilePath(self, ) -> str: ...
|
15837
|
+
@property
|
15838
|
+
def SymbolFilename(self, ) -> str: ...
|
15839
|
+
@property
|
15380
15840
|
def IsBeta(self, ) -> bool: ...
|
15381
15841
|
@property
|
15382
15842
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15532,6 +15992,10 @@ class JmagRT_WFSM:
|
|
15532
15992
|
@property
|
15533
15993
|
def Disabled(self, ) -> bool: ...
|
15534
15994
|
@property
|
15995
|
+
def SymbolFilePath(self, ) -> str: ...
|
15996
|
+
@property
|
15997
|
+
def SymbolFilename(self, ) -> str: ...
|
15998
|
+
@property
|
15535
15999
|
def IsBeta(self, ) -> bool: ...
|
15536
16000
|
@property
|
15537
16001
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15657,6 +16121,10 @@ class PMSM:
|
|
15657
16121
|
@property
|
15658
16122
|
def Disabled(self, ) -> bool: ...
|
15659
16123
|
@property
|
16124
|
+
def SymbolFilePath(self, ) -> str: ...
|
16125
|
+
@property
|
16126
|
+
def SymbolFilename(self, ) -> str: ...
|
16127
|
+
@property
|
15660
16128
|
def IsBeta(self, ) -> bool: ...
|
15661
16129
|
@property
|
15662
16130
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15779,6 +16247,10 @@ class SynRM:
|
|
15779
16247
|
@property
|
15780
16248
|
def Disabled(self, ) -> bool: ...
|
15781
16249
|
@property
|
16250
|
+
def SymbolFilePath(self, ) -> str: ...
|
16251
|
+
@property
|
16252
|
+
def SymbolFilename(self, ) -> str: ...
|
16253
|
+
@property
|
15782
16254
|
def IsBeta(self, ) -> bool: ...
|
15783
16255
|
@property
|
15784
16256
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15879,6 +16351,10 @@ class Capacitor:
|
|
15879
16351
|
@property
|
15880
16352
|
def Disabled(self, ) -> bool: ...
|
15881
16353
|
@property
|
16354
|
+
def SymbolFilePath(self, ) -> str: ...
|
16355
|
+
@property
|
16356
|
+
def SymbolFilename(self, ) -> str: ...
|
16357
|
+
@property
|
15882
16358
|
def IsBeta(self, ) -> bool: ...
|
15883
16359
|
@property
|
15884
16360
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -15977,6 +16453,10 @@ class CommonModeChoke:
|
|
15977
16453
|
@property
|
15978
16454
|
def Disabled(self, ) -> bool: ...
|
15979
16455
|
@property
|
16456
|
+
def SymbolFilePath(self, ) -> str: ...
|
16457
|
+
@property
|
16458
|
+
def SymbolFilename(self, ) -> str: ...
|
16459
|
+
@property
|
15980
16460
|
def IsBeta(self, ) -> bool: ...
|
15981
16461
|
@property
|
15982
16462
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16077,6 +16557,10 @@ class ControlledCapacitor:
|
|
16077
16557
|
@property
|
16078
16558
|
def Disabled(self, ) -> bool: ...
|
16079
16559
|
@property
|
16560
|
+
def SymbolFilePath(self, ) -> str: ...
|
16561
|
+
@property
|
16562
|
+
def SymbolFilename(self, ) -> str: ...
|
16563
|
+
@property
|
16080
16564
|
def IsBeta(self, ) -> bool: ...
|
16081
16565
|
@property
|
16082
16566
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16175,6 +16659,10 @@ class ControlledResistor:
|
|
16175
16659
|
@property
|
16176
16660
|
def Disabled(self, ) -> bool: ...
|
16177
16661
|
@property
|
16662
|
+
def SymbolFilePath(self, ) -> str: ...
|
16663
|
+
@property
|
16664
|
+
def SymbolFilename(self, ) -> str: ...
|
16665
|
+
@property
|
16178
16666
|
def IsBeta(self, ) -> bool: ...
|
16179
16667
|
@property
|
16180
16668
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16273,6 +16761,10 @@ class CoupledInductor:
|
|
16273
16761
|
@property
|
16274
16762
|
def Disabled(self, ) -> bool: ...
|
16275
16763
|
@property
|
16764
|
+
def SymbolFilePath(self, ) -> str: ...
|
16765
|
+
@property
|
16766
|
+
def SymbolFilename(self, ) -> str: ...
|
16767
|
+
@property
|
16276
16768
|
def IsBeta(self, ) -> bool: ...
|
16277
16769
|
@property
|
16278
16770
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16374,6 +16866,10 @@ class Inductor:
|
|
16374
16866
|
@property
|
16375
16867
|
def Disabled(self, ) -> bool: ...
|
16376
16868
|
@property
|
16869
|
+
def SymbolFilePath(self, ) -> str: ...
|
16870
|
+
@property
|
16871
|
+
def SymbolFilename(self, ) -> str: ...
|
16872
|
+
@property
|
16377
16873
|
def IsBeta(self, ) -> bool: ...
|
16378
16874
|
@property
|
16379
16875
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16472,6 +16968,10 @@ class PieceWiseLinearResistor:
|
|
16472
16968
|
@property
|
16473
16969
|
def Disabled(self, ) -> bool: ...
|
16474
16970
|
@property
|
16971
|
+
def SymbolFilePath(self, ) -> str: ...
|
16972
|
+
@property
|
16973
|
+
def SymbolFilename(self, ) -> str: ...
|
16974
|
+
@property
|
16475
16975
|
def IsBeta(self, ) -> bool: ...
|
16476
16976
|
@property
|
16477
16977
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16570,6 +17070,10 @@ class Resistor:
|
|
16570
17070
|
@property
|
16571
17071
|
def Disabled(self, ) -> bool: ...
|
16572
17072
|
@property
|
17073
|
+
def SymbolFilePath(self, ) -> str: ...
|
17074
|
+
@property
|
17075
|
+
def SymbolFilename(self, ) -> str: ...
|
17076
|
+
@property
|
16573
17077
|
def IsBeta(self, ) -> bool: ...
|
16574
17078
|
@property
|
16575
17079
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16672,6 +17176,10 @@ class ResistorWithLosses:
|
|
16672
17176
|
@property
|
16673
17177
|
def Disabled(self, ) -> bool: ...
|
16674
17178
|
@property
|
17179
|
+
def SymbolFilePath(self, ) -> str: ...
|
17180
|
+
@property
|
17181
|
+
def SymbolFilename(self, ) -> str: ...
|
17182
|
+
@property
|
16675
17183
|
def IsBeta(self, ) -> bool: ...
|
16676
17184
|
@property
|
16677
17185
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16772,6 +17280,10 @@ class SaturableCapacitor:
|
|
16772
17280
|
@property
|
16773
17281
|
def Disabled(self, ) -> bool: ...
|
16774
17282
|
@property
|
17283
|
+
def SymbolFilePath(self, ) -> str: ...
|
17284
|
+
@property
|
17285
|
+
def SymbolFilename(self, ) -> str: ...
|
17286
|
+
@property
|
16775
17287
|
def IsBeta(self, ) -> bool: ...
|
16776
17288
|
@property
|
16777
17289
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16872,6 +17384,10 @@ class SaturableInductor:
|
|
16872
17384
|
@property
|
16873
17385
|
def Disabled(self, ) -> bool: ...
|
16874
17386
|
@property
|
17387
|
+
def SymbolFilePath(self, ) -> str: ...
|
17388
|
+
@property
|
17389
|
+
def SymbolFilename(self, ) -> str: ...
|
17390
|
+
@property
|
16875
17391
|
def IsBeta(self, ) -> bool: ...
|
16876
17392
|
@property
|
16877
17393
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -16978,6 +17494,10 @@ class ABC2AlphaBetaGamma:
|
|
16978
17494
|
@property
|
16979
17495
|
def Disabled(self, ) -> bool: ...
|
16980
17496
|
@property
|
17497
|
+
def SymbolFilePath(self, ) -> str: ...
|
17498
|
+
@property
|
17499
|
+
def SymbolFilename(self, ) -> str: ...
|
17500
|
+
@property
|
16981
17501
|
def IsBeta(self, ) -> bool: ...
|
16982
17502
|
@property
|
16983
17503
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17086,6 +17606,10 @@ class ABC2DQ0:
|
|
17086
17606
|
@property
|
17087
17607
|
def Disabled(self, ) -> bool: ...
|
17088
17608
|
@property
|
17609
|
+
def SymbolFilePath(self, ) -> str: ...
|
17610
|
+
@property
|
17611
|
+
def SymbolFilename(self, ) -> str: ...
|
17612
|
+
@property
|
17089
17613
|
def IsBeta(self, ) -> bool: ...
|
17090
17614
|
@property
|
17091
17615
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17192,6 +17716,10 @@ class AlphaBetaGamma2ABC:
|
|
17192
17716
|
@property
|
17193
17717
|
def Disabled(self, ) -> bool: ...
|
17194
17718
|
@property
|
17719
|
+
def SymbolFilePath(self, ) -> str: ...
|
17720
|
+
@property
|
17721
|
+
def SymbolFilename(self, ) -> str: ...
|
17722
|
+
@property
|
17195
17723
|
def IsBeta(self, ) -> bool: ...
|
17196
17724
|
@property
|
17197
17725
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17300,6 +17828,10 @@ class AlphaBetaGamma2DQ0:
|
|
17300
17828
|
@property
|
17301
17829
|
def Disabled(self, ) -> bool: ...
|
17302
17830
|
@property
|
17831
|
+
def SymbolFilePath(self, ) -> str: ...
|
17832
|
+
@property
|
17833
|
+
def SymbolFilename(self, ) -> str: ...
|
17834
|
+
@property
|
17303
17835
|
def IsBeta(self, ) -> bool: ...
|
17304
17836
|
@property
|
17305
17837
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17408,6 +17940,10 @@ class DQ02ABC:
|
|
17408
17940
|
@property
|
17409
17941
|
def Disabled(self, ) -> bool: ...
|
17410
17942
|
@property
|
17943
|
+
def SymbolFilePath(self, ) -> str: ...
|
17944
|
+
@property
|
17945
|
+
def SymbolFilename(self, ) -> str: ...
|
17946
|
+
@property
|
17411
17947
|
def IsBeta(self, ) -> bool: ...
|
17412
17948
|
@property
|
17413
17949
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17516,6 +18052,10 @@ class DQ02AlphaBetaGamma:
|
|
17516
18052
|
@property
|
17517
18053
|
def Disabled(self, ) -> bool: ...
|
17518
18054
|
@property
|
18055
|
+
def SymbolFilePath(self, ) -> str: ...
|
18056
|
+
@property
|
18057
|
+
def SymbolFilename(self, ) -> str: ...
|
18058
|
+
@property
|
17519
18059
|
def IsBeta(self, ) -> bool: ...
|
17520
18060
|
@property
|
17521
18061
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17624,6 +18164,10 @@ class InvPark:
|
|
17624
18164
|
@property
|
17625
18165
|
def Disabled(self, ) -> bool: ...
|
17626
18166
|
@property
|
18167
|
+
def SymbolFilePath(self, ) -> str: ...
|
18168
|
+
@property
|
18169
|
+
def SymbolFilename(self, ) -> str: ...
|
18170
|
+
@property
|
17627
18171
|
def IsBeta(self, ) -> bool: ...
|
17628
18172
|
@property
|
17629
18173
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17732,6 +18276,10 @@ class Park:
|
|
17732
18276
|
@property
|
17733
18277
|
def Disabled(self, ) -> bool: ...
|
17734
18278
|
@property
|
18279
|
+
def SymbolFilePath(self, ) -> str: ...
|
18280
|
+
@property
|
18281
|
+
def SymbolFilename(self, ) -> str: ...
|
18282
|
+
@property
|
17735
18283
|
def IsBeta(self, ) -> bool: ...
|
17736
18284
|
@property
|
17737
18285
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17832,6 +18380,10 @@ class LookupTable1D:
|
|
17832
18380
|
@property
|
17833
18381
|
def Disabled(self, ) -> bool: ...
|
17834
18382
|
@property
|
18383
|
+
def SymbolFilePath(self, ) -> str: ...
|
18384
|
+
@property
|
18385
|
+
def SymbolFilename(self, ) -> str: ...
|
18386
|
+
@property
|
17835
18387
|
def IsBeta(self, ) -> bool: ...
|
17836
18388
|
@property
|
17837
18389
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -17938,6 +18490,10 @@ class LookupTable2D:
|
|
17938
18490
|
@property
|
17939
18491
|
def Disabled(self, ) -> bool: ...
|
17940
18492
|
@property
|
18493
|
+
def SymbolFilePath(self, ) -> str: ...
|
18494
|
+
@property
|
18495
|
+
def SymbolFilename(self, ) -> str: ...
|
18496
|
+
@property
|
17941
18497
|
def IsBeta(self, ) -> bool: ...
|
17942
18498
|
@property
|
17943
18499
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18034,6 +18590,10 @@ class ACSweepPerturbation:
|
|
18034
18590
|
@property
|
18035
18591
|
def Disabled(self, ) -> bool: ...
|
18036
18592
|
@property
|
18593
|
+
def SymbolFilePath(self, ) -> str: ...
|
18594
|
+
@property
|
18595
|
+
def SymbolFilename(self, ) -> str: ...
|
18596
|
+
@property
|
18037
18597
|
def IsBeta(self, ) -> bool: ...
|
18038
18598
|
@property
|
18039
18599
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18132,6 +18692,10 @@ class Constant:
|
|
18132
18692
|
@property
|
18133
18693
|
def Disabled(self, ) -> bool: ...
|
18134
18694
|
@property
|
18695
|
+
def SymbolFilePath(self, ) -> str: ...
|
18696
|
+
@property
|
18697
|
+
def SymbolFilename(self, ) -> str: ...
|
18698
|
+
@property
|
18135
18699
|
def IsBeta(self, ) -> bool: ...
|
18136
18700
|
@property
|
18137
18701
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18240,6 +18804,10 @@ class ControlledPWMGenerator:
|
|
18240
18804
|
@property
|
18241
18805
|
def Disabled(self, ) -> bool: ...
|
18242
18806
|
@property
|
18807
|
+
def SymbolFilePath(self, ) -> str: ...
|
18808
|
+
@property
|
18809
|
+
def SymbolFilename(self, ) -> str: ...
|
18810
|
+
@property
|
18243
18811
|
def IsBeta(self, ) -> bool: ...
|
18244
18812
|
@property
|
18245
18813
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18342,6 +18910,10 @@ class ControlledSawtoothWaveGenerator:
|
|
18342
18910
|
@property
|
18343
18911
|
def Disabled(self, ) -> bool: ...
|
18344
18912
|
@property
|
18913
|
+
def SymbolFilePath(self, ) -> str: ...
|
18914
|
+
@property
|
18915
|
+
def SymbolFilename(self, ) -> str: ...
|
18916
|
+
@property
|
18345
18917
|
def IsBeta(self, ) -> bool: ...
|
18346
18918
|
@property
|
18347
18919
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18444,6 +19016,10 @@ class ControlledTriangularWaveGenerator:
|
|
18444
19016
|
@property
|
18445
19017
|
def Disabled(self, ) -> bool: ...
|
18446
19018
|
@property
|
19019
|
+
def SymbolFilePath(self, ) -> str: ...
|
19020
|
+
@property
|
19021
|
+
def SymbolFilename(self, ) -> str: ...
|
19022
|
+
@property
|
18447
19023
|
def IsBeta(self, ) -> bool: ...
|
18448
19024
|
@property
|
18449
19025
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18542,6 +19118,10 @@ class PiecewiseLinear:
|
|
18542
19118
|
@property
|
18543
19119
|
def Disabled(self, ) -> bool: ...
|
18544
19120
|
@property
|
19121
|
+
def SymbolFilePath(self, ) -> str: ...
|
19122
|
+
@property
|
19123
|
+
def SymbolFilename(self, ) -> str: ...
|
19124
|
+
@property
|
18545
19125
|
def IsBeta(self, ) -> bool: ...
|
18546
19126
|
@property
|
18547
19127
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18646,6 +19226,10 @@ class SawtoothWave:
|
|
18646
19226
|
@property
|
18647
19227
|
def Disabled(self, ) -> bool: ...
|
18648
19228
|
@property
|
19229
|
+
def SymbolFilePath(self, ) -> str: ...
|
19230
|
+
@property
|
19231
|
+
def SymbolFilename(self, ) -> str: ...
|
19232
|
+
@property
|
18649
19233
|
def IsBeta(self, ) -> bool: ...
|
18650
19234
|
@property
|
18651
19235
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18750,6 +19334,10 @@ class SinusoidalWave:
|
|
18750
19334
|
@property
|
18751
19335
|
def Disabled(self, ) -> bool: ...
|
18752
19336
|
@property
|
19337
|
+
def SymbolFilePath(self, ) -> str: ...
|
19338
|
+
@property
|
19339
|
+
def SymbolFilename(self, ) -> str: ...
|
19340
|
+
@property
|
18753
19341
|
def IsBeta(self, ) -> bool: ...
|
18754
19342
|
@property
|
18755
19343
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18854,6 +19442,10 @@ class SquareWave:
|
|
18854
19442
|
@property
|
18855
19443
|
def Disabled(self, ) -> bool: ...
|
18856
19444
|
@property
|
19445
|
+
def SymbolFilePath(self, ) -> str: ...
|
19446
|
+
@property
|
19447
|
+
def SymbolFilename(self, ) -> str: ...
|
19448
|
+
@property
|
18857
19449
|
def IsBeta(self, ) -> bool: ...
|
18858
19450
|
@property
|
18859
19451
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -18960,6 +19552,10 @@ class SquareWave2:
|
|
18960
19552
|
@property
|
18961
19553
|
def Disabled(self, ) -> bool: ...
|
18962
19554
|
@property
|
19555
|
+
def SymbolFilePath(self, ) -> str: ...
|
19556
|
+
@property
|
19557
|
+
def SymbolFilename(self, ) -> str: ...
|
19558
|
+
@property
|
18963
19559
|
def IsBeta(self, ) -> bool: ...
|
18964
19560
|
@property
|
18965
19561
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19062,6 +19658,10 @@ class Step:
|
|
19062
19658
|
@property
|
19063
19659
|
def Disabled(self, ) -> bool: ...
|
19064
19660
|
@property
|
19661
|
+
def SymbolFilePath(self, ) -> str: ...
|
19662
|
+
@property
|
19663
|
+
def SymbolFilename(self, ) -> str: ...
|
19664
|
+
@property
|
19065
19665
|
def IsBeta(self, ) -> bool: ...
|
19066
19666
|
@property
|
19067
19667
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19166,6 +19766,10 @@ class TriangularWave:
|
|
19166
19766
|
@property
|
19167
19767
|
def Disabled(self, ) -> bool: ...
|
19168
19768
|
@property
|
19769
|
+
def SymbolFilePath(self, ) -> str: ...
|
19770
|
+
@property
|
19771
|
+
def SymbolFilename(self, ) -> str: ...
|
19772
|
+
@property
|
19169
19773
|
def IsBeta(self, ) -> bool: ...
|
19170
19774
|
@property
|
19171
19775
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19272,6 +19876,10 @@ class TriangularWave2:
|
|
19272
19876
|
@property
|
19273
19877
|
def Disabled(self, ) -> bool: ...
|
19274
19878
|
@property
|
19879
|
+
def SymbolFilePath(self, ) -> str: ...
|
19880
|
+
@property
|
19881
|
+
def SymbolFilename(self, ) -> str: ...
|
19882
|
+
@property
|
19275
19883
|
def IsBeta(self, ) -> bool: ...
|
19276
19884
|
@property
|
19277
19885
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19370,6 +19978,10 @@ class AbsoluteValue:
|
|
19370
19978
|
@property
|
19371
19979
|
def Disabled(self, ) -> bool: ...
|
19372
19980
|
@property
|
19981
|
+
def SymbolFilePath(self, ) -> str: ...
|
19982
|
+
@property
|
19983
|
+
def SymbolFilename(self, ) -> str: ...
|
19984
|
+
@property
|
19373
19985
|
def IsBeta(self, ) -> bool: ...
|
19374
19986
|
@property
|
19375
19987
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19472,6 +20084,10 @@ class Average:
|
|
19472
20084
|
@property
|
19473
20085
|
def Disabled(self, ) -> bool: ...
|
19474
20086
|
@property
|
20087
|
+
def SymbolFilePath(self, ) -> str: ...
|
20088
|
+
@property
|
20089
|
+
def SymbolFilename(self, ) -> str: ...
|
20090
|
+
@property
|
19475
20091
|
def IsBeta(self, ) -> bool: ...
|
19476
20092
|
@property
|
19477
20093
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19572,6 +20188,10 @@ class Comparator:
|
|
19572
20188
|
@property
|
19573
20189
|
def Disabled(self, ) -> bool: ...
|
19574
20190
|
@property
|
20191
|
+
def SymbolFilePath(self, ) -> str: ...
|
20192
|
+
@property
|
20193
|
+
def SymbolFilename(self, ) -> str: ...
|
20194
|
+
@property
|
19575
20195
|
def IsBeta(self, ) -> bool: ...
|
19576
20196
|
@property
|
19577
20197
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19674,6 +20294,10 @@ class ComparatorWithHysteresis:
|
|
19674
20294
|
@property
|
19675
20295
|
def Disabled(self, ) -> bool: ...
|
19676
20296
|
@property
|
20297
|
+
def SymbolFilePath(self, ) -> str: ...
|
20298
|
+
@property
|
20299
|
+
def SymbolFilename(self, ) -> str: ...
|
20300
|
+
@property
|
19677
20301
|
def IsBeta(self, ) -> bool: ...
|
19678
20302
|
@property
|
19679
20303
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19772,6 +20396,10 @@ class Cosine:
|
|
19772
20396
|
@property
|
19773
20397
|
def Disabled(self, ) -> bool: ...
|
19774
20398
|
@property
|
20399
|
+
def SymbolFilePath(self, ) -> str: ...
|
20400
|
+
@property
|
20401
|
+
def SymbolFilename(self, ) -> str: ...
|
20402
|
+
@property
|
19775
20403
|
def IsBeta(self, ) -> bool: ...
|
19776
20404
|
@property
|
19777
20405
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19870,6 +20498,10 @@ class Cos:
|
|
19870
20498
|
@property
|
19871
20499
|
def Disabled(self, ) -> bool: ...
|
19872
20500
|
@property
|
20501
|
+
def SymbolFilePath(self, ) -> str: ...
|
20502
|
+
@property
|
20503
|
+
def SymbolFilename(self, ) -> str: ...
|
20504
|
+
@property
|
19873
20505
|
def IsBeta(self, ) -> bool: ...
|
19874
20506
|
@property
|
19875
20507
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -19970,6 +20602,10 @@ class Division:
|
|
19970
20602
|
@property
|
19971
20603
|
def Disabled(self, ) -> bool: ...
|
19972
20604
|
@property
|
20605
|
+
def SymbolFilePath(self, ) -> str: ...
|
20606
|
+
@property
|
20607
|
+
def SymbolFilename(self, ) -> str: ...
|
20608
|
+
@property
|
19973
20609
|
def IsBeta(self, ) -> bool: ...
|
19974
20610
|
@property
|
19975
20611
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20070,6 +20706,10 @@ class Gain:
|
|
20070
20706
|
@property
|
20071
20707
|
def Disabled(self, ) -> bool: ...
|
20072
20708
|
@property
|
20709
|
+
def SymbolFilePath(self, ) -> str: ...
|
20710
|
+
@property
|
20711
|
+
def SymbolFilename(self, ) -> str: ...
|
20712
|
+
@property
|
20073
20713
|
def IsBeta(self, ) -> bool: ...
|
20074
20714
|
@property
|
20075
20715
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20172,6 +20812,10 @@ class Limiter:
|
|
20172
20812
|
@property
|
20173
20813
|
def Disabled(self, ) -> bool: ...
|
20174
20814
|
@property
|
20815
|
+
def SymbolFilePath(self, ) -> str: ...
|
20816
|
+
@property
|
20817
|
+
def SymbolFilename(self, ) -> str: ...
|
20818
|
+
@property
|
20175
20819
|
def IsBeta(self, ) -> bool: ...
|
20176
20820
|
@property
|
20177
20821
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20272,6 +20916,10 @@ class Modulo:
|
|
20272
20916
|
@property
|
20273
20917
|
def Disabled(self, ) -> bool: ...
|
20274
20918
|
@property
|
20919
|
+
def SymbolFilePath(self, ) -> str: ...
|
20920
|
+
@property
|
20921
|
+
def SymbolFilename(self, ) -> str: ...
|
20922
|
+
@property
|
20275
20923
|
def IsBeta(self, ) -> bool: ...
|
20276
20924
|
@property
|
20277
20925
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20372,6 +21020,10 @@ class Product:
|
|
20372
21020
|
@property
|
20373
21021
|
def Disabled(self, ) -> bool: ...
|
20374
21022
|
@property
|
21023
|
+
def SymbolFilePath(self, ) -> str: ...
|
21024
|
+
@property
|
21025
|
+
def SymbolFilename(self, ) -> str: ...
|
21026
|
+
@property
|
20375
21027
|
def IsBeta(self, ) -> bool: ...
|
20376
21028
|
@property
|
20377
21029
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20474,6 +21126,10 @@ class RangeLimiter:
|
|
20474
21126
|
@property
|
20475
21127
|
def Disabled(self, ) -> bool: ...
|
20476
21128
|
@property
|
21129
|
+
def SymbolFilePath(self, ) -> str: ...
|
21130
|
+
@property
|
21131
|
+
def SymbolFilename(self, ) -> str: ...
|
21132
|
+
@property
|
20477
21133
|
def IsBeta(self, ) -> bool: ...
|
20478
21134
|
@property
|
20479
21135
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20574,6 +21230,10 @@ class RootMeanSquare:
|
|
20574
21230
|
@property
|
20575
21231
|
def Disabled(self, ) -> bool: ...
|
20576
21232
|
@property
|
21233
|
+
def SymbolFilePath(self, ) -> str: ...
|
21234
|
+
@property
|
21235
|
+
def SymbolFilename(self, ) -> str: ...
|
21236
|
+
@property
|
20577
21237
|
def IsBeta(self, ) -> bool: ...
|
20578
21238
|
@property
|
20579
21239
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20672,6 +21332,10 @@ class Sine:
|
|
20672
21332
|
@property
|
20673
21333
|
def Disabled(self, ) -> bool: ...
|
20674
21334
|
@property
|
21335
|
+
def SymbolFilePath(self, ) -> str: ...
|
21336
|
+
@property
|
21337
|
+
def SymbolFilename(self, ) -> str: ...
|
21338
|
+
@property
|
20675
21339
|
def IsBeta(self, ) -> bool: ...
|
20676
21340
|
@property
|
20677
21341
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20770,6 +21434,10 @@ class Sinus:
|
|
20770
21434
|
@property
|
20771
21435
|
def Disabled(self, ) -> bool: ...
|
20772
21436
|
@property
|
21437
|
+
def SymbolFilePath(self, ) -> str: ...
|
21438
|
+
@property
|
21439
|
+
def SymbolFilename(self, ) -> str: ...
|
21440
|
+
@property
|
20773
21441
|
def IsBeta(self, ) -> bool: ...
|
20774
21442
|
@property
|
20775
21443
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20868,6 +21536,10 @@ class SquareRoot:
|
|
20868
21536
|
@property
|
20869
21537
|
def Disabled(self, ) -> bool: ...
|
20870
21538
|
@property
|
21539
|
+
def SymbolFilePath(self, ) -> str: ...
|
21540
|
+
@property
|
21541
|
+
def SymbolFilename(self, ) -> str: ...
|
21542
|
+
@property
|
20871
21543
|
def IsBeta(self, ) -> bool: ...
|
20872
21544
|
@property
|
20873
21545
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -20972,6 +21644,10 @@ class Sum:
|
|
20972
21644
|
@property
|
20973
21645
|
def Disabled(self, ) -> bool: ...
|
20974
21646
|
@property
|
21647
|
+
def SymbolFilePath(self, ) -> str: ...
|
21648
|
+
@property
|
21649
|
+
def SymbolFilename(self, ) -> str: ...
|
21650
|
+
@property
|
20975
21651
|
def IsBeta(self, ) -> bool: ...
|
20976
21652
|
@property
|
20977
21653
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21071,6 +21747,10 @@ class Tangent:
|
|
21071
21747
|
@property
|
21072
21748
|
def Disabled(self, ) -> bool: ...
|
21073
21749
|
@property
|
21750
|
+
def SymbolFilePath(self, ) -> str: ...
|
21751
|
+
@property
|
21752
|
+
def SymbolFilename(self, ) -> str: ...
|
21753
|
+
@property
|
21074
21754
|
def IsBeta(self, ) -> bool: ...
|
21075
21755
|
@property
|
21076
21756
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21173,6 +21853,10 @@ class UserDefinedExpression:
|
|
21173
21853
|
@property
|
21174
21854
|
def Disabled(self, ) -> bool: ...
|
21175
21855
|
@property
|
21856
|
+
def SymbolFilePath(self, ) -> str: ...
|
21857
|
+
@property
|
21858
|
+
def SymbolFilename(self, ) -> str: ...
|
21859
|
+
@property
|
21176
21860
|
def IsBeta(self, ) -> bool: ...
|
21177
21861
|
@property
|
21178
21862
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21278,6 +21962,10 @@ class Monostable:
|
|
21278
21962
|
@property
|
21279
21963
|
def Disabled(self, ) -> bool: ...
|
21280
21964
|
@property
|
21965
|
+
def SymbolFilePath(self, ) -> str: ...
|
21966
|
+
@property
|
21967
|
+
def SymbolFilename(self, ) -> str: ...
|
21968
|
+
@property
|
21281
21969
|
def IsBeta(self, ) -> bool: ...
|
21282
21970
|
@property
|
21283
21971
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21378,6 +22066,10 @@ class AndGate:
|
|
21378
22066
|
@property
|
21379
22067
|
def Disabled(self, ) -> bool: ...
|
21380
22068
|
@property
|
22069
|
+
def SymbolFilePath(self, ) -> str: ...
|
22070
|
+
@property
|
22071
|
+
def SymbolFilename(self, ) -> str: ...
|
22072
|
+
@property
|
21381
22073
|
def IsBeta(self, ) -> bool: ...
|
21382
22074
|
@property
|
21383
22075
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21482,6 +22174,10 @@ class JKFlipFlop:
|
|
21482
22174
|
@property
|
21483
22175
|
def Disabled(self, ) -> bool: ...
|
21484
22176
|
@property
|
22177
|
+
def SymbolFilePath(self, ) -> str: ...
|
22178
|
+
@property
|
22179
|
+
def SymbolFilename(self, ) -> str: ...
|
22180
|
+
@property
|
21485
22181
|
def IsBeta(self, ) -> bool: ...
|
21486
22182
|
@property
|
21487
22183
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21580,6 +22276,10 @@ class NotGate:
|
|
21580
22276
|
@property
|
21581
22277
|
def Disabled(self, ) -> bool: ...
|
21582
22278
|
@property
|
22279
|
+
def SymbolFilePath(self, ) -> str: ...
|
22280
|
+
@property
|
22281
|
+
def SymbolFilename(self, ) -> str: ...
|
22282
|
+
@property
|
21583
22283
|
def IsBeta(self, ) -> bool: ...
|
21584
22284
|
@property
|
21585
22285
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21680,6 +22380,10 @@ class OrGate:
|
|
21680
22380
|
@property
|
21681
22381
|
def Disabled(self, ) -> bool: ...
|
21682
22382
|
@property
|
22383
|
+
def SymbolFilePath(self, ) -> str: ...
|
22384
|
+
@property
|
22385
|
+
def SymbolFilename(self, ) -> str: ...
|
22386
|
+
@property
|
21683
22387
|
def IsBeta(self, ) -> bool: ...
|
21684
22388
|
@property
|
21685
22389
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21784,6 +22488,10 @@ class SignalSelector:
|
|
21784
22488
|
@property
|
21785
22489
|
def Disabled(self, ) -> bool: ...
|
21786
22490
|
@property
|
22491
|
+
def SymbolFilePath(self, ) -> str: ...
|
22492
|
+
@property
|
22493
|
+
def SymbolFilename(self, ) -> str: ...
|
22494
|
+
@property
|
21787
22495
|
def IsBeta(self, ) -> bool: ...
|
21788
22496
|
@property
|
21789
22497
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21887,6 +22595,10 @@ class SRFlipFlop:
|
|
21887
22595
|
@property
|
21888
22596
|
def Disabled(self, ) -> bool: ...
|
21889
22597
|
@property
|
22598
|
+
def SymbolFilePath(self, ) -> str: ...
|
22599
|
+
@property
|
22600
|
+
def SymbolFilename(self, ) -> str: ...
|
22601
|
+
@property
|
21890
22602
|
def IsBeta(self, ) -> bool: ...
|
21891
22603
|
@property
|
21892
22604
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -21987,6 +22699,10 @@ class XorGate:
|
|
21987
22699
|
@property
|
21988
22700
|
def Disabled(self, ) -> bool: ...
|
21989
22701
|
@property
|
22702
|
+
def SymbolFilePath(self, ) -> str: ...
|
22703
|
+
@property
|
22704
|
+
def SymbolFilename(self, ) -> str: ...
|
22705
|
+
@property
|
21990
22706
|
def IsBeta(self, ) -> bool: ...
|
21991
22707
|
@property
|
21992
22708
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22089,6 +22805,10 @@ class DeadTime:
|
|
22089
22805
|
@property
|
22090
22806
|
def Disabled(self, ) -> bool: ...
|
22091
22807
|
@property
|
22808
|
+
def SymbolFilePath(self, ) -> str: ...
|
22809
|
+
@property
|
22810
|
+
def SymbolFilename(self, ) -> str: ...
|
22811
|
+
@property
|
22092
22812
|
def IsBeta(self, ) -> bool: ...
|
22093
22813
|
@property
|
22094
22814
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22189,6 +22909,10 @@ class Delay:
|
|
22189
22909
|
@property
|
22190
22910
|
def Disabled(self, ) -> bool: ...
|
22191
22911
|
@property
|
22912
|
+
def SymbolFilePath(self, ) -> str: ...
|
22913
|
+
@property
|
22914
|
+
def SymbolFilename(self, ) -> str: ...
|
22915
|
+
@property
|
22192
22916
|
def IsBeta(self, ) -> bool: ...
|
22193
22917
|
@property
|
22194
22918
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22295,6 +23019,10 @@ class DigitalIntegrator:
|
|
22295
23019
|
@property
|
22296
23020
|
def Disabled(self, ) -> bool: ...
|
22297
23021
|
@property
|
23022
|
+
def SymbolFilePath(self, ) -> str: ...
|
23023
|
+
@property
|
23024
|
+
def SymbolFilename(self, ) -> str: ...
|
23025
|
+
@property
|
22298
23026
|
def IsBeta(self, ) -> bool: ...
|
22299
23027
|
@property
|
22300
23028
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22397,6 +23125,10 @@ class DiscreteTransferFunction:
|
|
22397
23125
|
@property
|
22398
23126
|
def Disabled(self, ) -> bool: ...
|
22399
23127
|
@property
|
23128
|
+
def SymbolFilePath(self, ) -> str: ...
|
23129
|
+
@property
|
23130
|
+
def SymbolFilename(self, ) -> str: ...
|
23131
|
+
@property
|
22400
23132
|
def IsBeta(self, ) -> bool: ...
|
22401
23133
|
@property
|
22402
23134
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22501,6 +23233,10 @@ class InternalResettableDigitalIntegrator:
|
|
22501
23233
|
@property
|
22502
23234
|
def Disabled(self, ) -> bool: ...
|
22503
23235
|
@property
|
23236
|
+
def SymbolFilePath(self, ) -> str: ...
|
23237
|
+
@property
|
23238
|
+
def SymbolFilename(self, ) -> str: ...
|
23239
|
+
@property
|
22504
23240
|
def IsBeta(self, ) -> bool: ...
|
22505
23241
|
@property
|
22506
23242
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22601,6 +23337,10 @@ class Memory:
|
|
22601
23337
|
@property
|
22602
23338
|
def Disabled(self, ) -> bool: ...
|
22603
23339
|
@property
|
23340
|
+
def SymbolFilePath(self, ) -> str: ...
|
23341
|
+
@property
|
23342
|
+
def SymbolFilename(self, ) -> str: ...
|
23343
|
+
@property
|
22604
23344
|
def IsBeta(self, ) -> bool: ...
|
22605
23345
|
@property
|
22606
23346
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22709,6 +23449,10 @@ class Relay:
|
|
22709
23449
|
@property
|
22710
23450
|
def Disabled(self, ) -> bool: ...
|
22711
23451
|
@property
|
23452
|
+
def SymbolFilePath(self, ) -> str: ...
|
23453
|
+
@property
|
23454
|
+
def SymbolFilename(self, ) -> str: ...
|
23455
|
+
@property
|
22712
23456
|
def IsBeta(self, ) -> bool: ...
|
22713
23457
|
@property
|
22714
23458
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22809,6 +23553,10 @@ class THD:
|
|
22809
23553
|
@property
|
22810
23554
|
def Disabled(self, ) -> bool: ...
|
22811
23555
|
@property
|
23556
|
+
def SymbolFilePath(self, ) -> str: ...
|
23557
|
+
@property
|
23558
|
+
def SymbolFilename(self, ) -> str: ...
|
23559
|
+
@property
|
22812
23560
|
def IsBeta(self, ) -> bool: ...
|
22813
23561
|
@property
|
22814
23562
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -22907,6 +23655,10 @@ class ZeroCrossingDetector:
|
|
22907
23655
|
@property
|
22908
23656
|
def Disabled(self, ) -> bool: ...
|
22909
23657
|
@property
|
23658
|
+
def SymbolFilePath(self, ) -> str: ...
|
23659
|
+
@property
|
23660
|
+
def SymbolFilename(self, ) -> str: ...
|
23661
|
+
@property
|
22910
23662
|
def IsBeta(self, ) -> bool: ...
|
22911
23663
|
@property
|
22912
23664
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23005,6 +23757,10 @@ class ZeroOrderHold:
|
|
23005
23757
|
@property
|
23006
23758
|
def Disabled(self, ) -> bool: ...
|
23007
23759
|
@property
|
23760
|
+
def SymbolFilePath(self, ) -> str: ...
|
23761
|
+
@property
|
23762
|
+
def SymbolFilename(self, ) -> str: ...
|
23763
|
+
@property
|
23008
23764
|
def IsBeta(self, ) -> bool: ...
|
23009
23765
|
@property
|
23010
23766
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23107,6 +23863,10 @@ class FirstOrderTransferFunction:
|
|
23107
23863
|
@property
|
23108
23864
|
def Disabled(self, ) -> bool: ...
|
23109
23865
|
@property
|
23866
|
+
def SymbolFilePath(self, ) -> str: ...
|
23867
|
+
@property
|
23868
|
+
def SymbolFilename(self, ) -> str: ...
|
23869
|
+
@property
|
23110
23870
|
def IsBeta(self, ) -> bool: ...
|
23111
23871
|
@property
|
23112
23872
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23209,6 +23969,10 @@ class GenericTransferFunction:
|
|
23209
23969
|
@property
|
23210
23970
|
def Disabled(self, ) -> bool: ...
|
23211
23971
|
@property
|
23972
|
+
def SymbolFilePath(self, ) -> str: ...
|
23973
|
+
@property
|
23974
|
+
def SymbolFilename(self, ) -> str: ...
|
23975
|
+
@property
|
23212
23976
|
def IsBeta(self, ) -> bool: ...
|
23213
23977
|
@property
|
23214
23978
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23317,6 +24081,10 @@ class Integral:
|
|
23317
24081
|
@property
|
23318
24082
|
def Disabled(self, ) -> bool: ...
|
23319
24083
|
@property
|
24084
|
+
def SymbolFilePath(self, ) -> str: ...
|
24085
|
+
@property
|
24086
|
+
def SymbolFilename(self, ) -> str: ...
|
24087
|
+
@property
|
23320
24088
|
def IsBeta(self, ) -> bool: ...
|
23321
24089
|
@property
|
23322
24090
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23421,6 +24189,10 @@ class PID:
|
|
23421
24189
|
@property
|
23422
24190
|
def Disabled(self, ) -> bool: ...
|
23423
24191
|
@property
|
24192
|
+
def SymbolFilePath(self, ) -> str: ...
|
24193
|
+
@property
|
24194
|
+
def SymbolFilename(self, ) -> str: ...
|
24195
|
+
@property
|
23424
24196
|
def IsBeta(self, ) -> bool: ...
|
23425
24197
|
@property
|
23426
24198
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23529,6 +24301,10 @@ class ResettableIntegral:
|
|
23529
24301
|
@property
|
23530
24302
|
def Disabled(self, ) -> bool: ...
|
23531
24303
|
@property
|
24304
|
+
def SymbolFilePath(self, ) -> str: ...
|
24305
|
+
@property
|
24306
|
+
def SymbolFilename(self, ) -> str: ...
|
24307
|
+
@property
|
23532
24308
|
def IsBeta(self, ) -> bool: ...
|
23533
24309
|
@property
|
23534
24310
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23631,6 +24407,10 @@ class C_Code_External:
|
|
23631
24407
|
@property
|
23632
24408
|
def Disabled(self, ) -> bool: ...
|
23633
24409
|
@property
|
24410
|
+
def SymbolFilePath(self, ) -> str: ...
|
24411
|
+
@property
|
24412
|
+
def SymbolFilename(self, ) -> str: ...
|
24413
|
+
@property
|
23634
24414
|
def IsBeta(self, ) -> bool: ...
|
23635
24415
|
@property
|
23636
24416
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23736,6 +24516,10 @@ class C_Code:
|
|
23736
24516
|
@property
|
23737
24517
|
def Disabled(self, ) -> bool: ...
|
23738
24518
|
@property
|
24519
|
+
def SymbolFilePath(self, ) -> str: ...
|
24520
|
+
@property
|
24521
|
+
def SymbolFilename(self, ) -> str: ...
|
24522
|
+
@property
|
23739
24523
|
def IsBeta(self, ) -> bool: ...
|
23740
24524
|
@property
|
23741
24525
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23848,6 +24632,10 @@ class ExternalLibrary:
|
|
23848
24632
|
@property
|
23849
24633
|
def Disabled(self, ) -> bool: ...
|
23850
24634
|
@property
|
24635
|
+
def SymbolFilePath(self, ) -> str: ...
|
24636
|
+
@property
|
24637
|
+
def SymbolFilename(self, ) -> str: ...
|
24638
|
+
@property
|
23851
24639
|
def IsBeta(self, ) -> bool: ...
|
23852
24640
|
@property
|
23853
24641
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -23952,6 +24740,10 @@ class ArrowAnnotation:
|
|
23952
24740
|
@property
|
23953
24741
|
def Disabled(self, ) -> bool: ...
|
23954
24742
|
@property
|
24743
|
+
def SymbolFilePath(self, ) -> str: ...
|
24744
|
+
@property
|
24745
|
+
def SymbolFilename(self, ) -> str: ...
|
24746
|
+
@property
|
23955
24747
|
def IsBeta(self, ) -> bool: ...
|
23956
24748
|
@property
|
23957
24749
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -24058,6 +24850,10 @@ class RectangleAnnotation:
|
|
24058
24850
|
@property
|
24059
24851
|
def Disabled(self, ) -> bool: ...
|
24060
24852
|
@property
|
24853
|
+
def SymbolFilePath(self, ) -> str: ...
|
24854
|
+
@property
|
24855
|
+
def SymbolFilename(self, ) -> str: ...
|
24856
|
+
@property
|
24061
24857
|
def IsBeta(self, ) -> bool: ...
|
24062
24858
|
@property
|
24063
24859
|
def Childrens(self, ) -> List[Any]: ...
|
@@ -24170,6 +24966,10 @@ class TextAnnotation:
|
|
24170
24966
|
@property
|
24171
24967
|
def Disabled(self, ) -> bool: ...
|
24172
24968
|
@property
|
24969
|
+
def SymbolFilePath(self, ) -> str: ...
|
24970
|
+
@property
|
24971
|
+
def SymbolFilename(self, ) -> str: ...
|
24972
|
+
@property
|
24173
24973
|
def IsBeta(self, ) -> bool: ...
|
24174
24974
|
@property
|
24175
24975
|
def Childrens(self, ) -> List[Any]: ...
|