PySimultan 0.5.9.6__py3-none-any.whl → 0.6.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. PySimultan2/CHANGELOG.md +9 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +12 -5
  4. PySimultan2/default_types.py +39 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +31 -3
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/taxonomy_maps.py +45 -27
  25. PySimultan2/typings/SIMULTAN/Data/Assets/__init__.pyi +616 -0
  26. PySimultan2/typings/SIMULTAN/Data/Components/__init__.pyi +2538 -0
  27. PySimultan2/typings/SIMULTAN/Data/FlowNetworks/__init__.pyi +499 -0
  28. PySimultan2/typings/SIMULTAN/Data/Geometry/__init__.pyi +2219 -0
  29. PySimultan2/typings/SIMULTAN/Data/MultiValues/__init__.pyi +682 -0
  30. PySimultan2/typings/SIMULTAN/Data/SimMath/__init__.pyi +1654 -0
  31. PySimultan2/typings/SIMULTAN/Data/SimNetworks/__init__.pyi +442 -0
  32. PySimultan2/typings/SIMULTAN/Data/SitePlanner/__init__.pyi +193 -0
  33. PySimultan2/typings/SIMULTAN/Data/Taxonomy/__init__.pyi +367 -0
  34. PySimultan2/typings/SIMULTAN/Data/Users/__init__.pyi +116 -0
  35. PySimultan2/typings/SIMULTAN/Data/ValueMappings/__init__.pyi +212 -0
  36. PySimultan2/typings/SIMULTAN/Data/__init__.pyi +232 -0
  37. PySimultan2/typings/SIMULTAN/DataMapping/__init__.pyi +916 -0
  38. PySimultan2/typings/SIMULTAN/Excel/__init__.pyi +15 -0
  39. PySimultan2/typings/SIMULTAN/Exceptions/__init__.pyi +268 -0
  40. PySimultan2/typings/SIMULTAN/Exchange/SimNetworkConnectors/__init__.pyi +32 -0
  41. PySimultan2/typings/SIMULTAN/Exchange/__init__.pyi +116 -0
  42. PySimultan2/typings/SIMULTAN/Projects/ManagedFiles/__init__.pyi +433 -0
  43. PySimultan2/typings/SIMULTAN/Projects/__init__.pyi +435 -0
  44. PySimultan2/typings/SIMULTAN/Serializer/CODXF/__init__.pyi +103 -0
  45. PySimultan2/typings/SIMULTAN/Serializer/CSV/__init__.pyi +122 -0
  46. PySimultan2/typings/SIMULTAN/Serializer/DXF/__init__.pyi +1335 -0
  47. PySimultan2/typings/SIMULTAN/Serializer/Geometry/__init__.pyi +48 -0
  48. PySimultan2/typings/SIMULTAN/Serializer/JSON/__init__.pyi +562 -0
  49. PySimultan2/typings/SIMULTAN/Serializer/METADXF/__init__.pyi +11 -0
  50. PySimultan2/typings/SIMULTAN/Serializer/PADXF/__init__.pyi +21 -0
  51. PySimultan2/typings/SIMULTAN/Serializer/PPATH/__init__.pyi +11 -0
  52. PySimultan2/typings/SIMULTAN/Serializer/Projects/__init__.pyi +112 -0
  53. PySimultan2/typings/SIMULTAN/Serializer/SIMLINKS/__init__.pyi +5 -0
  54. PySimultan2/typings/SIMULTAN/Serializer/SPDXF/__init__.pyi +13 -0
  55. PySimultan2/typings/SIMULTAN/Serializer/SimGeo/__init__.pyi +54 -0
  56. PySimultan2/typings/SIMULTAN/Serializer/TXDXF/__init__.pyi +46 -0
  57. PySimultan2/typings/SIMULTAN/Serializer/XMI/__init__.pyi +22 -0
  58. PySimultan2/typings/SIMULTAN/Serializer/__init__.pyi +32 -0
  59. PySimultan2/typings/SIMULTAN/Utils/BackgroundWork/__init__.pyi +43 -0
  60. PySimultan2/typings/SIMULTAN/Utils/Collections/__init__.pyi +216 -0
  61. PySimultan2/typings/SIMULTAN/Utils/ElevationProvider/__init__.pyi +66 -0
  62. PySimultan2/typings/SIMULTAN/Utils/Files/__init__.pyi +48 -0
  63. PySimultan2/typings/SIMULTAN/Utils/Randomize/__init__.pyi +11 -0
  64. PySimultan2/typings/SIMULTAN/Utils/Streams/__init__.pyi +59 -0
  65. PySimultan2/typings/SIMULTAN/Utils/UndoRedo/__init__.pyi +133 -0
  66. PySimultan2/typings/SIMULTAN/Utils/__init__.pyi +570 -0
  67. PySimultan2/typings/System/Buffers/Binary/__init__.pyi +248 -0
  68. PySimultan2/typings/System/Buffers/Text/__init__.pyi +91 -0
  69. PySimultan2/typings/System/Buffers/__init__.pyi +192 -0
  70. PySimultan2/typings/System/CodeDom/Compiler/__init__.pyi +137 -0
  71. PySimultan2/typings/System/Collections/Concurrent/__init__.pyi +47 -0
  72. PySimultan2/typings/System/Collections/Generic/__init__.pyi +1293 -0
  73. PySimultan2/typings/System/Collections/ObjectModel/__init__.pyi +166 -0
  74. PySimultan2/typings/System/Collections/Specialized/__init__.pyi +82 -0
  75. PySimultan2/typings/System/Collections/__init__.pyi +403 -0
  76. PySimultan2/typings/System/ComponentModel/__init__.pyi +582 -0
  77. PySimultan2/typings/System/Configuration/Assemblies/__init__.pyi +30 -0
  78. PySimultan2/typings/System/Diagnostics/CodeAnalysis/__init__.pyi +315 -0
  79. PySimultan2/typings/System/Diagnostics/Contracts/__init__.pyi +297 -0
  80. PySimultan2/typings/System/Diagnostics/SymbolStore/__init__.pyi +9 -0
  81. PySimultan2/typings/System/Diagnostics/Tracing/__init__.pyi +641 -0
  82. PySimultan2/typings/System/Diagnostics/__init__.pyi +1101 -0
  83. PySimultan2/typings/System/Globalization/__init__.pyi +1675 -0
  84. PySimultan2/typings/System/IO/Enumeration/__init__.pyi +125 -0
  85. PySimultan2/typings/System/IO/__init__.pyi +2747 -0
  86. PySimultan2/typings/System/Linq/Expressions/__init__.pyi +1815 -0
  87. PySimultan2/typings/System/Net/__init__.pyi +81 -0
  88. PySimultan2/typings/System/Numerics/__init__.pyi +2853 -0
  89. PySimultan2/typings/System/Reflection/Emit/__init__.pyi +1945 -0
  90. PySimultan2/typings/System/Reflection/Metadata/__init__.pyi +24 -0
  91. PySimultan2/typings/System/Reflection/__init__.pyi +2724 -0
  92. PySimultan2/typings/System/Resources/__init__.pyi +205 -0
  93. PySimultan2/typings/System/Runtime/CompilerServices/__init__.pyi +1926 -0
  94. PySimultan2/typings/System/Runtime/ConstrainedExecution/__init__.pyi +49 -0
  95. PySimultan2/typings/System/Runtime/ExceptionServices/__init__.pyi +34 -0
  96. PySimultan2/typings/System/Runtime/InteropServices/ComTypes/__init__.pyi +758 -0
  97. PySimultan2/typings/System/Runtime/InteropServices/Marshalling/__init__.pyi +461 -0
  98. PySimultan2/typings/System/Runtime/InteropServices/ObjectiveC/__init__.pyi +48 -0
  99. PySimultan2/typings/System/Runtime/InteropServices/__init__.pyi +2632 -0
  100. PySimultan2/typings/System/Runtime/Intrinsics/Arm/__init__.pyi +4757 -0
  101. PySimultan2/typings/System/Runtime/Intrinsics/Wasm/__init__.pyi +844 -0
  102. PySimultan2/typings/System/Runtime/Intrinsics/X86/__init__.pyi +5642 -0
  103. PySimultan2/typings/System/Runtime/Intrinsics/__init__.pyi +4504 -0
  104. PySimultan2/typings/System/Runtime/Loader/__init__.pyi +63 -0
  105. PySimultan2/typings/System/Runtime/Remoting/__init__.pyi +7 -0
  106. PySimultan2/typings/System/Runtime/Serialization/__init__.pyi +269 -0
  107. PySimultan2/typings/System/Runtime/Versioning/__init__.pyi +200 -0
  108. PySimultan2/typings/System/Runtime/__init__.pyi +141 -0
  109. PySimultan2/typings/System/Security/Cryptography/__init__.pyi +39 -0
  110. PySimultan2/typings/System/Security/Permissions/__init__.pyi +163 -0
  111. PySimultan2/typings/System/Security/Principal/__init__.pyi +45 -0
  112. PySimultan2/typings/System/Security/__init__.pyi +347 -0
  113. PySimultan2/typings/System/Text/Unicode/__init__.pyi +62 -0
  114. PySimultan2/typings/System/Text/__init__.pyi +1590 -0
  115. PySimultan2/typings/System/Threading/Tasks/Sources/__init__.pyi +76 -0
  116. PySimultan2/typings/System/Threading/Tasks/__init__.pyi +1403 -0
  117. PySimultan2/typings/System/Threading/__init__.pyi +1788 -0
  118. PySimultan2/typings/System/Xml/Schema/__init__.pyi +1255 -0
  119. PySimultan2/typings/System/Xml/Serialization/__init__.pyi +16 -0
  120. PySimultan2/typings/System/Xml/XPath/__init__.pyi +474 -0
  121. PySimultan2/typings/System/Xml/__init__.pyi +2410 -0
  122. PySimultan2/typings/System/__init__.pyi +17821 -0
  123. PySimultan2/utils.py +10 -5
  124. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/METADATA +5 -1
  125. pysimultan-0.6.0.1.dist-info/RECORD +174 -0
  126. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  127. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  128. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  129. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  130. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  131. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  132. pysimultan-0.5.9.6.dist-info/RECORD +0 -81
  133. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/WHEEL +0 -0
  134. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,2538 @@
1
+ import typing, clr, abc
2
+ from System import IDisposable, Predicate_1, Func_2, Action_1, ValueTuple_2, DateTime, Guid, MulticastDelegate, IAsyncResult, AsyncCallback, EventArgs, ValueTuple_3, IEquatable_1, Array_1
3
+ from System.Collections.Generic import IEnumerable_1, KeyValuePair_2, Dictionary_2, List_1, IReadOnlyList_1, IDictionary_2, IEnumerator_1, SortedList_2, IList_1
4
+ from System.ComponentModel import INotifyPropertyChanged, ISynchronizeInvoke
5
+ from SIMULTAN.Utils.Randomize import IRandomizer
6
+ from SIMULTAN.Utils import RowColumnRange
7
+ from Sprache.Calc import XtensibleCalculator
8
+ from System.Linq.Expressions import Expression, Expression_1
9
+ from System.Collections.ObjectModel import ObservableCollection_1, ReadOnlyObservableCollection_1
10
+ from SIMULTAN.Data.Taxonomy import SimTaxonomyEntry, SimTaxonomyCollection, SimTaxonomyEntryOrString, SimTaxonomyEntryReference, SimChildTaxonomyEntryCollection
11
+ from SIMULTAN.Data.Assets import Asset, ResourceFileEntry, AssetManager
12
+ from SIMULTAN.Data.MultiValues import SimMultiValueBigTable, SimAggregationFunction, SimMultiValueCollection
13
+ from SIMULTAN.Data.Geometry import BaseGeometry
14
+ from SIMULTAN.Data.FlowNetworks import SimNetworkFactory, SimFlowNetwork, SimFlowNetworkNode, SimObjectId, SimFlowNetworkElement
15
+ from SIMULTAN.Data.SimMath import SimPoint, SimColor, SimQuaternion, SimVector3D
16
+ from SIMULTAN.Data.Users import SimUserRole, SimUser
17
+ from SIMULTAN.Data import ISimManagedCollection, SimId, SimObjectNew_1, SimNamedObject_1, SimManagedCollection_1, IReferenceLocation, SimIdGenerator
18
+ from System.Reflection import MethodInfo
19
+ from System.Collections.Specialized import INotifyCollectionChanged
20
+ from System.Security import SecureString
21
+ from SIMULTAN.Utils.Collections import IReadOnlyObservableCollection_1
22
+ from SIMULTAN.Projects import ProjectData
23
+ from SIMULTAN.Data.SimNetworks import SimNetworkPort, SimNetworkBlock, IElementWithComponent
24
+
25
+ class AccessCheckingDisabler:
26
+ def __init__(self) -> None: ...
27
+ @staticmethod
28
+ def Disable(manager: SimComponentCollection) -> IDisposable: ...
29
+
30
+
31
+ class CalculationAlgorithms(abc.ABC):
32
+ @staticmethod
33
+ def CopyCalculation(calculation: SimCalculation, target: SimComponent) -> SimCalculation: ...
34
+ @staticmethod
35
+ def MoveCalculation(calculation: SimCalculation, target: SimComponent) -> None: ...
36
+ @staticmethod
37
+ def OrderCalculations(component: SimComponent) -> bool: ...
38
+ @staticmethod
39
+ def ValidateCalculationParameters(calculation: SimCalculation, replaceInput: IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]], replaceReturn: IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]]) -> CalculationValidationResult: ...
40
+ # Skipped ReplaceParameter due to it being static, abstract and generic.
41
+
42
+ ReplaceParameter : ReplaceParameter_MethodGroup
43
+ class ReplaceParameter_MethodGroup:
44
+ @typing.overload
45
+ def __call__(self, calculation: SimCalculation, replaceParameters: Dictionary_2[str, float]) -> None:...
46
+ @typing.overload
47
+ def __call__(self, calculation: SimCalculation, parameter: str, value: float) -> None:...
48
+
49
+
50
+
51
+ class CalculationParameterMetaData(INotifyPropertyChanged):
52
+ def __init__(self) -> None: ...
53
+ @property
54
+ def IsRandomized(self) -> bool: ...
55
+ @IsRandomized.setter
56
+ def IsRandomized(self, value: bool) -> bool: ...
57
+ @property
58
+ def RandomizeClampDeviation(self) -> float: ...
59
+ @RandomizeClampDeviation.setter
60
+ def RandomizeClampDeviation(self, value: float) -> float: ...
61
+ @property
62
+ def RandomizeDeviation(self) -> float: ...
63
+ @RandomizeDeviation.setter
64
+ def RandomizeDeviation(self, value: float) -> float: ...
65
+ @property
66
+ def RandomizeDeviationMode(self) -> CalculationParameterMetaData.DeviationModeType: ...
67
+ @RandomizeDeviationMode.setter
68
+ def RandomizeDeviationMode(self, value: CalculationParameterMetaData.DeviationModeType) -> CalculationParameterMetaData.DeviationModeType: ...
69
+ @property
70
+ def RandomizeIsClamping(self) -> bool: ...
71
+ @RandomizeIsClamping.setter
72
+ def RandomizeIsClamping(self, value: bool) -> bool: ...
73
+ @classmethod
74
+ @property
75
+ def Randomizer(cls) -> IRandomizer: ...
76
+ @classmethod
77
+ @Randomizer.setter
78
+ def Randomizer(cls, value: IRandomizer) -> IRandomizer: ...
79
+ @property
80
+ def RandomizeRelativeMean(self) -> float: ...
81
+ @RandomizeRelativeMean.setter
82
+ def RandomizeRelativeMean(self, value: float) -> float: ...
83
+ @property
84
+ def Range(self) -> RowColumnRange: ...
85
+ @Range.setter
86
+ def Range(self, value: RowColumnRange) -> RowColumnRange: ...
87
+ def AssignFrom(self, other: CalculationParameterMetaData) -> None: ...
88
+
89
+ class DeviationModeType(typing.SupportsInt):
90
+ @typing.overload
91
+ def __init__(self, value : int) -> None: ...
92
+ @typing.overload
93
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
94
+ def __int__(self) -> int: ...
95
+
96
+ # Values:
97
+ Absolute : CalculationParameterMetaData.DeviationModeType # 0
98
+ Relative : CalculationParameterMetaData.DeviationModeType # 1
99
+
100
+
101
+
102
+ class CalculationParameterReference(IDisposable):
103
+ def __init__(self, calculation: SimCalculation.BaseCalculationParameterCollections, parameter: SimDoubleParameter, metaData: CalculationParameterMetaData = ...) -> None: ...
104
+ @property
105
+ def MetaData(self) -> CalculationParameterMetaData: ...
106
+ @property
107
+ def Parameter(self) -> SimDoubleParameter: ...
108
+ def Dispose(self) -> None: ...
109
+ def UnregisterReferences(self) -> None: ...
110
+
111
+
112
+ class CalculationParser(XtensibleCalculator):
113
+ def __init__(self, flags: CalculationParserFlags = ...) -> None: ...
114
+ @property
115
+ def Parameters(self) -> List_1[str]: ...
116
+ @staticmethod
117
+ def GetMathConstant(constant: str) -> float: ...
118
+ @staticmethod
119
+ def IsParameterExpression(expression: Expression) -> bool: ...
120
+ @staticmethod
121
+ def TransposePlaceholder(d: float) -> float: ...
122
+
123
+
124
+ class CalculationParserFlags(typing.SupportsInt):
125
+ @typing.overload
126
+ def __init__(self, value : int) -> None: ...
127
+ @typing.overload
128
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
129
+ def __int__(self) -> int: ...
130
+
131
+ # Values:
132
+ None_ : CalculationParserFlags # 0
133
+ OptimizeConstants : CalculationParserFlags # 1
134
+ FullOptimization : CalculationParserFlags # 1
135
+
136
+
137
+ class CalculationValidationResult(typing.SupportsInt):
138
+ @typing.overload
139
+ def __init__(self, value : int) -> None: ...
140
+ @typing.overload
141
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
142
+ def __int__(self) -> int: ...
143
+
144
+ # Values:
145
+ PARAMS_NOT_OF_THIS_OR_CHILD_COMP : CalculationValidationResult # 2
146
+ PARAMS_OUT_DUPLICATE : CalculationValidationResult # 4
147
+ PARAMS_IN_OUT_SAME : CalculationValidationResult # 5
148
+ CAUSES_CALCULATION_LOOP : CalculationValidationResult # 7
149
+ VALID : CalculationValidationResult # 8
150
+ PARAM_WRONG_INFOFLOW : CalculationValidationResult # 10
151
+
152
+
153
+ class CalculatorMapping(INotifyPropertyChanged):
154
+ @property
155
+ def Calculator(self) -> SimComponent: ...
156
+ @Calculator.setter
157
+ def Calculator(self, value: SimComponent) -> SimComponent: ...
158
+ @property
159
+ def InputMapping(self) -> CalculatorMapping.InputParametersCollection: ...
160
+ @property
161
+ def Name(self) -> str: ...
162
+ @Name.setter
163
+ def Name(self, value: str) -> str: ...
164
+ @property
165
+ def OutputMapping(self) -> CalculatorMapping.OutputParametersCollection: ...
166
+ def Evaluate(self, dataComponent: SimComponent) -> None: ...
167
+ def GetErrors(self, dataComponent: SimComponent) -> IEnumerable_1[CalculatorMappingErrors]: ...
168
+
169
+ class InputParametersCollection(ObservableCollection_1[CalculatorMapping.MappingParameterTuple]):
170
+ @typing.overload
171
+ def __init__(self) -> None: ...
172
+ @typing.overload
173
+ def __init__(self, collection: IEnumerable_1[CalculatorMapping.MappingParameterTuple]) -> None: ...
174
+ @property
175
+ def Count(self) -> int: ...
176
+ @property
177
+ def Item(self) -> CalculatorMapping.MappingParameterTuple: ...
178
+ @Item.setter
179
+ def Item(self, value: CalculatorMapping.MappingParameterTuple) -> CalculatorMapping.MappingParameterTuple: ...
180
+
181
+
182
+ class MappingParameterTuple:
183
+ def __init__(self, dataParameter: SimDoubleParameter, calculatorParameter: SimDoubleParameter) -> None: ...
184
+ @property
185
+ def CalculatorParameter(self) -> SimDoubleParameter: ...
186
+ @property
187
+ def DataParameter(self) -> SimDoubleParameter: ...
188
+
189
+
190
+ class OutputParametersCollection(ObservableCollection_1[CalculatorMapping.MappingParameterTuple]):
191
+ @typing.overload
192
+ def __init__(self) -> None: ...
193
+ @typing.overload
194
+ def __init__(self, collection: IEnumerable_1[CalculatorMapping.MappingParameterTuple], validate: bool) -> None: ...
195
+ @property
196
+ def Count(self) -> int: ...
197
+ @property
198
+ def Item(self) -> CalculatorMapping.MappingParameterTuple: ...
199
+ @Item.setter
200
+ def Item(self, value: CalculatorMapping.MappingParameterTuple) -> CalculatorMapping.MappingParameterTuple: ...
201
+ def IsValidMappingPropagation(self, item: CalculatorMapping.MappingParameterTuple) -> bool: ...
202
+
203
+
204
+
205
+ class CalculatorMappingErrors(typing.SupportsInt):
206
+ @typing.overload
207
+ def __init__(self, value : int) -> None: ...
208
+ @typing.overload
209
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
210
+ def __int__(self) -> int: ...
211
+
212
+ # Values:
213
+ NONE : CalculatorMappingErrors # 0
214
+ SELF_REFERENCE : CalculatorMappingErrors # 1
215
+ NO_CALCULATION_FOUND : CalculatorMappingErrors # 2
216
+ INVALID_PARAMETER_PROPAGATION : CalculatorMappingErrors # 3
217
+ NO_OUTPUT_MAPPING : CalculatorMappingErrors # 4
218
+
219
+
220
+ class ChatItemComparisonResult(typing.SupportsInt):
221
+ @typing.overload
222
+ def __init__(self, value : int) -> None: ...
223
+ @typing.overload
224
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
225
+ def __int__(self) -> int: ...
226
+
227
+ # Values:
228
+ DIFFERENT : ChatItemComparisonResult # 0
229
+ COMPARABLE : ChatItemComparisonResult # 1
230
+ SAME_STATE : ChatItemComparisonResult # 2
231
+ SAME_MESSAGE : ChatItemComparisonResult # 4
232
+ SAME_RECEPIENTS : ChatItemComparisonResult # 8
233
+ SAME_NR_OF_CHILDREN : ChatItemComparisonResult # 16
234
+ SOME_CHILDREN_SAME : ChatItemComparisonResult # 32
235
+ ALL_CHILDREN_SAME : ChatItemComparisonResult # 64
236
+
237
+
238
+ class ComponentManagement(abc.ABC):
239
+ @staticmethod
240
+ def FindAvailableReferenceSlot(component: SimComponent, availableSlotTaxonomyEntries: List_1[SimTaxonomyEntry]) -> SimSlot: ...
241
+
242
+
243
+ class ComponentMapping(abc.ABC):
244
+ @staticmethod
245
+ def AddAsset(_comp: SimComponent, _resource: ResourceFileEntry, _content_id: str) -> Asset: ...
246
+ @staticmethod
247
+ def EvaluateAllMappings(_comp: SimComponent) -> None: ...
248
+ @staticmethod
249
+ def GetAsset(_comp: SimComponent, _resource: ResourceFileEntry, _content_id: str) -> Asset: ...
250
+ @staticmethod
251
+ def RemoveMapping(_comp: SimComponent, _mapping: CalculatorMapping) -> bool: ...
252
+ # Skipped CreateMappingTo due to it being static, abstract and generic.
253
+
254
+ CreateMappingTo : CreateMappingTo_MethodGroup
255
+ class CreateMappingTo_MethodGroup:
256
+ @typing.overload
257
+ def __call__(self, _comp: SimComponent, _name: str, _calculator: SimComponent) -> CalculatorMapping:...
258
+ @typing.overload
259
+ def __call__(self, _comp: SimComponent, _name: str, _calculator: SimComponent, _input_mapping: IEnumerable_1[CalculatorMapping.MappingParameterTuple], _output_mapping: IEnumerable_1[CalculatorMapping.MappingParameterTuple]) -> CalculatorMapping:...
260
+
261
+ # Skipped RemoveAsset due to it being static, abstract and generic.
262
+
263
+ RemoveAsset : RemoveAsset_MethodGroup
264
+ class RemoveAsset_MethodGroup:
265
+ @typing.overload
266
+ def __call__(self, _comp: SimComponent, _asset: Asset) -> None:...
267
+ @typing.overload
268
+ def __call__(self, _comp: SimComponent, _path_code: int, _content_id: str) -> Asset:...
269
+
270
+
271
+
272
+ class ComponentParameters(abc.ABC):
273
+ @staticmethod
274
+ def ApplyAggregationFunction(table: SimMultiValueBigTable, function: SimAggregationFunction, transpose: bool) -> None: ...
275
+ @staticmethod
276
+ def PerformAggregation(_comp: SimComponent, _value_factory: SimMultiValueCollection) -> None: ...
277
+
278
+
279
+ class ComponentStructure(abc.ABC):
280
+ @staticmethod
281
+ def FindMinimalForestOf(_comps: IEnumerable_1[SimComponent]) -> List_1[SimComponent]: ...
282
+ @staticmethod
283
+ def IsDirectOrIndirectChildOf(_comp: SimComponent, _potential_parent: SimComponent) -> bool: ...
284
+
285
+
286
+ class ComponentWalker(abc.ABC):
287
+ @staticmethod
288
+ def All(component: SimComponent, predicate: Predicate_1[SimComponent]) -> bool: ...
289
+ @staticmethod
290
+ def Any(component: SimComponent, predicate: Predicate_1[SimComponent]) -> bool: ...
291
+ @staticmethod
292
+ def GetInstance(component: SimComponent, geometry: BaseGeometry) -> SimComponentInstance: ...
293
+ @staticmethod
294
+ def GetInstanceValue(parameter: SimBaseParameter, geometry: BaseGeometry) -> typing.Any: ...
295
+ @staticmethod
296
+ def GetParents(component: SimComponent, includeSelf: bool = ...) -> IEnumerable_1[SimComponent]: ...
297
+ # Skipped BreadthFirstTraversal due to it being static, abstract and generic.
298
+
299
+ BreadthFirstTraversal : BreadthFirstTraversal_MethodGroup
300
+ class BreadthFirstTraversal_MethodGroup:
301
+ def __getitem__(self, t:typing.Type[BreadthFirstTraversal_1_T1]) -> BreadthFirstTraversal_1[BreadthFirstTraversal_1_T1]: ...
302
+
303
+ BreadthFirstTraversal_1_T1 = typing.TypeVar('BreadthFirstTraversal_1_T1')
304
+ class BreadthFirstTraversal_1(typing.Generic[BreadthFirstTraversal_1_T1]):
305
+ BreadthFirstTraversal_1_T = ComponentWalker.BreadthFirstTraversal_MethodGroup.BreadthFirstTraversal_1_T1
306
+ @typing.overload
307
+ def __call__(self, components: SimComponentCollection, itemSelector: Func_2[SimComponent, BreadthFirstTraversal_1_T], visitComponent: Predicate_1[SimComponent] = ...) -> IEnumerable_1[BreadthFirstTraversal_1_T]:...
308
+ @typing.overload
309
+ def __call__(self, components: SimComponent.SimChildComponentCollection, itemSelector: Func_2[SimComponent, BreadthFirstTraversal_1_T], visitComponent: Predicate_1[SimComponent] = ...) -> IEnumerable_1[BreadthFirstTraversal_1_T]:...
310
+ @typing.overload
311
+ def __call__(self, component: SimComponent, itemSelector: Func_2[SimComponent, BreadthFirstTraversal_1_T], visitComponent: Predicate_1[SimComponent] = ...) -> IEnumerable_1[BreadthFirstTraversal_1_T]:...
312
+
313
+
314
+ # Skipped BreadthFirstTraversalMany due to it being static, abstract and generic.
315
+
316
+ BreadthFirstTraversalMany : BreadthFirstTraversalMany_MethodGroup
317
+ class BreadthFirstTraversalMany_MethodGroup:
318
+ def __getitem__(self, t:typing.Type[BreadthFirstTraversalMany_1_T1]) -> BreadthFirstTraversalMany_1[BreadthFirstTraversalMany_1_T1]: ...
319
+
320
+ BreadthFirstTraversalMany_1_T1 = typing.TypeVar('BreadthFirstTraversalMany_1_T1')
321
+ class BreadthFirstTraversalMany_1(typing.Generic[BreadthFirstTraversalMany_1_T1]):
322
+ BreadthFirstTraversalMany_1_T = ComponentWalker.BreadthFirstTraversalMany_MethodGroup.BreadthFirstTraversalMany_1_T1
323
+ @typing.overload
324
+ def __call__(self, components: SimComponentCollection, itemSelector: Func_2[SimComponent, IEnumerable_1[BreadthFirstTraversalMany_1_T]], visitComponent: Predicate_1[SimComponent] = ...) -> IEnumerable_1[BreadthFirstTraversalMany_1_T]:...
325
+ @typing.overload
326
+ def __call__(self, components: SimComponent.SimChildComponentCollection, itemSelector: Func_2[SimComponent, IEnumerable_1[BreadthFirstTraversalMany_1_T]], visitComponent: Predicate_1[SimComponent] = ...) -> IEnumerable_1[BreadthFirstTraversalMany_1_T]:...
327
+ @typing.overload
328
+ def __call__(self, component: SimComponent, itemSelector: Func_2[SimComponent, IEnumerable_1[BreadthFirstTraversalMany_1_T]], visitComponent: Predicate_1[SimComponent] = ...) -> IEnumerable_1[BreadthFirstTraversalMany_1_T]:...
329
+
330
+
331
+ # Skipped FirstOrDefault due to it being static, abstract and generic.
332
+
333
+ FirstOrDefault : FirstOrDefault_MethodGroup
334
+ class FirstOrDefault_MethodGroup:
335
+ @typing.overload
336
+ def __call__(self, components: SimComponentCollection, selector: Predicate_1[SimComponent]) -> SimComponent:...
337
+ @typing.overload
338
+ def __call__(self, components: SimComponent.SimChildComponentCollection, selector: Predicate_1[SimComponent]) -> SimComponent:...
339
+ @typing.overload
340
+ def __call__(self, component: SimComponent, selector: Predicate_1[SimComponent]) -> SimComponent:...
341
+
342
+ # Skipped ForeachComponent due to it being static, abstract and generic.
343
+
344
+ ForeachComponent : ForeachComponent_MethodGroup
345
+ class ForeachComponent_MethodGroup:
346
+ @typing.overload
347
+ def __call__(self, components: SimComponentCollection, action: Action_1[SimComponent]) -> None:...
348
+ @typing.overload
349
+ def __call__(self, component: SimComponent, action: Action_1[SimComponent]) -> None:...
350
+
351
+ # Skipped GetFlatParameters due to it being static, abstract and generic.
352
+
353
+ GetFlatParameters : GetFlatParameters_MethodGroup
354
+ class GetFlatParameters_MethodGroup:
355
+ def __getitem__(self, t:typing.Type[GetFlatParameters_1_T1]) -> GetFlatParameters_1[GetFlatParameters_1_T1]: ...
356
+
357
+ GetFlatParameters_1_T1 = typing.TypeVar('GetFlatParameters_1_T1')
358
+ class GetFlatParameters_1(typing.Generic[GetFlatParameters_1_T1]):
359
+ GetFlatParameters_1_T = ComponentWalker.GetFlatParameters_MethodGroup.GetFlatParameters_1_T1
360
+ def __call__(self, component: SimComponent) -> IEnumerable_1[GetFlatParameters_1_T]:...
361
+
362
+ def __call__(self, component: SimComponent) -> IEnumerable_1[SimBaseParameter]:...
363
+
364
+ # Skipped Where due to it being static, abstract and generic.
365
+
366
+ Where : Where_MethodGroup
367
+ class Where_MethodGroup:
368
+ @typing.overload
369
+ def __call__(self, components: SimComponentCollection, predicate: Predicate_1[SimComponent]) -> IEnumerable_1[SimComponent]:...
370
+ @typing.overload
371
+ def __call__(self, components: SimComponent.SimChildComponentCollection, predicate: Predicate_1[SimComponent]) -> IEnumerable_1[SimComponent]:...
372
+ @typing.overload
373
+ def __call__(self, component: SimComponent, predicate: Predicate_1[SimComponent]) -> IEnumerable_1[SimComponent]:...
374
+
375
+
376
+
377
+ class ISimInstanceSizeTransferDefinition(IEnumerable_1[SimInstanceSizeTransferDefinitionItem], typing.Protocol):
378
+ @property
379
+ def Item(self) -> SimInstanceSizeTransferDefinitionItem: ...
380
+ @abc.abstractmethod
381
+ def Clone(self) -> ISimInstanceSizeTransferDefinition: ...
382
+ @abc.abstractmethod
383
+ def RestoreReferences(self, instance: SimComponentInstance) -> None: ...
384
+
385
+
386
+ class MultiValueCalculationBinaryOperation(typing.SupportsInt):
387
+ @typing.overload
388
+ def __init__(self, value : int) -> None: ...
389
+ @typing.overload
390
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
391
+ def __int__(self) -> int: ...
392
+
393
+ # Values:
394
+ INNER_PRODUCT : MultiValueCalculationBinaryOperation # 0
395
+ OUTER_PRODUCT : MultiValueCalculationBinaryOperation # 1
396
+ OUTER_PRODUCT_FLAT : MultiValueCalculationBinaryOperation # 2
397
+ MATRIX_PRODUCT_PERELEMENT : MultiValueCalculationBinaryOperation # 3
398
+ COLUMN_SELECTION : MultiValueCalculationBinaryOperation # 4
399
+ VECTOR_SUM : MultiValueCalculationBinaryOperation # 5
400
+ MATRIX_SUM_REPEAT_COLUMN : MultiValueCalculationBinaryOperation # 6
401
+ MATRIX_PRODUCT : MultiValueCalculationBinaryOperation # 7
402
+ MATRIX_SCALAR_PRODUCT : MultiValueCalculationBinaryOperation # 8
403
+ MATRIX_SCALAR_SUM : MultiValueCalculationBinaryOperation # 9
404
+ COLUMN_SELECTION_AS_MATRIX : MultiValueCalculationBinaryOperation # 10
405
+ MATRIX_PRODUCT_PERELEMENT_REPEAT : MultiValueCalculationBinaryOperation # 11
406
+ MATRIX_SUM_REPEAT_ROWCOLUMN : MultiValueCalculationBinaryOperation # 12
407
+ CATEGORY_SUM : MultiValueCalculationBinaryOperation # 13
408
+ CATEGORY_AVERAGE : MultiValueCalculationBinaryOperation # 14
409
+ CATEGORY_MIN : MultiValueCalculationBinaryOperation # 15
410
+ CATEGORY_MAX : MultiValueCalculationBinaryOperation # 16
411
+ EXTREME_MIN_OF_MATRIX : MultiValueCalculationBinaryOperation # 17
412
+ EXTREME_MAX_OF_MATRIX : MultiValueCalculationBinaryOperation # 18
413
+ COLUMN_SELECTION_AS_DIAGONAL : MultiValueCalculationBinaryOperation # 19
414
+ MATRIX_SUM : MultiValueCalculationBinaryOperation # 20
415
+
416
+
417
+ class MultiValueCalculationParser:
418
+ def __init__(self) -> None: ...
419
+ @staticmethod
420
+ def Parse(expression: Expression_1[Func_2[Dictionary_2[str, float], float]]) -> SimMultiValueExpression: ...
421
+
422
+
423
+ class MultiValueCalculationUnaryOperation(typing.SupportsInt):
424
+ @typing.overload
425
+ def __init__(self, value : int) -> None: ...
426
+ @typing.overload
427
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
428
+ def __int__(self) -> int: ...
429
+
430
+ # Values:
431
+ Transpose : MultiValueCalculationUnaryOperation # 0
432
+ Negate : MultiValueCalculationUnaryOperation # 1
433
+
434
+
435
+ class NetworkFactoryManagement(abc.ABC):
436
+ @staticmethod
437
+ def AddNetworkToNetwork(_factory: SimNetworkFactory, _parent: SimFlowNetwork, _pos: SimPoint, _name: str, _description: str) -> int: ...
438
+ @staticmethod
439
+ def AddToRecord(_factory: SimNetworkFactory, _nws_to_add: List_1[SimFlowNetwork]) -> None: ...
440
+ @staticmethod
441
+ def ClearRecord(_factory: SimNetworkFactory) -> bool: ...
442
+ @staticmethod
443
+ def ConvertNetworkToNode(_factory: SimNetworkFactory, _parent: SimFlowNetwork, _nw: SimFlowNetwork) -> SimFlowNetworkNode: ...
444
+ @staticmethod
445
+ def ConvertNodeToNetwork(_factory: SimNetworkFactory, _parent: SimFlowNetwork, _node: SimFlowNetworkNode) -> SimFlowNetwork: ...
446
+ @staticmethod
447
+ def CopyNetwork(_factory: SimNetworkFactory, _nw_to_copy: SimFlowNetwork) -> SimObjectId: ...
448
+ @staticmethod
449
+ def DisconnectAllInstances(_fact: SimNetworkFactory, _index_of_resource: int) -> None: ...
450
+ @staticmethod
451
+ def RemoveNetwork(_factory: SimNetworkFactory, _netw: SimFlowNetwork, _inform_content: bool = ...) -> bool: ...
452
+
453
+
454
+ class ParameterFactory(INotifyPropertyChanged):
455
+ def __init__(self) -> None: ...
456
+ PARAMETER_RECORD_FILE_NAME : str
457
+ @property
458
+ def ParameterRecord(self) -> ObservableCollection_1[SimBaseParameter]: ...
459
+ @ParameterRecord.setter
460
+ def ParameterRecord(self, value: ObservableCollection_1[SimBaseParameter]) -> ObservableCollection_1[SimBaseParameter]: ...
461
+ def CopyRecord(self, _record: SimBaseParameter) -> SimBaseParameter: ...
462
+
463
+
464
+ class ReservedParameterKeys(abc.ABC):
465
+ NameToKeyLookup : Dictionary_2[str, str]
466
+ RP_AGGREGATION_OPERATION : str
467
+ RP_AREA_MAX_TOTAL : str
468
+ RP_AREA_MIN_TOTAL : str
469
+ RP_COUNT : str
470
+ RP_LABEL_SOURCE : str
471
+ RP_LENGTH_MAX_TOTAL : str
472
+ RP_LENGTH_MIN_TOTAL : str
473
+ RP_MATERIAL_COMPOSITE_D_IN : str
474
+ RP_MATERIAL_COMPOSITE_D_OUT : str
475
+ RP_ORIENTATION_HRZ : str
476
+ RP_PARAM_TO_GEOMETRY : str
477
+ RP_TABLE_POINTER : str
478
+ RP_TAXONOMY_KEY : str
479
+ RP_VOLUME_MAX_TOTAL : str
480
+ RP_VOLUME_MIN_TOTAL : str
481
+ SIMENUMPARAM_DEFAULT : str
482
+ SIMNW_STATIC_PORT_POSITION_X : str
483
+ SIMNW_STATIC_PORT_POSITION_Y : str
484
+ SIMNW_STATIC_PORT_POSITION_Z : str
485
+ @staticmethod
486
+ def GetReservedParameter(taxonomies: SimTaxonomyCollection, key: str) -> SimTaxonomyEntry: ...
487
+ @staticmethod
488
+ def GetReservedTaxonomyEntry(taxonomies: SimTaxonomyCollection, key: str) -> SimTaxonomyEntry: ...
489
+
490
+
491
+ class ReservedParameters(abc.ABC):
492
+ MVBT_OFFSET_X_FORMAT : str
493
+ MVBT_OFFSET_Y_FORMAT : str
494
+ MVF_OFFSET_X_FORMAT : str
495
+ MVF_OFFSET_Y_FORMAT : str
496
+ MVT_OFFSET_X_FORMAT : str
497
+ MVT_OFFSET_Y_FORMAT : str
498
+ MVT_OFFSET_Z_FORMAT : str
499
+ RP_AGGREGATION_OPERATION : str
500
+ RP_AREA_MAX_TOTAL : str
501
+ RP_AREA_MIN_TOTAL : str
502
+ RP_COUNT : str
503
+ RP_INST_PROPAGATE : str
504
+ RP_LABEL_SOURCE : str
505
+ RP_LENGTH_MAX_TOTAL : str
506
+ RP_LENGTH_MIN_TOTAL : str
507
+ RP_MATERIAL_COMPOSITE_D_IN : str
508
+ RP_MATERIAL_COMPOSITE_D_OUT : str
509
+ RP_ORIENTATION_HRZ : str
510
+ RP_PARAM_TO_GEOMETRY : str
511
+ RP_TABLE_POINTER : str
512
+ RP_VOLUME_MAX_TOTAL : str
513
+ RP_VOLUME_MIN_TOTAL : str
514
+ SIMNW_STATIC_PORT_POSITION_X : str
515
+ SIMNW_STATIC_PORT_POSITION_Y : str
516
+ SIMNW_STATIC_PORT_POSITION_Z : str
517
+
518
+
519
+ class SimAccessProfile(IEnumerable_1[SimAccessProfileEntry], INotifyPropertyChanged):
520
+ @typing.overload
521
+ def __init__(self, original: SimAccessProfile) -> None: ...
522
+ @typing.overload
523
+ def __init__(self, owner: SimUserRole) -> None: ...
524
+ @property
525
+ def Component(self) -> SimComponent: ...
526
+ @Component.setter
527
+ def Component(self, value: SimComponent) -> SimComponent: ...
528
+ @property
529
+ def Item(self) -> SimAccessProfileEntry: ...
530
+ @property
531
+ def Item(self) -> SimAccessProfileEntry: ...
532
+ @property
533
+ def ProfileState(self) -> SimComponentValidity: ...
534
+ @ProfileState.setter
535
+ def ProfileState(self, value: SimComponentValidity) -> SimComponentValidity: ...
536
+ def LastAccess(self, access: SimComponentAccessPrivilege) -> ValueTuple_2[DateTime, SimUserRole]: ...
537
+ def ResetAccessFlags(self, owner: SimUserRole) -> None: ...
538
+
539
+
540
+ class SimAccessProfileEntry(INotifyPropertyChanged):
541
+ @property
542
+ def Access(self) -> SimComponentAccessPrivilege: ...
543
+ @Access.setter
544
+ def Access(self, value: SimComponentAccessPrivilege) -> SimComponentAccessPrivilege: ...
545
+ @property
546
+ def AccessProfile(self) -> SimAccessProfile: ...
547
+ @AccessProfile.setter
548
+ def AccessProfile(self, value: SimAccessProfile) -> SimAccessProfile: ...
549
+ @property
550
+ def LastAccessRelease(self) -> DateTime: ...
551
+ @LastAccessRelease.setter
552
+ def LastAccessRelease(self, value: DateTime) -> DateTime: ...
553
+ @property
554
+ def LastAccessSupervize(self) -> DateTime: ...
555
+ @LastAccessSupervize.setter
556
+ def LastAccessSupervize(self, value: DateTime) -> DateTime: ...
557
+ @property
558
+ def LastAccessWrite(self) -> DateTime: ...
559
+ @LastAccessWrite.setter
560
+ def LastAccessWrite(self, value: DateTime) -> DateTime: ...
561
+ @property
562
+ def Role(self) -> SimUserRole: ...
563
+ def Equals(self, obj: typing.Any) -> bool: ...
564
+ def GetHashCode(self) -> int: ...
565
+ def HasAccess(self, access: SimComponentAccessPrivilege) -> bool: ...
566
+ def __eq__(self, t1: SimAccessProfileEntry, t2: SimAccessProfileEntry) -> bool: ...
567
+ def __ne__(self, _t1: SimAccessProfileEntry, _t2: SimAccessProfileEntry) -> bool: ...
568
+
569
+
570
+ class SimBaseNumericParameter_GenericClasses(abc.ABCMeta):
571
+ Generic_SimBaseNumericParameter_GenericClasses_SimBaseNumericParameter_1_T = typing.TypeVar('Generic_SimBaseNumericParameter_GenericClasses_SimBaseNumericParameter_1_T')
572
+ def __getitem__(self, types : typing.Type[Generic_SimBaseNumericParameter_GenericClasses_SimBaseNumericParameter_1_T]) -> typing.Type[SimBaseNumericParameter_1[Generic_SimBaseNumericParameter_GenericClasses_SimBaseNumericParameter_1_T]]: ...
573
+
574
+ SimBaseNumericParameter : SimBaseNumericParameter_GenericClasses
575
+
576
+ SimBaseNumericParameter_1_T = typing.TypeVar('SimBaseNumericParameter_1_T')
577
+ class SimBaseNumericParameter_1(typing.Generic[SimBaseNumericParameter_1_T], SimBaseParameter_1[SimBaseNumericParameter_1_T]):
578
+ @property
579
+ def AllowedOperations(self) -> SimParameterOperations: ...
580
+ @AllowedOperations.setter
581
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
582
+ @property
583
+ def Category(self) -> SimCategory: ...
584
+ @Category.setter
585
+ def Category(self, value: SimCategory) -> SimCategory: ...
586
+ @property
587
+ def Component(self) -> SimComponent: ...
588
+ @Component.setter
589
+ def Component(self, value: SimComponent) -> SimComponent: ...
590
+ @property
591
+ def Description(self) -> str: ...
592
+ @Description.setter
593
+ def Description(self, value: str) -> str: ...
594
+ @property
595
+ def Factory(self) -> ISimManagedCollection: ...
596
+ @Factory.setter
597
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
598
+ @property
599
+ def GlobalID(self) -> Guid: ...
600
+ @property
601
+ def Id(self) -> SimId: ...
602
+ @Id.setter
603
+ def Id(self, value: SimId) -> SimId: ...
604
+ @property
605
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
606
+ @InstancePropagationMode.setter
607
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
608
+ @property
609
+ def IsAutomaticallyGenerated(self) -> bool: ...
610
+ @IsAutomaticallyGenerated.setter
611
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
612
+ @property
613
+ def LocalID(self) -> int: ...
614
+ @property
615
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
616
+ @NameTaxonomyEntry.setter
617
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
618
+ @property
619
+ def Propagation(self) -> SimInfoFlow: ...
620
+ @Propagation.setter
621
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
622
+ @property
623
+ def ReferencingCalculations(self) -> IReadOnlyList_1[SimCalculation]: ...
624
+ @property
625
+ def State(self) -> SimParameterState: ...
626
+ @property
627
+ def Unit(self) -> str: ...
628
+ @Unit.setter
629
+ def Unit(self, value: str) -> str: ...
630
+ @property
631
+ def Value(self) -> SimBaseNumericParameter_1_T: ...
632
+ @Value.setter
633
+ def Value(self, value: SimBaseNumericParameter_1_T) -> SimBaseNumericParameter_1_T: ...
634
+ @property
635
+ def Value(self) -> typing.Any: ...
636
+ @property
637
+ def ValueMax(self) -> SimBaseNumericParameter_1_T: ...
638
+ @ValueMax.setter
639
+ def ValueMax(self, value: SimBaseNumericParameter_1_T) -> SimBaseNumericParameter_1_T: ...
640
+ @property
641
+ def ValueMin(self) -> SimBaseNumericParameter_1_T: ...
642
+ @ValueMin.setter
643
+ def ValueMin(self, value: SimBaseNumericParameter_1_T) -> SimBaseNumericParameter_1_T: ...
644
+ @property
645
+ def ValueSource(self) -> SimParameterValueSource: ...
646
+ @ValueSource.setter
647
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
648
+
649
+
650
+ class SimBaseParameter_GenericClasses(abc.ABCMeta):
651
+ Generic_SimBaseParameter_GenericClasses_SimBaseParameter_1_T = typing.TypeVar('Generic_SimBaseParameter_GenericClasses_SimBaseParameter_1_T')
652
+ def __getitem__(self, types : typing.Type[Generic_SimBaseParameter_GenericClasses_SimBaseParameter_1_T]) -> typing.Type[SimBaseParameter_1[Generic_SimBaseParameter_GenericClasses_SimBaseParameter_1_T]]: ...
653
+
654
+ class SimBaseParameter(SimBaseParameter_0, metaclass =SimBaseParameter_GenericClasses): ...
655
+
656
+ class SimBaseParameter_0(SimObjectNew_1[ISimManagedCollection]):
657
+ @typing.overload
658
+ def __init__(self, name: str, allowedOperations: SimParameterOperations = ...) -> None: ...
659
+ @typing.overload
660
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, allowedOperations: SimParameterOperations = ...) -> None: ...
661
+ @property
662
+ def AllowedOperations(self) -> SimParameterOperations: ...
663
+ @AllowedOperations.setter
664
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
665
+ @property
666
+ def Category(self) -> SimCategory: ...
667
+ @Category.setter
668
+ def Category(self, value: SimCategory) -> SimCategory: ...
669
+ @property
670
+ def Component(self) -> SimComponent: ...
671
+ @Component.setter
672
+ def Component(self, value: SimComponent) -> SimComponent: ...
673
+ @property
674
+ def Description(self) -> str: ...
675
+ @Description.setter
676
+ def Description(self, value: str) -> str: ...
677
+ @property
678
+ def Factory(self) -> ISimManagedCollection: ...
679
+ @Factory.setter
680
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
681
+ @property
682
+ def GlobalID(self) -> Guid: ...
683
+ @property
684
+ def Id(self) -> SimId: ...
685
+ @Id.setter
686
+ def Id(self, value: SimId) -> SimId: ...
687
+ @property
688
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
689
+ @InstancePropagationMode.setter
690
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
691
+ @property
692
+ def IsAutomaticallyGenerated(self) -> bool: ...
693
+ @IsAutomaticallyGenerated.setter
694
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
695
+ @property
696
+ def LocalID(self) -> int: ...
697
+ @property
698
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
699
+ @NameTaxonomyEntry.setter
700
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
701
+ @property
702
+ def Propagation(self) -> SimInfoFlow: ...
703
+ @Propagation.setter
704
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
705
+ @property
706
+ def State(self) -> SimParameterState: ...
707
+ @State.setter
708
+ def State(self, value: SimParameterState) -> SimParameterState: ...
709
+ @property
710
+ def Value(self) -> typing.Any: ...
711
+ @property
712
+ def ValueSource(self) -> SimParameterValueSource: ...
713
+ @ValueSource.setter
714
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
715
+ @abc.abstractmethod
716
+ def Clone(self) -> SimBaseParameter: ...
717
+ @abc.abstractmethod
718
+ def ConvertValueFrom(self, value: typing.Any) -> None: ...
719
+ def GetReferencedParameter(self) -> SimBaseParameter: ...
720
+ def HasAccess(self, user: SimUser, permission: SimComponentAccessPrivilege) -> bool: ...
721
+ def HasReservedTaxonomyEntry(self, entryKey: str) -> bool: ...
722
+ def OnIsBeingDeleted(self) -> None: ...
723
+ def RestoreDefaultTaxonomyReferences(self, taxonomyFileVersion: int) -> None: ...
724
+ @abc.abstractmethod
725
+ def SetToNeutral(self) -> None: ...
726
+
727
+ class IsBeingDeletedEventHandler(MulticastDelegate):
728
+ def __init__(self, object: typing.Any, method: int) -> None: ...
729
+ @property
730
+ def Method(self) -> MethodInfo: ...
731
+ @property
732
+ def Target(self) -> typing.Any: ...
733
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
734
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
735
+ def Invoke(self, sender: typing.Any) -> None: ...
736
+
737
+
738
+ class ValueChangedEventArgs(EventArgs):
739
+ def __init__(self, source: SimBaseParameter.ValueChangedSource, instance: SimComponentInstance) -> None: ...
740
+ @property
741
+ def Instance(self) -> SimComponentInstance: ...
742
+ @property
743
+ def Source(self) -> SimBaseParameter.ValueChangedSource: ...
744
+
745
+
746
+ class ValueChangedEventHandler(MulticastDelegate):
747
+ def __init__(self, object: typing.Any, method: int) -> None: ...
748
+ @property
749
+ def Method(self) -> MethodInfo: ...
750
+ @property
751
+ def Target(self) -> typing.Any: ...
752
+ def BeginInvoke(self, sender: typing.Any, args: SimBaseParameter.ValueChangedEventArgs, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
753
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
754
+ def Invoke(self, sender: typing.Any, args: SimBaseParameter.ValueChangedEventArgs) -> None: ...
755
+
756
+
757
+ class ValueChangedSource(typing.SupportsInt):
758
+ @typing.overload
759
+ def __init__(self, value : int) -> None: ...
760
+ @typing.overload
761
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
762
+ def __int__(self) -> int: ...
763
+
764
+ # Values:
765
+ Parameter : SimBaseParameter.ValueChangedSource # 0
766
+ Instance : SimBaseParameter.ValueChangedSource # 1
767
+
768
+
769
+
770
+ SimBaseParameter_1_T = typing.TypeVar('SimBaseParameter_1_T')
771
+ class SimBaseParameter_1(typing.Generic[SimBaseParameter_1_T], SimBaseParameter_0):
772
+ @typing.overload
773
+ def __init__(self, name: str, value: SimBaseParameter_1_T, allowedOperations: SimParameterOperations = ...) -> None: ...
774
+ @typing.overload
775
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, value: SimBaseParameter_1_T, allowedOperations: SimParameterOperations = ...) -> None: ...
776
+ @property
777
+ def AllowedOperations(self) -> SimParameterOperations: ...
778
+ @AllowedOperations.setter
779
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
780
+ @property
781
+ def Category(self) -> SimCategory: ...
782
+ @Category.setter
783
+ def Category(self, value: SimCategory) -> SimCategory: ...
784
+ @property
785
+ def Component(self) -> SimComponent: ...
786
+ @Component.setter
787
+ def Component(self, value: SimComponent) -> SimComponent: ...
788
+ @property
789
+ def Description(self) -> str: ...
790
+ @Description.setter
791
+ def Description(self, value: str) -> str: ...
792
+ @property
793
+ def Factory(self) -> ISimManagedCollection: ...
794
+ @Factory.setter
795
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
796
+ @property
797
+ def GlobalID(self) -> Guid: ...
798
+ @property
799
+ def Id(self) -> SimId: ...
800
+ @Id.setter
801
+ def Id(self, value: SimId) -> SimId: ...
802
+ @property
803
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
804
+ @InstancePropagationMode.setter
805
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
806
+ @property
807
+ def IsAutomaticallyGenerated(self) -> bool: ...
808
+ @IsAutomaticallyGenerated.setter
809
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
810
+ @property
811
+ def LocalID(self) -> int: ...
812
+ @property
813
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
814
+ @NameTaxonomyEntry.setter
815
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
816
+ @property
817
+ def Propagation(self) -> SimInfoFlow: ...
818
+ @Propagation.setter
819
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
820
+ @property
821
+ def State(self) -> SimParameterState: ...
822
+ @property
823
+ def Value(self) -> SimBaseParameter_1_T: ...
824
+ @Value.setter
825
+ def Value(self, value: SimBaseParameter_1_T) -> SimBaseParameter_1_T: ...
826
+ @property
827
+ def Value(self) -> typing.Any: ...
828
+ @property
829
+ def ValueSource(self) -> SimParameterValueSource: ...
830
+ @ValueSource.setter
831
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
832
+
833
+
834
+ class SimBoolParameter(SimBaseParameter_1[bool]):
835
+ @typing.overload
836
+ def __init__(self, name: str, value: bool, allowedOperations: SimParameterOperations = ...) -> None: ...
837
+ @typing.overload
838
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, value: bool, allowedOperations: SimParameterOperations = ...) -> None: ...
839
+ @property
840
+ def AllowedOperations(self) -> SimParameterOperations: ...
841
+ @AllowedOperations.setter
842
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
843
+ @property
844
+ def Category(self) -> SimCategory: ...
845
+ @Category.setter
846
+ def Category(self, value: SimCategory) -> SimCategory: ...
847
+ @property
848
+ def Component(self) -> SimComponent: ...
849
+ @Component.setter
850
+ def Component(self, value: SimComponent) -> SimComponent: ...
851
+ @property
852
+ def Description(self) -> str: ...
853
+ @Description.setter
854
+ def Description(self, value: str) -> str: ...
855
+ @property
856
+ def Factory(self) -> ISimManagedCollection: ...
857
+ @Factory.setter
858
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
859
+ @property
860
+ def GlobalID(self) -> Guid: ...
861
+ @property
862
+ def Id(self) -> SimId: ...
863
+ @Id.setter
864
+ def Id(self, value: SimId) -> SimId: ...
865
+ @property
866
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
867
+ @InstancePropagationMode.setter
868
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
869
+ @property
870
+ def IsAutomaticallyGenerated(self) -> bool: ...
871
+ @IsAutomaticallyGenerated.setter
872
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
873
+ @property
874
+ def LocalID(self) -> int: ...
875
+ @property
876
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
877
+ @NameTaxonomyEntry.setter
878
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
879
+ @property
880
+ def Propagation(self) -> SimInfoFlow: ...
881
+ @Propagation.setter
882
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
883
+ @property
884
+ def State(self) -> SimParameterState: ...
885
+ @property
886
+ def Value(self) -> bool: ...
887
+ @Value.setter
888
+ def Value(self, value: bool) -> bool: ...
889
+ @property
890
+ def Value(self) -> typing.Any: ...
891
+ @property
892
+ def ValueSource(self) -> SimParameterValueSource: ...
893
+ @ValueSource.setter
894
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
895
+ def Clone(self) -> SimBaseParameter: ...
896
+ @staticmethod
897
+ def ConvertFromValue(value: typing.Any) -> bool: ...
898
+ def ConvertValueFrom(self, value: typing.Any) -> None: ...
899
+ def SetToNeutral(self) -> None: ...
900
+
901
+
902
+ class SimCalculation(SimNamedObject_1[SimComponentCollection]):
903
+ @typing.overload
904
+ def __init__(self, _original: SimCalculation) -> None: ...
905
+ @typing.overload
906
+ def __init__(self, expression: str, name: str, inputParameters: IDictionary_2[str, SimDoubleParameter] = ..., returnParameters: IDictionary_2[str, SimDoubleParameter] = ...) -> None: ...
907
+ @typing.overload
908
+ def __init__(self, localId: int, expression: str, name: str, inputParameters: IDictionary_2[str, SimDoubleParameter], returnParameters: IDictionary_2[str, SimDoubleParameter], metaData: IDictionary_2[str, CalculationParameterMetaData], inOrderOperations: List_1[MultiValueCalculationBinaryOperation], iterationCount: int, overrideResult: bool, resultAggregation: SimResultAggregationMethod) -> None: ...
909
+ @property
910
+ def Component(self) -> SimComponent: ...
911
+ @Component.setter
912
+ def Component(self, value: SimComponent) -> SimComponent: ...
913
+ @property
914
+ def Description(self) -> str: ...
915
+ @Description.setter
916
+ def Description(self, value: str) -> str: ...
917
+ @property
918
+ def Expression(self) -> str: ...
919
+ @Expression.setter
920
+ def Expression(self, value: str) -> str: ...
921
+ @property
922
+ def Factory(self) -> SimComponentCollection: ...
923
+ @Factory.setter
924
+ def Factory(self, value: SimComponentCollection) -> SimComponentCollection: ...
925
+ @property
926
+ def GlobalID(self) -> Guid: ...
927
+ @property
928
+ def Id(self) -> SimId: ...
929
+ @Id.setter
930
+ def Id(self, value: SimId) -> SimId: ...
931
+ @property
932
+ def InputParams(self) -> SimCalculation.SimCalculationInputParameterCollection: ...
933
+ @property
934
+ def IsMultiValueCalculation(self) -> bool: ...
935
+ @IsMultiValueCalculation.setter
936
+ def IsMultiValueCalculation(self, value: bool) -> bool: ...
937
+ @property
938
+ def IterationCount(self) -> int: ...
939
+ @IterationCount.setter
940
+ def IterationCount(self, value: int) -> int: ...
941
+ @property
942
+ def LocalID(self) -> int: ...
943
+ @property
944
+ def MultiValueCalculation(self) -> SimMultiValueExpression: ...
945
+ @MultiValueCalculation.setter
946
+ def MultiValueCalculation(self, value: SimMultiValueExpression) -> SimMultiValueExpression: ...
947
+ @property
948
+ def Name(self) -> str: ...
949
+ @Name.setter
950
+ def Name(self, value: str) -> str: ...
951
+ @property
952
+ def OverrideResult(self) -> bool: ...
953
+ @OverrideResult.setter
954
+ def OverrideResult(self, value: bool) -> bool: ...
955
+ @property
956
+ def ResultAggregation(self) -> SimResultAggregationMethod: ...
957
+ @ResultAggregation.setter
958
+ def ResultAggregation(self, value: SimResultAggregationMethod) -> SimResultAggregationMethod: ...
959
+ @property
960
+ def ReturnParams(self) -> SimCalculation.SimCalculationOutputParameterCollection: ...
961
+ @property
962
+ def State(self) -> SimCalculationValidity: ...
963
+ @State.setter
964
+ def State(self, value: SimCalculationValidity) -> SimCalculationValidity: ...
965
+ # Skipped Calculate due to it being static, abstract and generic.
966
+
967
+ Calculate : Calculate_MethodGroup
968
+ class Calculate_MethodGroup:
969
+ @typing.overload
970
+ def __call__(self, parameterReplacements: Dictionary_2[SimDoubleParameter, float]) -> None:...
971
+ @typing.overload
972
+ def __call__(self, valuefieldCollection: SimMultiValueCollection, tableNameProvider: SimCalculation.TableNameProviderDelegate = ..., tableNameAverageProvider: SimCalculation.TableNameProviderDelegate = ..., parameterReplacements: Dictionary_2[SimDoubleParameter, SimDoubleParameter] = ..., dispatcher: ISynchronizeInvoke = ...) -> None:...
973
+
974
+
975
+ class BaseCalculationParameterCollections(IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]], INotifyCollectionChanged, abc.ABC):
976
+ @typing.overload
977
+ def __init__(self, owner: SimCalculation) -> None: ...
978
+ @typing.overload
979
+ def __init__(self, owner: SimCalculation, data: IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]]) -> None: ...
980
+ @property
981
+ def Count(self) -> int: ...
982
+ @property
983
+ def Item(self) -> SimDoubleParameter: ...
984
+ @Item.setter
985
+ def Item(self, value: SimDoubleParameter) -> SimDoubleParameter: ...
986
+ @property
987
+ def Owner(self) -> SimCalculation: ...
988
+ def ContainsKey(self, parameter: str) -> bool: ...
989
+ def ContainsValue(self, parameter: SimDoubleParameter) -> bool: ...
990
+ def GetEnumerator(self) -> IEnumerator_1[KeyValuePair_2[str, SimDoubleParameter]]: ...
991
+ def GetMetaData(self, key: str) -> CalculationParameterMetaData: ...
992
+ def ToDictionary(self) -> Dictionary_2[str, SimDoubleParameter]: ...
993
+ def TryGetValue(self, key: str, parameter: clr.Reference[SimDoubleParameter]) -> bool: ...
994
+
995
+ class Enumerator(IEnumerator_1[KeyValuePair_2[str, SimDoubleParameter]]):
996
+ def __init__(self, enumerator: IEnumerator_1[KeyValuePair_2[str, CalculationParameterReference]]) -> None: ...
997
+ @property
998
+ def Current(self) -> KeyValuePair_2[str, SimDoubleParameter]: ...
999
+ def Dispose(self) -> None: ...
1000
+ def MoveNext(self) -> bool: ...
1001
+ def Reset(self) -> None: ...
1002
+
1003
+
1004
+
1005
+ class SimCalculationInputParameterCollection(SimCalculation.BaseCalculationParameterCollections):
1006
+ @typing.overload
1007
+ def __init__(self, calculation: SimCalculation) -> None: ...
1008
+ @typing.overload
1009
+ def __init__(self, calculation: SimCalculation, data: IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]]) -> None: ...
1010
+ @property
1011
+ def Count(self) -> int: ...
1012
+ @property
1013
+ def Item(self) -> SimDoubleParameter: ...
1014
+ @Item.setter
1015
+ def Item(self, value: SimDoubleParameter) -> SimDoubleParameter: ...
1016
+ @property
1017
+ def Owner(self) -> SimCalculation: ...
1018
+
1019
+
1020
+ class SimCalculationOutputParameterCollection(SimCalculation.BaseCalculationParameterCollections):
1021
+ @typing.overload
1022
+ def __init__(self, calculation: SimCalculation) -> None: ...
1023
+ @typing.overload
1024
+ def __init__(self, calculation: SimCalculation, data: IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]]) -> None: ...
1025
+ @property
1026
+ def Count(self) -> int: ...
1027
+ @property
1028
+ def Item(self) -> SimDoubleParameter: ...
1029
+ @Item.setter
1030
+ def Item(self, value: SimDoubleParameter) -> SimDoubleParameter: ...
1031
+ @property
1032
+ def Owner(self) -> SimCalculation: ...
1033
+ def Add(self, key: str, parameter: SimDoubleParameter) -> None: ...
1034
+ def AddRange(self, values: IEnumerable_1[KeyValuePair_2[str, SimDoubleParameter]]) -> None: ...
1035
+ def Clear(self) -> None: ...
1036
+ def Remove(self, key: str) -> None: ...
1037
+
1038
+
1039
+ class TableNameProviderDelegate(MulticastDelegate):
1040
+ def __init__(self, object: typing.Any, method: int) -> None: ...
1041
+ @property
1042
+ def Method(self) -> MethodInfo: ...
1043
+ @property
1044
+ def Target(self) -> typing.Any: ...
1045
+ def BeginInvoke(self, calculation: SimCalculation, iteration: int, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
1046
+ def EndInvoke(self, result: IAsyncResult) -> str: ...
1047
+ def Invoke(self, calculation: SimCalculation, iteration: int) -> str: ...
1048
+
1049
+
1050
+
1051
+ class SimCalculationValidity(typing.SupportsInt):
1052
+ @typing.overload
1053
+ def __init__(self, value : int) -> None: ...
1054
+ @typing.overload
1055
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1056
+ def __int__(self) -> int: ...
1057
+
1058
+ # Values:
1059
+ Valid : SimCalculationValidity # 0
1060
+ ParamNotBound : SimCalculationValidity # 1
1061
+ InvalidExpression : SimCalculationValidity # 4
1062
+
1063
+
1064
+ class SimCategory(typing.SupportsInt):
1065
+ @typing.overload
1066
+ def __init__(self, value : int) -> None: ...
1067
+ @typing.overload
1068
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1069
+ def __int__(self) -> int: ...
1070
+
1071
+ # Values:
1072
+ None_ : SimCategory # 0
1073
+ General : SimCategory # 1
1074
+ Geometry : SimCategory # 2
1075
+ Costs : SimCategory # 4
1076
+ Regulations : SimCategory # 8
1077
+ Heating : SimCategory # 16
1078
+ Cooling : SimCategory # 32
1079
+ Humidity : SimCategory # 64
1080
+ Air : SimCategory # 128
1081
+ Acoustics : SimCategory # 256
1082
+ Light_Natural : SimCategory # 512
1083
+ Light_Artificial : SimCategory # 1024
1084
+ Water : SimCategory # 2048
1085
+ Waste : SimCategory # 4096
1086
+ Electricity : SimCategory # 8192
1087
+ FireSafety : SimCategory # 16384
1088
+ MSR : SimCategory # 32768
1089
+ Communication : SimCategory # 65536
1090
+
1091
+
1092
+ class SimChat(INotifyPropertyChanged):
1093
+ def __init__(self) -> None: ...
1094
+ @property
1095
+ def TopItems(self) -> SortedList_2[DateTime, SimChatItem]: ...
1096
+ @TopItems.setter
1097
+ def TopItems(self, value: SortedList_2[DateTime, SimChatItem]) -> SortedList_2[DateTime, SimChatItem]: ...
1098
+ def AddItem(self, _item: SimChatItem) -> None: ...
1099
+ def ToString(self) -> str: ...
1100
+
1101
+
1102
+ class SimChatItem(INotifyPropertyChanged):
1103
+ @property
1104
+ def Author(self) -> SimUserRole: ...
1105
+ @Author.setter
1106
+ def Author(self, value: SimUserRole) -> SimUserRole: ...
1107
+ @property
1108
+ def Children(self) -> List_1[SimChatItem]: ...
1109
+ @property
1110
+ def ExpectsReacionsFrom(self) -> List_1[SimUserRole]: ...
1111
+ @ExpectsReacionsFrom.setter
1112
+ def ExpectsReacionsFrom(self, value: List_1[SimUserRole]) -> List_1[SimUserRole]: ...
1113
+ @property
1114
+ def GitCommitKey(self) -> str: ...
1115
+ @GitCommitKey.setter
1116
+ def GitCommitKey(self, value: str) -> str: ...
1117
+ @property
1118
+ def Message(self) -> str: ...
1119
+ @Message.setter
1120
+ def Message(self, value: str) -> str: ...
1121
+ @property
1122
+ def ReactionTo(self) -> SimChatItem: ...
1123
+ @ReactionTo.setter
1124
+ def ReactionTo(self, value: SimChatItem) -> SimChatItem: ...
1125
+ @property
1126
+ def State(self) -> SimChatItemState: ...
1127
+ @State.setter
1128
+ def State(self, value: SimChatItemState) -> SimChatItemState: ...
1129
+ @property
1130
+ def TimeStamp(self) -> DateTime: ...
1131
+ @TimeStamp.setter
1132
+ def TimeStamp(self, value: DateTime) -> DateTime: ...
1133
+ @property
1134
+ def Type(self) -> SimChatItemType: ...
1135
+ @Type.setter
1136
+ def Type(self, value: SimChatItemType) -> SimChatItemType: ...
1137
+ @property
1138
+ def VotingRegistration_Address(self) -> str: ...
1139
+ @VotingRegistration_Address.setter
1140
+ def VotingRegistration_Address(self, value: str) -> str: ...
1141
+ @property
1142
+ def VotingRegistration_Password(self) -> SecureString: ...
1143
+ @VotingRegistration_Password.setter
1144
+ def VotingRegistration_Password(self, value: SecureString) -> SecureString: ...
1145
+ @staticmethod
1146
+ def CanClose(_item: SimChatItem, _author: SimUserRole) -> bool: ...
1147
+ @staticmethod
1148
+ def CanCloseQuestion(_question: SimChatItem, _closing_user: SimUserRole) -> bool: ...
1149
+ @staticmethod
1150
+ def CanReactTo(_item: SimChatItem, _author: SimUserRole) -> bool: ...
1151
+ @staticmethod
1152
+ def CloseQuestion(_question: SimChatItem, _closing_user: SimUserRole, _commit_key: str) -> None: ...
1153
+ @staticmethod
1154
+ def CreateNew(_author: SimUserRole, _commit_key: str, _message: str, _is_question: bool, _expects_reactions_from: List_1[SimUserRole]) -> SimChatItem: ...
1155
+ def GetDepth(self) -> int: ...
1156
+ @staticmethod
1157
+ def ReactTo(_item: SimChatItem, _author: SimUserRole, _commit_key: str, _message: str, _positive: typing.Optional[bool]) -> SimChatItem: ...
1158
+
1159
+
1160
+ class SimChatItemState(typing.SupportsInt):
1161
+ @typing.overload
1162
+ def __init__(self, value : int) -> None: ...
1163
+ @typing.overload
1164
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1165
+ def __int__(self) -> int: ...
1166
+
1167
+ # Values:
1168
+ OPEN : SimChatItemState # 0
1169
+ CLOSED : SimChatItemState # 1
1170
+
1171
+
1172
+ class SimChatItemType(typing.SupportsInt):
1173
+ @typing.overload
1174
+ def __init__(self, value : int) -> None: ...
1175
+ @typing.overload
1176
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1177
+ def __int__(self) -> int: ...
1178
+
1179
+ # Values:
1180
+ QUESTION : SimChatItemType # 0
1181
+ ANSWER : SimChatItemType # 1
1182
+ ANSWER_ACCEPT : SimChatItemType # 2
1183
+ ANSWER_REJECT : SimChatItemType # 3
1184
+ VOTING_SESSION : SimChatItemType # 4
1185
+ VOTE_ACCEPT : SimChatItemType # 5
1186
+ VOTE_REJECT : SimChatItemType # 6
1187
+
1188
+
1189
+ class SimChildComponentEntry(INotifyPropertyChanged):
1190
+ @typing.overload
1191
+ def __init__(self, slot: SimSlot) -> None: ...
1192
+ @typing.overload
1193
+ def __init__(self, slot: SimSlot, component: SimComponent) -> None: ...
1194
+ @property
1195
+ def Component(self) -> SimComponent: ...
1196
+ @Component.setter
1197
+ def Component(self, value: SimComponent) -> SimComponent: ...
1198
+ @property
1199
+ def Parent(self) -> SimComponent: ...
1200
+ @Parent.setter
1201
+ def Parent(self, value: SimComponent) -> SimComponent: ...
1202
+ @property
1203
+ def Slot(self) -> SimSlot: ...
1204
+ @Slot.setter
1205
+ def Slot(self, value: SimSlot) -> SimSlot: ...
1206
+ def RestoreReferences(self, networkElements: Dictionary_2[SimObjectId, SimFlowNetworkElement], assetManager: AssetManager) -> None: ...
1207
+
1208
+
1209
+ class SimComponent(SimNamedObject_1[SimComponentCollection]):
1210
+ @typing.overload
1211
+ def __init__(self) -> None: ...
1212
+ @typing.overload
1213
+ def __init__(self, original: SimComponent) -> None: ...
1214
+ @typing.overload
1215
+ def __init__(self, owner: SimUserRole) -> None: ...
1216
+ @property
1217
+ def AccessLocal(self) -> SimAccessProfile: ...
1218
+ @AccessLocal.setter
1219
+ def AccessLocal(self, value: SimAccessProfile) -> SimAccessProfile: ...
1220
+ @property
1221
+ def Calculations(self) -> SimComponent.SimCalculationCollection: ...
1222
+ @property
1223
+ def CalculatorMappings(self) -> IReadOnlyObservableCollection_1[CalculatorMapping]: ...
1224
+ @property
1225
+ def Category(self) -> SimCategory: ...
1226
+ @Category.setter
1227
+ def Category(self, value: SimCategory) -> SimCategory: ...
1228
+ @property
1229
+ def ComponentColor(self) -> SimColor: ...
1230
+ @ComponentColor.setter
1231
+ def ComponentColor(self, value: SimColor) -> SimColor: ...
1232
+ @property
1233
+ def Components(self) -> SimComponent.SimChildComponentCollection: ...
1234
+ @property
1235
+ def Conversation(self) -> SimChat: ...
1236
+ @Conversation.setter
1237
+ def Conversation(self, value: SimChat) -> SimChat: ...
1238
+ @property
1239
+ def Description(self) -> str: ...
1240
+ @Description.setter
1241
+ def Description(self, value: str) -> str: ...
1242
+ @property
1243
+ def Factory(self) -> SimComponentCollection: ...
1244
+ @Factory.setter
1245
+ def Factory(self, value: SimComponentCollection) -> SimComponentCollection: ...
1246
+ @property
1247
+ def GlobalID(self) -> Guid: ...
1248
+ @property
1249
+ def Id(self) -> SimId: ...
1250
+ @Id.setter
1251
+ def Id(self, value: SimId) -> SimId: ...
1252
+ @property
1253
+ def Instances(self) -> SimComponent.SimInstanceCollection: ...
1254
+ @property
1255
+ def InstanceState(self) -> SimInstanceState: ...
1256
+ @InstanceState.setter
1257
+ def InstanceState(self, value: SimInstanceState) -> SimInstanceState: ...
1258
+ @property
1259
+ def InstanceType(self) -> SimInstanceType: ...
1260
+ @InstanceType.setter
1261
+ def InstanceType(self, value: SimInstanceType) -> SimInstanceType: ...
1262
+ @property
1263
+ def IsAutomaticallyGenerated(self) -> bool: ...
1264
+ @IsAutomaticallyGenerated.setter
1265
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
1266
+ @property
1267
+ def IsBoundInNetwork(self) -> bool: ...
1268
+ @IsBoundInNetwork.setter
1269
+ def IsBoundInNetwork(self, value: bool) -> bool: ...
1270
+ @property
1271
+ def IsBoundInSimNetwork(self) -> bool: ...
1272
+ @IsBoundInSimNetwork.setter
1273
+ def IsBoundInSimNetwork(self, value: bool) -> bool: ...
1274
+ @property
1275
+ def LocalID(self) -> int: ...
1276
+ @property
1277
+ def MappedToBy(self) -> List_1[SimComponent]: ...
1278
+ @MappedToBy.setter
1279
+ def MappedToBy(self, value: List_1[SimComponent]) -> List_1[SimComponent]: ...
1280
+ @property
1281
+ def Name(self) -> str: ...
1282
+ @Name.setter
1283
+ def Name(self, value: str) -> str: ...
1284
+ @property
1285
+ def Parameters(self) -> SimComponent.SimParameterCollection: ...
1286
+ @property
1287
+ def Parent(self) -> SimComponent: ...
1288
+ @property
1289
+ def ParentContainer(self) -> SimChildComponentEntry: ...
1290
+ @ParentContainer.setter
1291
+ def ParentContainer(self, value: SimChildComponentEntry) -> SimChildComponentEntry: ...
1292
+ @property
1293
+ def ReferencedAssets(self) -> ReadOnlyObservableCollection_1[Asset]: ...
1294
+ @property
1295
+ def ReferencedBy(self) -> IReadOnlyList_1[SimComponentReference]: ...
1296
+ @property
1297
+ def ReferencedComponents(self) -> SimComponent.SimReferenceCollection: ...
1298
+ @property
1299
+ def Slots(self) -> SimComponentSlotsCollection: ...
1300
+ @Slots.setter
1301
+ def Slots(self, value: SimComponentSlotsCollection) -> SimComponentSlotsCollection: ...
1302
+ @property
1303
+ def SortingType(self) -> SimComponentContentSorting: ...
1304
+ @SortingType.setter
1305
+ def SortingType(self, value: SimComponentContentSorting) -> SimComponentContentSorting: ...
1306
+ @property
1307
+ def Visibility(self) -> SimComponentVisibility: ...
1308
+ @Visibility.setter
1309
+ def Visibility(self, value: SimComponentVisibility) -> SimComponentVisibility: ...
1310
+ def ExecuteAllCalculationChains(self, tableNameProvider: SimCalculation.TableNameProviderDelegate = ..., tableNameAverageProvider: SimCalculation.TableNameProviderDelegate = ..., parameterReplacements: Dictionary_2[SimDoubleParameter, SimDoubleParameter] = ..., valueFields: SimMultiValueCollection = ..., dispatcher: ISynchronizeInvoke = ...) -> None: ...
1311
+ def HasAccess(self, user: SimUser, accessType: SimComponentAccessPrivilege) -> bool: ...
1312
+ def HasSubtreeAccess(self, user: SimUser, accessType: SimComponentAccessPrivilege) -> bool: ...
1313
+ def OnIsBeingDeleted(self) -> None: ...
1314
+ def RestoreDefaultTaxonomyReferences(self, taxonomyFileVersion: int) -> None: ...
1315
+ def RestoreReferences(self, networkElements: Dictionary_2[SimObjectId, SimFlowNetworkElement], assetManager: AssetManager) -> None: ...
1316
+ def ToInfoString(self) -> str: ...
1317
+ def ToString(self) -> str: ...
1318
+
1319
+ class IsBeingDeletedEventHandler(MulticastDelegate):
1320
+ def __init__(self, object: typing.Any, method: int) -> None: ...
1321
+ @property
1322
+ def Method(self) -> MethodInfo: ...
1323
+ @property
1324
+ def Target(self) -> typing.Any: ...
1325
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
1326
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
1327
+ def Invoke(self, sender: typing.Any) -> None: ...
1328
+
1329
+
1330
+ class SimCalculationCollection(ObservableCollection_1[SimCalculation]):
1331
+ def __init__(self, owner: SimComponent) -> None: ...
1332
+ @property
1333
+ def Count(self) -> int: ...
1334
+ @property
1335
+ def Item(self) -> SimCalculation: ...
1336
+ @Item.setter
1337
+ def Item(self, value: SimCalculation) -> SimCalculation: ...
1338
+
1339
+
1340
+ class SimChildComponentCollection(ObservableCollection_1[SimChildComponentEntry]):
1341
+ @property
1342
+ def Count(self) -> int: ...
1343
+ @property
1344
+ def Item(self) -> SimChildComponentEntry: ...
1345
+ @Item.setter
1346
+ def Item(self, value: SimChildComponentEntry) -> SimChildComponentEntry: ...
1347
+ def FindAvailableSlot(self, slotBase: SimTaxonomyEntry, extensionFormat: str = ...) -> SimSlot: ...
1348
+
1349
+
1350
+ class SimInstanceCollection(ObservableCollection_1[SimComponentInstance]):
1351
+ def __init__(self, owner: SimComponent) -> None: ...
1352
+ @property
1353
+ def Count(self) -> int: ...
1354
+ @property
1355
+ def Item(self) -> SimComponentInstance: ...
1356
+ @Item.setter
1357
+ def Item(self, value: SimComponentInstance) -> SimComponentInstance: ...
1358
+
1359
+
1360
+ class SimParameterCollection(ObservableCollection_1[SimBaseParameter]):
1361
+ def __init__(self, owner: SimComponent) -> None: ...
1362
+ @property
1363
+ def Count(self) -> int: ...
1364
+ @property
1365
+ def Item(self) -> SimBaseParameter: ...
1366
+ @Item.setter
1367
+ def Item(self, value: SimBaseParameter) -> SimBaseParameter: ...
1368
+
1369
+
1370
+ class SimReferenceCollection(ObservableCollection_1[SimComponentReference]):
1371
+ @property
1372
+ def Count(self) -> int: ...
1373
+ @property
1374
+ def Item(self) -> SimComponentReference: ...
1375
+ @Item.setter
1376
+ def Item(self, value: SimComponentReference) -> SimComponentReference: ...
1377
+
1378
+
1379
+
1380
+ class SimComponentAccessPrivilege(typing.SupportsInt):
1381
+ @typing.overload
1382
+ def __init__(self, value : int) -> None: ...
1383
+ @typing.overload
1384
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1385
+ def __int__(self) -> int: ...
1386
+
1387
+ # Values:
1388
+ None_ : SimComponentAccessPrivilege # 0
1389
+ Read : SimComponentAccessPrivilege # 1
1390
+ Write : SimComponentAccessPrivilege # 2
1391
+ Supervize : SimComponentAccessPrivilege # 4
1392
+ Release : SimComponentAccessPrivilege # 8
1393
+ All : SimComponentAccessPrivilege # 15
1394
+
1395
+
1396
+ class SimComponentCollection(SimManagedCollection_1[SimComponent]):
1397
+ def __init__(self, owner: ProjectData) -> None: ...
1398
+ @property
1399
+ def CalledFromLocation(self) -> IReferenceLocation: ...
1400
+ @property
1401
+ def Count(self) -> int: ...
1402
+ @property
1403
+ def EnableReferencePropagation(self) -> bool: ...
1404
+ @EnableReferencePropagation.setter
1405
+ def EnableReferencePropagation(self, value: bool) -> bool: ...
1406
+ @property
1407
+ def HasChanges(self) -> bool: ...
1408
+ @property
1409
+ def IsRestoringReferences(self) -> bool: ...
1410
+ @IsRestoringReferences.setter
1411
+ def IsRestoringReferences(self, value: bool) -> bool: ...
1412
+ @property
1413
+ def Item(self) -> SimComponent: ...
1414
+ @Item.setter
1415
+ def Item(self, value: SimComponent) -> SimComponent: ...
1416
+ @property
1417
+ def LastChange(self) -> DateTime: ...
1418
+ @property
1419
+ def ProjectData(self) -> ProjectData: ...
1420
+ def EndLoading(self) -> None: ...
1421
+ def Merge(self, source: IEnumerable_1[SimComponent]) -> None: ...
1422
+ def OnGeometryResourceDeleted(self, resourceId: int) -> None: ...
1423
+ def RemoveAllAssets(self) -> None: ...
1424
+ def RestoreDefaultTaxonomyReferences(self, taxonomyFileVersion: int = ...) -> None: ...
1425
+ def RestoreReferences(self, networkElements: Dictionary_2[SimObjectId, SimFlowNetworkElement]) -> None: ...
1426
+ def StartLoading(self) -> None: ...
1427
+
1428
+
1429
+ class SimComponentContentSorting(typing.SupportsInt):
1430
+ @typing.overload
1431
+ def __init__(self, value : int) -> None: ...
1432
+ @typing.overload
1433
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1434
+ def __int__(self) -> int: ...
1435
+
1436
+ # Values:
1437
+ ByName : SimComponentContentSorting # 0
1438
+ BySlot : SimComponentContentSorting # 1
1439
+
1440
+
1441
+ class SimComponentInstance(SimNamedObject_1[SimComponentCollection]):
1442
+ @typing.overload
1443
+ def __init__(self) -> None: ...
1444
+ @typing.overload
1445
+ def __init__(self, networkElement: SimFlowNetworkElement) -> None: ...
1446
+ @typing.overload
1447
+ def __init__(self, placementType: SimInstanceType, fileId: int, geometryId: int) -> None: ...
1448
+ @typing.overload
1449
+ def __init__(self, port: SimNetworkPort) -> None: ...
1450
+ @typing.overload
1451
+ def __init__(self, simNetworkBlock: SimNetworkBlock) -> None: ...
1452
+ @property
1453
+ def Component(self) -> SimComponent: ...
1454
+ @Component.setter
1455
+ def Component(self, value: SimComponent) -> SimComponent: ...
1456
+ @property
1457
+ def Description(self) -> str: ...
1458
+ @Description.setter
1459
+ def Description(self, value: str) -> str: ...
1460
+ @property
1461
+ def Factory(self) -> SimComponentCollection: ...
1462
+ @Factory.setter
1463
+ def Factory(self, value: SimComponentCollection) -> SimComponentCollection: ...
1464
+ @property
1465
+ def GlobalID(self) -> Guid: ...
1466
+ @property
1467
+ def Id(self) -> SimId: ...
1468
+ @Id.setter
1469
+ def Id(self, value: SimId) -> SimId: ...
1470
+ @property
1471
+ def InstanceParameterValuesPersistent(self) -> SimInstanceParameterCollection: ...
1472
+ @property
1473
+ def InstanceParameterValuesTemporary(self) -> SimInstanceParameterCollection: ...
1474
+ @property
1475
+ def InstanceRotation(self) -> SimQuaternion: ...
1476
+ @InstanceRotation.setter
1477
+ def InstanceRotation(self, value: SimQuaternion) -> SimQuaternion: ...
1478
+ @property
1479
+ def InstanceSize(self) -> SimInstanceSize: ...
1480
+ @InstanceSize.setter
1481
+ def InstanceSize(self, value: SimInstanceSize) -> SimInstanceSize: ...
1482
+ @property
1483
+ def LoadingSimNetworkElmentId(self) -> SimId: ...
1484
+ @LoadingSimNetworkElmentId.setter
1485
+ def LoadingSimNetworkElmentId(self, value: SimId) -> SimId: ...
1486
+ @property
1487
+ def LocalID(self) -> int: ...
1488
+ @property
1489
+ def Name(self) -> str: ...
1490
+ @Name.setter
1491
+ def Name(self, value: str) -> str: ...
1492
+ @property
1493
+ def Placements(self) -> SimComponentInstance.SimInstancePlacementCollection: ...
1494
+ @property
1495
+ def PropagateParameterChanges(self) -> bool: ...
1496
+ @PropagateParameterChanges.setter
1497
+ def PropagateParameterChanges(self, value: bool) -> bool: ...
1498
+ @property
1499
+ def SizeTransfer(self) -> ISimInstanceSizeTransferDefinition: ...
1500
+ @SizeTransfer.setter
1501
+ def SizeTransfer(self, value: ISimInstanceSizeTransferDefinition) -> ISimInstanceSizeTransferDefinition: ...
1502
+ @property
1503
+ def State(self) -> SimInstanceState: ...
1504
+ @State.setter
1505
+ def State(self, value: SimInstanceState) -> SimInstanceState: ...
1506
+ def EvaluateSizeTransferItem(self, item: SimInstanceSizeTransferDefinitionItem, currentSize: float) -> float: ...
1507
+ def OnIsBeingDeleted(self) -> None: ...
1508
+ def Reset(self) -> None: ...
1509
+ def RestoreReferences(self, networkElements: Dictionary_2[SimObjectId, SimFlowNetworkElement]) -> None: ...
1510
+ def SetSize(self, size: SimInstanceSize, sizeTransfers: ISimInstanceSizeTransferDefinition) -> None: ...
1511
+
1512
+ class IsBeingDeletedEventHandler(MulticastDelegate):
1513
+ def __init__(self, object: typing.Any, method: int) -> None: ...
1514
+ @property
1515
+ def Method(self) -> MethodInfo: ...
1516
+ @property
1517
+ def Target(self) -> typing.Any: ...
1518
+ def BeginInvoke(self, sender: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
1519
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
1520
+ def Invoke(self, sender: typing.Any) -> None: ...
1521
+
1522
+
1523
+ class SimInstanceParameterCollectionPersistent(SimInstanceParameterCollection):
1524
+ def __init__(self, owner: SimComponentInstance) -> None: ...
1525
+ @property
1526
+ def Count(self) -> int: ...
1527
+ @property
1528
+ def Item(self) -> typing.Any: ...
1529
+ @Item.setter
1530
+ def Item(self, value: typing.Any) -> typing.Any: ...
1531
+ @property
1532
+ def Keys(self) -> IEnumerable_1[SimBaseParameter]: ...
1533
+
1534
+
1535
+ class SimInstanceParameterCollectionTemporary(SimInstanceParameterCollection):
1536
+ def __init__(self, owner: SimComponentInstance) -> None: ...
1537
+ @property
1538
+ def Count(self) -> int: ...
1539
+ @property
1540
+ def Item(self) -> typing.Any: ...
1541
+ @Item.setter
1542
+ def Item(self, value: typing.Any) -> typing.Any: ...
1543
+ @property
1544
+ def Keys(self) -> IEnumerable_1[SimBaseParameter]: ...
1545
+
1546
+
1547
+ class SimInstancePlacementCollection(ObservableCollection_1[SimInstancePlacement]):
1548
+ def __init__(self, owner: SimComponentInstance) -> None: ...
1549
+ @property
1550
+ def Count(self) -> int: ...
1551
+ @property
1552
+ def Item(self) -> SimInstancePlacement: ...
1553
+ @Item.setter
1554
+ def Item(self, value: SimInstancePlacement) -> SimInstancePlacement: ...
1555
+
1556
+
1557
+
1558
+ class SimComponentReference(INotifyPropertyChanged):
1559
+ @typing.overload
1560
+ def __init__(self, slot: SimSlot) -> None: ...
1561
+ @typing.overload
1562
+ def __init__(self, slot: SimSlot, target: SimComponent) -> None: ...
1563
+ @typing.overload
1564
+ def __init__(self, slot: SimSlot, targetId: SimId) -> None: ...
1565
+ @property
1566
+ def Owner(self) -> SimComponent: ...
1567
+ @Owner.setter
1568
+ def Owner(self, value: SimComponent) -> SimComponent: ...
1569
+ @property
1570
+ def Slot(self) -> SimSlot: ...
1571
+ @Slot.setter
1572
+ def Slot(self, value: SimSlot) -> SimSlot: ...
1573
+ @property
1574
+ def Target(self) -> SimComponent: ...
1575
+ @Target.setter
1576
+ def Target(self, value: SimComponent) -> SimComponent: ...
1577
+ @property
1578
+ def TargetId(self) -> SimId: ...
1579
+ @TargetId.setter
1580
+ def TargetId(self, value: SimId) -> SimId: ...
1581
+
1582
+
1583
+ class SimComponentSlotsCollection(ObservableCollection_1[SimTaxonomyEntryReference]):
1584
+ def __init__(self, component: SimComponent) -> None: ...
1585
+ @property
1586
+ def Count(self) -> int: ...
1587
+ @property
1588
+ def Item(self) -> SimTaxonomyEntryReference: ...
1589
+ @Item.setter
1590
+ def Item(self, value: SimTaxonomyEntryReference) -> SimTaxonomyEntryReference: ...
1591
+
1592
+
1593
+ class SimComponentValidity(typing.SupportsInt):
1594
+ @typing.overload
1595
+ def __init__(self, value : int) -> None: ...
1596
+ @typing.overload
1597
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1598
+ def __int__(self) -> int: ...
1599
+
1600
+ # Values:
1601
+ WriteAfterSupervize : SimComponentValidity # 1
1602
+ WriteAfterRelease : SimComponentValidity # 2
1603
+ SupervizeAfterRelease : SimComponentValidity # 3
1604
+ Valid : SimComponentValidity # 4
1605
+
1606
+
1607
+ class SimComponentVisibility(typing.SupportsInt):
1608
+ @typing.overload
1609
+ def __init__(self, value : int) -> None: ...
1610
+ @typing.overload
1611
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1612
+ def __int__(self) -> int: ...
1613
+
1614
+ # Values:
1615
+ AlwaysVisible : SimComponentVisibility # 0
1616
+ VisibleInProject : SimComponentVisibility # 1
1617
+ Hidden : SimComponentVisibility # 2
1618
+
1619
+
1620
+ class SimDefaultSlotKeys(abc.ABC):
1621
+ Acoustics : str
1622
+ AirCondition : str
1623
+ Areas : str
1624
+ ArtificialLight : str
1625
+ Calculation : str
1626
+ Communication : str
1627
+ Composite : str
1628
+ ConnectedTo : str
1629
+ Cost : str
1630
+ Distribution : str
1631
+ Electrical : str
1632
+ FireSafety : str
1633
+ Generator : str
1634
+ GeometricReference : str
1635
+ Heating : str
1636
+ Humidity : str
1637
+ Import : str
1638
+ Item : str
1639
+ Joint : str
1640
+ Layer : str
1641
+ Length : str
1642
+ List : str
1643
+ Material : str
1644
+ MSR : str
1645
+ NaturalLight : str
1646
+ Object : str
1647
+ Opening : str
1648
+ Regulation : str
1649
+ Sewage : str
1650
+ Size : str
1651
+ Specification : str
1652
+ System : str
1653
+ TaxonomyKey : str
1654
+ Transport : str
1655
+ TransportPart : str
1656
+ TransportPipe : str
1657
+ Tuple : str
1658
+ Undefined : str
1659
+ Volumes : str
1660
+ Water : str
1661
+ @staticmethod
1662
+ def GetDefaultSlot(taxonomies: SimTaxonomyCollection, slotTaxonomyEntryKey: str) -> SimTaxonomyEntry: ...
1663
+ @staticmethod
1664
+ def GetReservedTaxonomyEntry(taxonomies: SimTaxonomyCollection, key: str) -> SimTaxonomyEntry: ...
1665
+
1666
+
1667
+ class SimDefaultSlots(abc.ABC):
1668
+ Acoustics : str
1669
+ Areas : str
1670
+ ArtificialLight : str
1671
+ Calculation : str
1672
+ Communication : str
1673
+ COMP_SLOT_DELIMITER : str
1674
+ Composite : str
1675
+ ConnectsTo : str
1676
+ Cooling : str
1677
+ Cost : str
1678
+ Distributer : str
1679
+ Electrical : str
1680
+ FireSafety : str
1681
+ Heating : str
1682
+ Humidity : str
1683
+ Import : str
1684
+ Item : str
1685
+ Joint : str
1686
+ Layer : str
1687
+ Length : str
1688
+ List : str
1689
+ Material : str
1690
+ MSR : str
1691
+ NaturalLight : str
1692
+ Object : str
1693
+ Opening : str
1694
+ Position : str
1695
+ Producer : str
1696
+ Regulation : str
1697
+ Sewage : str
1698
+ Size : str
1699
+ Specification : str
1700
+ Splitter : str
1701
+ SplitterPart : str
1702
+ SplitterPipe : str
1703
+ System : str
1704
+ Tuple : str
1705
+ Undefined : str
1706
+ Volumes : str
1707
+ Water : str
1708
+ @staticmethod
1709
+ def SplitExtensionSlot(storedSlot: str) -> ValueTuple_3[str, str, bool]: ...
1710
+
1711
+
1712
+ class SimDoubleParameter(SimBaseNumericParameter_1[float]):
1713
+ @typing.overload
1714
+ def __init__(self, name: str, unit: str, value: float, allowedOperations: SimParameterOperations = ...) -> None: ...
1715
+ @typing.overload
1716
+ def __init__(self, name: str, unit: str, value: float, minValue: float, maxValue: float, allowedOperations: SimParameterOperations = ...) -> None: ...
1717
+ @typing.overload
1718
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, unit: str, value: float, allowedOperations: SimParameterOperations = ...) -> None: ...
1719
+ @typing.overload
1720
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, unit: str, value: float, minValue: float, maxValue: float, allowedOperations: SimParameterOperations = ...) -> None: ...
1721
+ @property
1722
+ def AllowedOperations(self) -> SimParameterOperations: ...
1723
+ @AllowedOperations.setter
1724
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
1725
+ @property
1726
+ def Category(self) -> SimCategory: ...
1727
+ @Category.setter
1728
+ def Category(self, value: SimCategory) -> SimCategory: ...
1729
+ @property
1730
+ def Component(self) -> SimComponent: ...
1731
+ @Component.setter
1732
+ def Component(self, value: SimComponent) -> SimComponent: ...
1733
+ @property
1734
+ def Description(self) -> str: ...
1735
+ @Description.setter
1736
+ def Description(self, value: str) -> str: ...
1737
+ @property
1738
+ def Factory(self) -> ISimManagedCollection: ...
1739
+ @Factory.setter
1740
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
1741
+ @property
1742
+ def GlobalID(self) -> Guid: ...
1743
+ @property
1744
+ def Id(self) -> SimId: ...
1745
+ @Id.setter
1746
+ def Id(self, value: SimId) -> SimId: ...
1747
+ @property
1748
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
1749
+ @InstancePropagationMode.setter
1750
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
1751
+ @property
1752
+ def IsAutomaticallyGenerated(self) -> bool: ...
1753
+ @IsAutomaticallyGenerated.setter
1754
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
1755
+ @property
1756
+ def LocalID(self) -> int: ...
1757
+ @property
1758
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
1759
+ @NameTaxonomyEntry.setter
1760
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
1761
+ @property
1762
+ def Propagation(self) -> SimInfoFlow: ...
1763
+ @Propagation.setter
1764
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
1765
+ @property
1766
+ def ReferencingCalculations(self) -> IReadOnlyList_1[SimCalculation]: ...
1767
+ @property
1768
+ def State(self) -> SimParameterState: ...
1769
+ @property
1770
+ def Unit(self) -> str: ...
1771
+ @Unit.setter
1772
+ def Unit(self, value: str) -> str: ...
1773
+ @property
1774
+ def Value(self) -> float: ...
1775
+ @Value.setter
1776
+ def Value(self, value: float) -> float: ...
1777
+ @property
1778
+ def Value(self) -> typing.Any: ...
1779
+ @property
1780
+ def ValueMax(self) -> float: ...
1781
+ @ValueMax.setter
1782
+ def ValueMax(self, value: float) -> float: ...
1783
+ @property
1784
+ def ValueMin(self) -> float: ...
1785
+ @ValueMin.setter
1786
+ def ValueMin(self, value: float) -> float: ...
1787
+ @property
1788
+ def ValueSource(self) -> SimParameterValueSource: ...
1789
+ @ValueSource.setter
1790
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
1791
+ def Clone(self) -> SimBaseParameter: ...
1792
+ @staticmethod
1793
+ def ConvertFromValue(value: typing.Any) -> float: ...
1794
+ def ConvertValueFrom(self, value: typing.Any) -> None: ...
1795
+ def SetToNeutral(self) -> None: ...
1796
+
1797
+
1798
+ class SimEnumParameter(SimBaseParameter_1[SimTaxonomyEntryReference]):
1799
+ @typing.overload
1800
+ def __init__(self, name: str, parentTaxonomyEntry: SimTaxonomyEntry, value: SimTaxonomyEntry = ..., allowedOperations: SimParameterOperations = ...) -> None: ...
1801
+ @typing.overload
1802
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, parentTaxonomyEntry: SimTaxonomyEntry, value: SimTaxonomyEntry = ..., allowedOperations: SimParameterOperations = ...) -> None: ...
1803
+ @property
1804
+ def AllowedOperations(self) -> SimParameterOperations: ...
1805
+ @AllowedOperations.setter
1806
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
1807
+ @property
1808
+ def Category(self) -> SimCategory: ...
1809
+ @Category.setter
1810
+ def Category(self, value: SimCategory) -> SimCategory: ...
1811
+ @property
1812
+ def Component(self) -> SimComponent: ...
1813
+ @Component.setter
1814
+ def Component(self, value: SimComponent) -> SimComponent: ...
1815
+ @property
1816
+ def Description(self) -> str: ...
1817
+ @Description.setter
1818
+ def Description(self, value: str) -> str: ...
1819
+ @property
1820
+ def Factory(self) -> ISimManagedCollection: ...
1821
+ @Factory.setter
1822
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
1823
+ @property
1824
+ def GlobalID(self) -> Guid: ...
1825
+ @property
1826
+ def Id(self) -> SimId: ...
1827
+ @Id.setter
1828
+ def Id(self, value: SimId) -> SimId: ...
1829
+ @property
1830
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
1831
+ @InstancePropagationMode.setter
1832
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
1833
+ @property
1834
+ def IsAutomaticallyGenerated(self) -> bool: ...
1835
+ @IsAutomaticallyGenerated.setter
1836
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
1837
+ @property
1838
+ def Items(self) -> SimChildTaxonomyEntryCollection: ...
1839
+ @property
1840
+ def LocalID(self) -> int: ...
1841
+ @property
1842
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
1843
+ @NameTaxonomyEntry.setter
1844
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
1845
+ @property
1846
+ def ParentTaxonomyEntryRef(self) -> SimTaxonomyEntryReference: ...
1847
+ @ParentTaxonomyEntryRef.setter
1848
+ def ParentTaxonomyEntryRef(self, value: SimTaxonomyEntryReference) -> SimTaxonomyEntryReference: ...
1849
+ @property
1850
+ def Propagation(self) -> SimInfoFlow: ...
1851
+ @Propagation.setter
1852
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
1853
+ @property
1854
+ def State(self) -> SimParameterState: ...
1855
+ @property
1856
+ def Value(self) -> SimTaxonomyEntryReference: ...
1857
+ @Value.setter
1858
+ def Value(self, value: SimTaxonomyEntryReference) -> SimTaxonomyEntryReference: ...
1859
+ @property
1860
+ def Value(self) -> typing.Any: ...
1861
+ @property
1862
+ def ValueSource(self) -> SimParameterValueSource: ...
1863
+ @ValueSource.setter
1864
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
1865
+ def Clone(self) -> SimBaseParameter: ...
1866
+ def ConvertValueFrom(self, value: typing.Any) -> None: ...
1867
+ def RestoreDefaultTaxonomyReferences(self, taxonomyFileVersion: int) -> None: ...
1868
+ def SetToNeutral(self) -> None: ...
1869
+
1870
+
1871
+ class SimInfoFlow(typing.SupportsInt):
1872
+ @typing.overload
1873
+ def __init__(self, value : int) -> None: ...
1874
+ @typing.overload
1875
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1876
+ def __int__(self) -> int: ...
1877
+
1878
+ # Values:
1879
+ Input : SimInfoFlow # 0
1880
+ Output : SimInfoFlow # 1
1881
+ Mixed : SimInfoFlow # 2
1882
+ FromReference : SimInfoFlow # 3
1883
+ Automatic : SimInfoFlow # 4
1884
+ FromExternal : SimInfoFlow # 6
1885
+
1886
+
1887
+ class SimInstanceConnectionState(typing.SupportsInt):
1888
+ @typing.overload
1889
+ def __init__(self, value : int) -> None: ...
1890
+ @typing.overload
1891
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1892
+ def __int__(self) -> int: ...
1893
+
1894
+ # Values:
1895
+ Ok : SimInstanceConnectionState # 0
1896
+ GeometryDeleted : SimInstanceConnectionState # 1
1897
+ GeometryNotFound : SimInstanceConnectionState # 2
1898
+
1899
+
1900
+ class SimInstanceParameterCollection(IEnumerable_1[KeyValuePair_2[SimBaseParameter, typing.Any]], abc.ABC):
1901
+ @property
1902
+ def Count(self) -> int: ...
1903
+ @property
1904
+ def Item(self) -> typing.Any: ...
1905
+ @Item.setter
1906
+ def Item(self, value: typing.Any) -> typing.Any: ...
1907
+ @property
1908
+ def Keys(self) -> IEnumerable_1[SimBaseParameter]: ...
1909
+ def Contains(self, parameter: SimBaseParameter) -> bool: ...
1910
+ def GetEnumerator(self) -> IEnumerator_1[KeyValuePair_2[SimBaseParameter, typing.Any]]: ...
1911
+ # Skipped GetRecords due to it being static, abstract and generic.
1912
+
1913
+ GetRecords : GetRecords_MethodGroup
1914
+ class GetRecords_MethodGroup:
1915
+ @typing.overload
1916
+ def __getitem__(self, t:typing.Type[GetRecords_1_T1]) -> GetRecords_1[GetRecords_1_T1]: ...
1917
+
1918
+ GetRecords_1_T1 = typing.TypeVar('GetRecords_1_T1')
1919
+ class GetRecords_1(typing.Generic[GetRecords_1_T1]):
1920
+ GetRecords_1_T = SimInstanceParameterCollection.GetRecords_MethodGroup.GetRecords_1_T1
1921
+ def __call__(self) -> List_1[KeyValuePair_2[SimBaseParameter, GetRecords_1_T]]:...
1922
+
1923
+ @typing.overload
1924
+ def __getitem__(self, t:typing.Tuple[typing.Type[GetRecords_2_T1], typing.Type[GetRecords_2_T2]]) -> GetRecords_2[GetRecords_2_T1, GetRecords_2_T2]: ...
1925
+
1926
+ GetRecords_2_T1 = typing.TypeVar('GetRecords_2_T1')
1927
+ GetRecords_2_T2 = typing.TypeVar('GetRecords_2_T2')
1928
+ class GetRecords_2(typing.Generic[GetRecords_2_T1, GetRecords_2_T2]):
1929
+ GetRecords_2_K = SimInstanceParameterCollection.GetRecords_MethodGroup.GetRecords_2_T1
1930
+ GetRecords_2_T = SimInstanceParameterCollection.GetRecords_MethodGroup.GetRecords_2_T2
1931
+ def __call__(self) -> List_1[KeyValuePair_2[GetRecords_2_K, GetRecords_2_T]]:...
1932
+
1933
+
1934
+ # Skipped TryGetValue due to it being static, abstract and generic.
1935
+
1936
+ TryGetValue : TryGetValue_MethodGroup
1937
+ class TryGetValue_MethodGroup:
1938
+ def __getitem__(self, t:typing.Type[TryGetValue_1_T1]) -> TryGetValue_1[TryGetValue_1_T1]: ...
1939
+
1940
+ TryGetValue_1_T1 = typing.TypeVar('TryGetValue_1_T1')
1941
+ class TryGetValue_1(typing.Generic[TryGetValue_1_T1]):
1942
+ TryGetValue_1_T = SimInstanceParameterCollection.TryGetValue_MethodGroup.TryGetValue_1_T1
1943
+ def __call__(self, key: SimBaseParameter_1[TryGetValue_1_T], value: clr.Reference[TryGetValue_1_T]) -> bool:...
1944
+
1945
+ def __call__(self, key: SimBaseParameter, value: clr.Reference[typing.Any]) -> bool:...
1946
+
1947
+
1948
+
1949
+ class SimInstancePlacement(INotifyPropertyChanged, abc.ABC):
1950
+ def __init__(self, instanceType: SimInstanceType) -> None: ...
1951
+ @property
1952
+ def Instance(self) -> SimComponentInstance: ...
1953
+ @Instance.setter
1954
+ def Instance(self, value: SimComponentInstance) -> SimComponentInstance: ...
1955
+ @property
1956
+ def InstanceType(self) -> SimInstanceType: ...
1957
+ @InstanceType.setter
1958
+ def InstanceType(self, value: SimInstanceType) -> SimInstanceType: ...
1959
+ @property
1960
+ def State(self) -> SimInstancePlacementState: ...
1961
+ @State.setter
1962
+ def State(self, value: SimInstancePlacementState) -> SimInstancePlacementState: ...
1963
+ @abc.abstractmethod
1964
+ def AddToTarget(self) -> None: ...
1965
+ @abc.abstractmethod
1966
+ def RemoveFromTarget(self) -> None: ...
1967
+
1968
+
1969
+ class SimInstancePlacementGeometry(SimInstancePlacement):
1970
+ def __init__(self, fileId: int, geometryId: int, instanceType: SimInstanceType, state: SimInstancePlacementState = ...) -> None: ...
1971
+ @property
1972
+ def FileId(self) -> int: ...
1973
+ @FileId.setter
1974
+ def FileId(self, value: int) -> int: ...
1975
+ @property
1976
+ def GeometryId(self) -> int: ...
1977
+ @GeometryId.setter
1978
+ def GeometryId(self, value: int) -> int: ...
1979
+ @property
1980
+ def Instance(self) -> SimComponentInstance: ...
1981
+ @Instance.setter
1982
+ def Instance(self, value: SimComponentInstance) -> SimComponentInstance: ...
1983
+ @property
1984
+ def InstanceType(self) -> SimInstanceType: ...
1985
+ @InstanceType.setter
1986
+ def InstanceType(self, value: SimInstanceType) -> SimInstanceType: ...
1987
+ @property
1988
+ def IsValid(self) -> bool: ...
1989
+ @property
1990
+ def State(self) -> SimInstancePlacementState: ...
1991
+ @State.setter
1992
+ def State(self, value: SimInstancePlacementState) -> SimInstancePlacementState: ...
1993
+ def AddToTarget(self) -> None: ...
1994
+ def RemoveFromTarget(self) -> None: ...
1995
+
1996
+
1997
+ class SimInstancePlacementNetwork(SimInstancePlacement):
1998
+ def __init__(self, networkElement: SimFlowNetworkElement, instanceType: SimInstanceType) -> None: ...
1999
+ @property
2000
+ def Instance(self) -> SimComponentInstance: ...
2001
+ @Instance.setter
2002
+ def Instance(self, value: SimComponentInstance) -> SimComponentInstance: ...
2003
+ @property
2004
+ def InstanceType(self) -> SimInstanceType: ...
2005
+ @InstanceType.setter
2006
+ def InstanceType(self, value: SimInstanceType) -> SimInstanceType: ...
2007
+ @property
2008
+ def NetworkElement(self) -> SimFlowNetworkElement: ...
2009
+ @NetworkElement.setter
2010
+ def NetworkElement(self, value: SimFlowNetworkElement) -> SimFlowNetworkElement: ...
2011
+ @classmethod
2012
+ @property
2013
+ def SCALE_PIXEL_TO_M(cls) -> float: ...
2014
+ @property
2015
+ def State(self) -> SimInstancePlacementState: ...
2016
+ @State.setter
2017
+ def State(self, value: SimInstancePlacementState) -> SimInstancePlacementState: ...
2018
+ def AddToTarget(self) -> None: ...
2019
+ def RemoveFromTarget(self) -> None: ...
2020
+
2021
+
2022
+ class SimInstancePlacementSimNetwork(SimInstancePlacement):
2023
+ def __init__(self, networkElement: IElementWithComponent, instanceType: SimInstanceType) -> None: ...
2024
+ @property
2025
+ def Instance(self) -> SimComponentInstance: ...
2026
+ @Instance.setter
2027
+ def Instance(self, value: SimComponentInstance) -> SimComponentInstance: ...
2028
+ @property
2029
+ def InstanceType(self) -> SimInstanceType: ...
2030
+ @InstanceType.setter
2031
+ def InstanceType(self, value: SimInstanceType) -> SimInstanceType: ...
2032
+ @property
2033
+ def NetworkElement(self) -> IElementWithComponent: ...
2034
+ @NetworkElement.setter
2035
+ def NetworkElement(self, value: IElementWithComponent) -> IElementWithComponent: ...
2036
+ @property
2037
+ def State(self) -> SimInstancePlacementState: ...
2038
+ @State.setter
2039
+ def State(self, value: SimInstancePlacementState) -> SimInstancePlacementState: ...
2040
+ def AddToTarget(self) -> None: ...
2041
+ def RemoveFromTarget(self) -> None: ...
2042
+
2043
+
2044
+ class SimInstancePlacementState(typing.SupportsInt):
2045
+ @typing.overload
2046
+ def __init__(self, value : int) -> None: ...
2047
+ @typing.overload
2048
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2049
+ def __int__(self) -> int: ...
2050
+
2051
+ # Values:
2052
+ Valid : SimInstancePlacementState # 0
2053
+ InstanceTargetMissing : SimInstancePlacementState # 1
2054
+
2055
+
2056
+ class SimInstanceSize(IEquatable_1[SimInstanceSize]):
2057
+ def __init__(self, min: SimVector3D, max: SimVector3D) -> None: ...
2058
+ @classmethod
2059
+ @property
2060
+ def Default(cls) -> SimInstanceSize: ...
2061
+ @property
2062
+ def Max(self) -> SimVector3D: ...
2063
+ @property
2064
+ def Min(self) -> SimVector3D: ...
2065
+ def Clone(self) -> SimInstanceSize: ...
2066
+ @staticmethod
2067
+ def FromList(values: List_1[float]) -> SimInstanceSize: ...
2068
+ def GetHashCode(self) -> int: ...
2069
+ def __eq__(self, lhs: SimInstanceSize, rhs: SimInstanceSize) -> bool: ...
2070
+ def __ne__(self, lhs: SimInstanceSize, rhs: SimInstanceSize) -> bool: ...
2071
+ def ToList(self) -> List_1[float]: ...
2072
+ # Skipped Equals due to it being static, abstract and generic.
2073
+
2074
+ Equals : Equals_MethodGroup
2075
+ class Equals_MethodGroup:
2076
+ @typing.overload
2077
+ def __call__(self, other: SimInstanceSize) -> bool:...
2078
+ @typing.overload
2079
+ def __call__(self, obj: typing.Any) -> bool:...
2080
+
2081
+
2082
+
2083
+ class SimInstanceSizeIndex(typing.SupportsInt):
2084
+ @typing.overload
2085
+ def __init__(self, value : int) -> None: ...
2086
+ @typing.overload
2087
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2088
+ def __int__(self) -> int: ...
2089
+
2090
+ # Values:
2091
+ MinX : SimInstanceSizeIndex # 0
2092
+ MinY : SimInstanceSizeIndex # 1
2093
+ MinZ : SimInstanceSizeIndex # 2
2094
+ MaxX : SimInstanceSizeIndex # 3
2095
+ MaxY : SimInstanceSizeIndex # 4
2096
+ MaxZ : SimInstanceSizeIndex # 5
2097
+
2098
+
2099
+ class SimInstanceSizeTransferDefinition(ISimInstanceSizeTransferDefinition):
2100
+ @typing.overload
2101
+ def __init__(self) -> None: ...
2102
+ @typing.overload
2103
+ def __init__(self, items: IEnumerable_1[SimInstanceSizeTransferDefinitionItem]) -> None: ...
2104
+ @property
2105
+ def Item(self) -> SimInstanceSizeTransferDefinitionItem: ...
2106
+ @Item.setter
2107
+ def Item(self, value: SimInstanceSizeTransferDefinitionItem) -> SimInstanceSizeTransferDefinitionItem: ...
2108
+ def Clone(self) -> ISimInstanceSizeTransferDefinition: ...
2109
+ def GetEnumerator(self) -> IEnumerator_1[SimInstanceSizeTransferDefinitionItem]: ...
2110
+ def RestoreReferences(self, instance: SimComponentInstance) -> None: ...
2111
+
2112
+
2113
+ class SimInstanceSizeTransferDefinitionItem:
2114
+ def __init__(self, source: SimInstanceSizeTransferSource, parameter: SimDoubleParameter, addend: float) -> None: ...
2115
+ @property
2116
+ def Addend(self) -> float: ...
2117
+ @property
2118
+ def Parameter(self) -> SimDoubleParameter: ...
2119
+ @Parameter.setter
2120
+ def Parameter(self, value: SimDoubleParameter) -> SimDoubleParameter: ...
2121
+ @property
2122
+ def Source(self) -> SimInstanceSizeTransferSource: ...
2123
+ def Clone(self) -> SimInstanceSizeTransferDefinitionItem: ...
2124
+ def RestoreReferences(self, ids: SimIdGenerator, instance: SimComponentInstance) -> None: ...
2125
+
2126
+
2127
+ class SimInstanceSizeTransferSource(typing.SupportsInt):
2128
+ @typing.overload
2129
+ def __init__(self, value : int) -> None: ...
2130
+ @typing.overload
2131
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2132
+ def __int__(self) -> int: ...
2133
+
2134
+ # Values:
2135
+ User : SimInstanceSizeTransferSource # 0
2136
+ Parameter : SimInstanceSizeTransferSource # 1
2137
+ Path : SimInstanceSizeTransferSource # 2
2138
+
2139
+
2140
+ class SimInstanceState:
2141
+ @typing.overload
2142
+ def __init__(self, isRealized: bool) -> None: ...
2143
+ @typing.overload
2144
+ def __init__(self, isRealized: bool, connectionState: SimInstanceConnectionState) -> None: ...
2145
+ @property
2146
+ def ConnectionState(self) -> SimInstanceConnectionState: ...
2147
+ @property
2148
+ def IsRealized(self) -> bool: ...
2149
+ def Equals(self, obj: typing.Any) -> bool: ...
2150
+ def GetHashCode(self) -> int: ...
2151
+ def __eq__(self, lhs: SimInstanceState, rhs: SimInstanceState) -> bool: ...
2152
+ def __ne__(self, lhs: SimInstanceState, rhs: SimInstanceState) -> bool: ...
2153
+ def ToString(self) -> str: ...
2154
+
2155
+
2156
+ class SimInstanceType(typing.SupportsInt):
2157
+ @typing.overload
2158
+ def __init__(self, value : int) -> None: ...
2159
+ @typing.overload
2160
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2161
+ def __int__(self) -> int: ...
2162
+
2163
+ # Values:
2164
+ None_ : SimInstanceType # 0
2165
+ Entity3D : SimInstanceType # 1
2166
+ AttributesFace : SimInstanceType # 2
2167
+ NetworkNode : SimInstanceType # 4
2168
+ NetworkEdge : SimInstanceType # 8
2169
+ Group : SimInstanceType # 16
2170
+ BuiltStructure : SimInstanceType # 32
2171
+ InPort : SimInstanceType # 64
2172
+ OutPort : SimInstanceType # 128
2173
+ AttributesEdge : SimInstanceType # 256
2174
+ AttributesPoint : SimInstanceType # 512
2175
+ ActiveTypes : SimInstanceType # 803
2176
+ SimNetworkBlock : SimInstanceType # 1024
2177
+ NetworkTypes : SimInstanceType # 1228
2178
+ GeometricVolume : SimInstanceType # 1073741824
2179
+ GeometricSurface : SimInstanceType # 2147483648
2180
+
2181
+
2182
+ class SimIntegerParameter(SimBaseNumericParameter_1[int]):
2183
+ @typing.overload
2184
+ def __init__(self, name: str, unit: str, value: int, allowedOperations: SimParameterOperations = ...) -> None: ...
2185
+ @typing.overload
2186
+ def __init__(self, name: str, unit: str, value: int, minValue: int, maxValue: int, allowedOperations: SimParameterOperations = ...) -> None: ...
2187
+ @typing.overload
2188
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, unit: str, value: int, allowedOperations: SimParameterOperations = ...) -> None: ...
2189
+ @typing.overload
2190
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, unit: str, value: int, minValue: int, maxValue: int, allowedOperations: SimParameterOperations = ...) -> None: ...
2191
+ @property
2192
+ def AllowedOperations(self) -> SimParameterOperations: ...
2193
+ @AllowedOperations.setter
2194
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
2195
+ @property
2196
+ def Category(self) -> SimCategory: ...
2197
+ @Category.setter
2198
+ def Category(self, value: SimCategory) -> SimCategory: ...
2199
+ @property
2200
+ def Component(self) -> SimComponent: ...
2201
+ @Component.setter
2202
+ def Component(self, value: SimComponent) -> SimComponent: ...
2203
+ @property
2204
+ def Description(self) -> str: ...
2205
+ @Description.setter
2206
+ def Description(self, value: str) -> str: ...
2207
+ @property
2208
+ def Factory(self) -> ISimManagedCollection: ...
2209
+ @Factory.setter
2210
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
2211
+ @property
2212
+ def GlobalID(self) -> Guid: ...
2213
+ @property
2214
+ def Id(self) -> SimId: ...
2215
+ @Id.setter
2216
+ def Id(self, value: SimId) -> SimId: ...
2217
+ @property
2218
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
2219
+ @InstancePropagationMode.setter
2220
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
2221
+ @property
2222
+ def IsAutomaticallyGenerated(self) -> bool: ...
2223
+ @IsAutomaticallyGenerated.setter
2224
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
2225
+ @property
2226
+ def LocalID(self) -> int: ...
2227
+ @property
2228
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
2229
+ @NameTaxonomyEntry.setter
2230
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
2231
+ @property
2232
+ def Propagation(self) -> SimInfoFlow: ...
2233
+ @Propagation.setter
2234
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
2235
+ @property
2236
+ def ReferencingCalculations(self) -> IReadOnlyList_1[SimCalculation]: ...
2237
+ @property
2238
+ def State(self) -> SimParameterState: ...
2239
+ @property
2240
+ def Unit(self) -> str: ...
2241
+ @Unit.setter
2242
+ def Unit(self, value: str) -> str: ...
2243
+ @property
2244
+ def Value(self) -> int: ...
2245
+ @Value.setter
2246
+ def Value(self, value: int) -> int: ...
2247
+ @property
2248
+ def Value(self) -> typing.Any: ...
2249
+ @property
2250
+ def ValueMax(self) -> int: ...
2251
+ @ValueMax.setter
2252
+ def ValueMax(self, value: int) -> int: ...
2253
+ @property
2254
+ def ValueMin(self) -> int: ...
2255
+ @ValueMin.setter
2256
+ def ValueMin(self, value: int) -> int: ...
2257
+ @property
2258
+ def ValueSource(self) -> SimParameterValueSource: ...
2259
+ @ValueSource.setter
2260
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
2261
+ def Clone(self) -> SimBaseParameter: ...
2262
+ @staticmethod
2263
+ def ConvertFromValue(value: typing.Any) -> int: ...
2264
+ def ConvertValueFrom(self, value: typing.Any) -> None: ...
2265
+ def SetToNeutral(self) -> None: ...
2266
+
2267
+
2268
+ class SimMultiValueExpression(abc.ABC):
2269
+ @abc.abstractmethod
2270
+ def Calculate(self, calculation: SimCalculation) -> Array_1[float]: ...
2271
+ @abc.abstractmethod
2272
+ def Clone(self) -> SimMultiValueExpression: ...
2273
+
2274
+
2275
+ class SimMultiValueExpressionBinary(SimMultiValueExpression, INotifyPropertyChanged):
2276
+ def __init__(self, operation: MultiValueCalculationBinaryOperation) -> None: ...
2277
+ @property
2278
+ def Left(self) -> SimMultiValueExpression: ...
2279
+ @Left.setter
2280
+ def Left(self, value: SimMultiValueExpression) -> SimMultiValueExpression: ...
2281
+ @property
2282
+ def Operation(self) -> MultiValueCalculationBinaryOperation: ...
2283
+ @Operation.setter
2284
+ def Operation(self, value: MultiValueCalculationBinaryOperation) -> MultiValueCalculationBinaryOperation: ...
2285
+ @property
2286
+ def Right(self) -> SimMultiValueExpression: ...
2287
+ @Right.setter
2288
+ def Right(self, value: SimMultiValueExpression) -> SimMultiValueExpression: ...
2289
+ def Calculate(self, calculation: SimCalculation) -> Array_1[float]: ...
2290
+ def Clone(self) -> SimMultiValueExpression: ...
2291
+
2292
+
2293
+ class SimMultiValueExpressionDoubleConstant(SimMultiValueExpression):
2294
+ def __init__(self, value: float) -> None: ...
2295
+ @property
2296
+ def Value(self) -> float: ...
2297
+ def Calculate(self, calculation: SimCalculation) -> Array_1[float]: ...
2298
+ def Clone(self) -> SimMultiValueExpression: ...
2299
+
2300
+
2301
+ class SimMultiValueExpressionParameter(SimMultiValueExpression):
2302
+ def __init__(self, symbol: str) -> None: ...
2303
+ @property
2304
+ def Symbol(self) -> str: ...
2305
+ @Symbol.setter
2306
+ def Symbol(self, value: str) -> str: ...
2307
+ def Calculate(self, calculation: SimCalculation) -> Array_1[float]: ...
2308
+ def Clone(self) -> SimMultiValueExpression: ...
2309
+
2310
+
2311
+ class SimMultiValueExpressionUnary(SimMultiValueExpression):
2312
+ def __init__(self, operation: MultiValueCalculationUnaryOperation) -> None: ...
2313
+ @property
2314
+ def Operand(self) -> SimMultiValueExpression: ...
2315
+ @Operand.setter
2316
+ def Operand(self, value: SimMultiValueExpression) -> SimMultiValueExpression: ...
2317
+ @property
2318
+ def Operation(self) -> MultiValueCalculationUnaryOperation: ...
2319
+ @Operation.setter
2320
+ def Operation(self, value: MultiValueCalculationUnaryOperation) -> MultiValueCalculationUnaryOperation: ...
2321
+ def Calculate(self, calculation: SimCalculation) -> Array_1[float]: ...
2322
+ def Clone(self) -> SimMultiValueExpression: ...
2323
+
2324
+
2325
+ class SimParameterInstancePropagation(typing.SupportsInt):
2326
+ @typing.overload
2327
+ def __init__(self, value : int) -> None: ...
2328
+ @typing.overload
2329
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2330
+ def __int__(self) -> int: ...
2331
+
2332
+ # Values:
2333
+ PropagateIfInstance : SimParameterInstancePropagation # 0
2334
+ PropagateNever : SimParameterInstancePropagation # 1
2335
+ PropagateAlways : SimParameterInstancePropagation # 2
2336
+
2337
+
2338
+ class SimParameterOperations(typing.SupportsInt):
2339
+ @typing.overload
2340
+ def __init__(self, value : int) -> None: ...
2341
+ @typing.overload
2342
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2343
+ def __int__(self) -> int: ...
2344
+
2345
+ # Values:
2346
+ None_ : SimParameterOperations # 0
2347
+ EditValue : SimParameterOperations # 1
2348
+ EditName : SimParameterOperations # 2
2349
+ Move : SimParameterOperations # 4
2350
+ All : SimParameterOperations # 7
2351
+
2352
+
2353
+ class SimParameterState(typing.SupportsInt):
2354
+ @typing.overload
2355
+ def __init__(self, value : int) -> None: ...
2356
+ @typing.overload
2357
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2358
+ def __int__(self) -> int: ...
2359
+
2360
+ # Values:
2361
+ Valid : SimParameterState # 0
2362
+ ValueNaN : SimParameterState # 1
2363
+ ValueOutOfRange : SimParameterState # 2
2364
+ HidesReference : SimParameterState # 4
2365
+ ReferenceNotFound : SimParameterState # 8
2366
+
2367
+
2368
+ class SimParameterValueSource(INotifyPropertyChanged, IDisposable, abc.ABC):
2369
+ @property
2370
+ def TargetParameter(self) -> SimBaseParameter: ...
2371
+ @TargetParameter.setter
2372
+ def TargetParameter(self, value: SimBaseParameter) -> SimBaseParameter: ...
2373
+ @abc.abstractmethod
2374
+ def Clone(self) -> SimParameterValueSource: ...
2375
+ def Dispose(self) -> None: ...
2376
+ def RestoreDefaultTaxonomyReferences(self, project: ProjectData) -> None: ...
2377
+
2378
+
2379
+ class SimResultAggregationMethod(typing.SupportsInt):
2380
+ @typing.overload
2381
+ def __init__(self, value : int) -> None: ...
2382
+ @typing.overload
2383
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
2384
+ def __int__(self) -> int: ...
2385
+
2386
+ # Values:
2387
+ Separate : SimResultAggregationMethod # 0
2388
+ Average : SimResultAggregationMethod # 1
2389
+
2390
+
2391
+ class SimSlot(IEquatable_1[SimSlot]):
2392
+ @typing.overload
2393
+ def __init__(self, original: SimSlot) -> None: ...
2394
+ @typing.overload
2395
+ def __init__(self, slotBase: SimTaxonomyEntry, slotExtension: str) -> None: ...
2396
+ @typing.overload
2397
+ def __init__(self, slotBase: SimTaxonomyEntryReference, slotExtension: str) -> None: ...
2398
+ @classmethod
2399
+ @property
2400
+ def Invalid(cls) -> SimSlot: ...
2401
+ @property
2402
+ def SlotBase(self) -> SimTaxonomyEntryReference: ...
2403
+ @property
2404
+ def SlotExtension(self) -> str: ...
2405
+ def GetHashCode(self) -> int: ...
2406
+ def __eq__(self, lhs: SimSlot, rhs: SimSlot) -> bool: ...
2407
+ def __ne__(self, lhs: SimSlot, rhs: SimSlot) -> bool: ...
2408
+ # Skipped Equals due to it being static, abstract and generic.
2409
+
2410
+ Equals : Equals_MethodGroup
2411
+ class Equals_MethodGroup:
2412
+ @typing.overload
2413
+ def __call__(self, other: SimSlot) -> bool:...
2414
+ @typing.overload
2415
+ def __call__(self, obj: typing.Any) -> bool:...
2416
+
2417
+
2418
+
2419
+ class SimStringParameter(SimBaseParameter_1[str]):
2420
+ @typing.overload
2421
+ def __init__(self, name: str, value: str, allowedOperations: SimParameterOperations = ...) -> None: ...
2422
+ @typing.overload
2423
+ def __init__(self, nameTaxonomyEntry: SimTaxonomyEntry, value: str, allowedOperations: SimParameterOperations = ...) -> None: ...
2424
+ @property
2425
+ def AllowedOperations(self) -> SimParameterOperations: ...
2426
+ @AllowedOperations.setter
2427
+ def AllowedOperations(self, value: SimParameterOperations) -> SimParameterOperations: ...
2428
+ @property
2429
+ def Category(self) -> SimCategory: ...
2430
+ @Category.setter
2431
+ def Category(self, value: SimCategory) -> SimCategory: ...
2432
+ @property
2433
+ def Component(self) -> SimComponent: ...
2434
+ @Component.setter
2435
+ def Component(self, value: SimComponent) -> SimComponent: ...
2436
+ @property
2437
+ def Description(self) -> str: ...
2438
+ @Description.setter
2439
+ def Description(self, value: str) -> str: ...
2440
+ @property
2441
+ def Factory(self) -> ISimManagedCollection: ...
2442
+ @Factory.setter
2443
+ def Factory(self, value: ISimManagedCollection) -> ISimManagedCollection: ...
2444
+ @property
2445
+ def GlobalID(self) -> Guid: ...
2446
+ @property
2447
+ def Id(self) -> SimId: ...
2448
+ @Id.setter
2449
+ def Id(self, value: SimId) -> SimId: ...
2450
+ @property
2451
+ def InstancePropagationMode(self) -> SimParameterInstancePropagation: ...
2452
+ @InstancePropagationMode.setter
2453
+ def InstancePropagationMode(self, value: SimParameterInstancePropagation) -> SimParameterInstancePropagation: ...
2454
+ @property
2455
+ def IsAutomaticallyGenerated(self) -> bool: ...
2456
+ @IsAutomaticallyGenerated.setter
2457
+ def IsAutomaticallyGenerated(self, value: bool) -> bool: ...
2458
+ @property
2459
+ def LocalID(self) -> int: ...
2460
+ @property
2461
+ def NameTaxonomyEntry(self) -> SimTaxonomyEntryOrString: ...
2462
+ @NameTaxonomyEntry.setter
2463
+ def NameTaxonomyEntry(self, value: SimTaxonomyEntryOrString) -> SimTaxonomyEntryOrString: ...
2464
+ @property
2465
+ def Propagation(self) -> SimInfoFlow: ...
2466
+ @Propagation.setter
2467
+ def Propagation(self, value: SimInfoFlow) -> SimInfoFlow: ...
2468
+ @property
2469
+ def State(self) -> SimParameterState: ...
2470
+ @property
2471
+ def Value(self) -> str: ...
2472
+ @Value.setter
2473
+ def Value(self, value: str) -> str: ...
2474
+ @property
2475
+ def Value(self) -> typing.Any: ...
2476
+ @property
2477
+ def ValueSource(self) -> SimParameterValueSource: ...
2478
+ @ValueSource.setter
2479
+ def ValueSource(self, value: SimParameterValueSource) -> SimParameterValueSource: ...
2480
+ def Clone(self) -> SimBaseParameter: ...
2481
+ @staticmethod
2482
+ def ConvertFromValue(value: typing.Any) -> str: ...
2483
+ def ConvertValueFrom(self, value: typing.Any) -> None: ...
2484
+ def SetToNeutral(self) -> None: ...
2485
+
2486
+
2487
+ class SimUserComponentList(INotifyPropertyChanged):
2488
+ @typing.overload
2489
+ def __init__(self, name: str) -> None: ...
2490
+ @typing.overload
2491
+ def __init__(self, name: str, rootComponents: IEnumerable_1[SimComponent]) -> None: ...
2492
+ @property
2493
+ def Factory(self) -> SimUserComponentListCollection: ...
2494
+ @Factory.setter
2495
+ def Factory(self, value: SimUserComponentListCollection) -> SimUserComponentListCollection: ...
2496
+ @property
2497
+ def Name(self) -> str: ...
2498
+ @Name.setter
2499
+ def Name(self, value: str) -> str: ...
2500
+ @property
2501
+ def RootComponents(self) -> SimUserRootComponentCollection: ...
2502
+ @staticmethod
2503
+ def GetContentId(ucl: SimUserComponentList) -> str: ...
2504
+
2505
+
2506
+ class SimUserComponentListCollection(ObservableCollection_1[SimUserComponentList]):
2507
+ def __init__(self) -> None: ...
2508
+ @property
2509
+ def Count(self) -> int: ...
2510
+ @property
2511
+ def Item(self) -> SimUserComponentList: ...
2512
+ @Item.setter
2513
+ def Item(self, value: SimUserComponentList) -> SimUserComponentList: ...
2514
+
2515
+
2516
+ class SimUserRootComponentCollection(IList_1[SimComponent], INotifyCollectionChanged):
2517
+ @typing.overload
2518
+ def __init__(self, owner: SimUserComponentList) -> None: ...
2519
+ @typing.overload
2520
+ def __init__(self, owner: SimUserComponentList, components: IEnumerable_1[SimComponent]) -> None: ...
2521
+ @property
2522
+ def Count(self) -> int: ...
2523
+ @property
2524
+ def IsReadOnly(self) -> bool: ...
2525
+ @property
2526
+ def Item(self) -> SimComponent: ...
2527
+ @Item.setter
2528
+ def Item(self, value: SimComponent) -> SimComponent: ...
2529
+ def Add(self, item: SimComponent) -> None: ...
2530
+ def Clear(self) -> None: ...
2531
+ def Contains(self, item: SimComponent) -> bool: ...
2532
+ def CopyTo(self, array: Array_1[SimComponent], arrayIndex: int) -> None: ...
2533
+ def GetEnumerator(self) -> IEnumerator_1[SimComponent]: ...
2534
+ def IndexOf(self, item: SimComponent) -> int: ...
2535
+ def Insert(self, index: int, item: SimComponent) -> None: ...
2536
+ def Remove(self, item: SimComponent) -> bool: ...
2537
+ def RemoveAt(self, index: int) -> None: ...
2538
+