ansys-api-discovery 0.5.2__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-api-discovery might be problematic. Click here for more details.
- ansys/api/discovery/VERSION +1 -1
- ansys/api/discovery/v0/conditions.proto +11 -46
- ansys/api/discovery/v0/conditions_pb2.py +12 -70
- ansys/api/discovery/v0/conditions_pb2.pyi +16 -88
- ansys/api/discovery/v0/conditions_pb2_grpc.py +40 -139
- ansys/api/discovery/v0/conditions_pb2_grpc.pyi +20 -50
- ansys/api/discovery/v0/conditionsfluid.proto +246 -0
- ansys/api/discovery/v0/conditionsfluid_pb2.py +85 -0
- ansys/api/discovery/v0/conditionsfluid_pb2.pyi +590 -0
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py +662 -0
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi +208 -0
- ansys/api/discovery/v0/conditionsstructural.proto +407 -0
- ansys/api/discovery/v0/conditionsstructural_pb2.py +113 -0
- ansys/api/discovery/v0/conditionsstructural_pb2.pyi +839 -0
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +2746 -0
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +854 -0
- ansys/api/discovery/v0/conditionsthermal.proto +179 -0
- ansys/api/discovery/v0/conditionsthermal_pb2.py +63 -0
- ansys/api/discovery/v0/conditionsthermal_pb2.pyi +399 -0
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py +665 -0
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi +217 -0
- ansys/api/discovery/v0/definedvariationstable.proto +12 -0
- ansys/api/discovery/v0/definedvariationstable_pb2.py +12 -116
- ansys/api/discovery/v0/definedvariationstable_pb2.pyi +16 -0
- ansys/api/discovery/v0/definedvariationstable_pb2_grpc.py +68 -0
- ansys/api/discovery/v0/definedvariationstable_pb2_grpc.pyi +26 -0
- ansys/api/discovery/v0/discoverymodels.proto +91 -25
- ansys/api/discovery/v0/discoverymodels_pb2.py +59 -211
- ansys/api/discovery/v0/discoverymodels_pb2.pyi +264 -50
- ansys/api/discovery/v0/historytrackparameters_pb2.py +3 -50
- ansys/api/discovery/v0/messaging.proto +0 -2
- ansys/api/discovery/v0/messaging_pb2.py +8 -20
- ansys/api/discovery/v0/scriptparameters_pb2.py +3 -37
- ansys/api/discovery/v0/simulations.proto +0 -1
- ansys/api/discovery/v0/simulations_pb2.py +8 -19
- ansys/api/discovery/v0/solution.proto +18 -2
- ansys/api/discovery/v0/solution_pb2.py +18 -40
- ansys/api/discovery/v0/solution_pb2.pyi +48 -0
- ansys/api/discovery/v0/solution_pb2_grpc.py +33 -0
- ansys/api/discovery/v0/solution_pb2_grpc.pyi +10 -0
- ansys/api/discovery/v0/units_pb2.py +3 -1232
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/METADATA +8 -8
- ansys_api_discovery-0.6.0.dist-info/RECORD +70 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/WHEEL +1 -1
- ansys_api_discovery-0.5.2.dist-info/RECORD +0 -55
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/LICENSE +0 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/entry_points.txt +0 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,839 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import ansys.api.discovery.v0.discoverymodels_pb2
|
|
6
|
+
import builtins
|
|
7
|
+
import google.protobuf.descriptor
|
|
8
|
+
import google.protobuf.internal.containers
|
|
9
|
+
import google.protobuf.internal.enum_type_wrapper
|
|
10
|
+
import google.protobuf.message
|
|
11
|
+
import typing
|
|
12
|
+
import typing_extensions
|
|
13
|
+
|
|
14
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
|
|
15
|
+
|
|
16
|
+
class _SupportSpecification:
|
|
17
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
18
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
19
|
+
class _SupportSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_SupportSpecification.ValueType], builtins.type):
|
|
20
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
21
|
+
FIXED: SupportSpecification.ValueType = ... # 0
|
|
22
|
+
SLIDING: SupportSpecification.ValueType = ... # 1
|
|
23
|
+
HINGED: SupportSpecification.ValueType = ... # 2
|
|
24
|
+
BALL: SupportSpecification.ValueType = ... # 3
|
|
25
|
+
DISPLACED: SupportSpecification.ValueType = ... # 4
|
|
26
|
+
class SupportSpecification(_SupportSpecification, metaclass=_SupportSpecificationEnumTypeWrapper):
|
|
27
|
+
"""Support enumerations
|
|
28
|
+
|
|
29
|
+
"""
|
|
30
|
+
pass
|
|
31
|
+
|
|
32
|
+
FIXED: SupportSpecification.ValueType = ... # 0
|
|
33
|
+
SLIDING: SupportSpecification.ValueType = ... # 1
|
|
34
|
+
HINGED: SupportSpecification.ValueType = ... # 2
|
|
35
|
+
BALL: SupportSpecification.ValueType = ... # 3
|
|
36
|
+
DISPLACED: SupportSpecification.ValueType = ... # 4
|
|
37
|
+
global___SupportSpecification = SupportSpecification
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class _ForceMagnitudeDefinition:
|
|
41
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
42
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
43
|
+
class _ForceMagnitudeDefinitionEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ForceMagnitudeDefinition.ValueType], builtins.type):
|
|
44
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
45
|
+
TOTALFORCE: ForceMagnitudeDefinition.ValueType = ... # 0
|
|
46
|
+
FORCEPERAREA: ForceMagnitudeDefinition.ValueType = ... # 1
|
|
47
|
+
class ForceMagnitudeDefinition(_ForceMagnitudeDefinition, metaclass=_ForceMagnitudeDefinitionEnumTypeWrapper):
|
|
48
|
+
"""force enumerations
|
|
49
|
+
|
|
50
|
+
"""
|
|
51
|
+
pass
|
|
52
|
+
|
|
53
|
+
TOTALFORCE: ForceMagnitudeDefinition.ValueType = ... # 0
|
|
54
|
+
FORCEPERAREA: ForceMagnitudeDefinition.ValueType = ... # 1
|
|
55
|
+
global___ForceMagnitudeDefinition = ForceMagnitudeDefinition
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
class _ForceSpecification:
|
|
59
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
60
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
61
|
+
class _ForceSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ForceSpecification.ValueType], builtins.type):
|
|
62
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
63
|
+
DISTRIBUTED: ForceSpecification.ValueType = ... # 0
|
|
64
|
+
TORQUE: ForceSpecification.ValueType = ... # 1
|
|
65
|
+
class ForceSpecification(_ForceSpecification, metaclass=_ForceSpecificationEnumTypeWrapper):
|
|
66
|
+
pass
|
|
67
|
+
|
|
68
|
+
DISTRIBUTED: ForceSpecification.ValueType = ... # 0
|
|
69
|
+
TORQUE: ForceSpecification.ValueType = ... # 1
|
|
70
|
+
global___ForceSpecification = ForceSpecification
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class _DisplacementSpecification:
|
|
74
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
75
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
76
|
+
class _DisplacementSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_DisplacementSpecification.ValueType], builtins.type):
|
|
77
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
78
|
+
TRANSLATION: DisplacementSpecification.ValueType = ... # 0
|
|
79
|
+
ROTATION: DisplacementSpecification.ValueType = ... # 1
|
|
80
|
+
COMBINED: DisplacementSpecification.ValueType = ... # 2
|
|
81
|
+
class DisplacementSpecification(_DisplacementSpecification, metaclass=_DisplacementSpecificationEnumTypeWrapper):
|
|
82
|
+
"""Displacement enumerations
|
|
83
|
+
|
|
84
|
+
"""
|
|
85
|
+
pass
|
|
86
|
+
|
|
87
|
+
TRANSLATION: DisplacementSpecification.ValueType = ... # 0
|
|
88
|
+
ROTATION: DisplacementSpecification.ValueType = ... # 1
|
|
89
|
+
COMBINED: DisplacementSpecification.ValueType = ... # 2
|
|
90
|
+
global___DisplacementSpecification = DisplacementSpecification
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
class _MomentSpecification:
|
|
94
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
95
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
96
|
+
class _MomentSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_MomentSpecification.ValueType], builtins.type):
|
|
97
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
98
|
+
GLOBAL: MomentSpecification.ValueType = ... # 0
|
|
99
|
+
LOCAL: MomentSpecification.ValueType = ... # 1
|
|
100
|
+
class MomentSpecification(_MomentSpecification, metaclass=_MomentSpecificationEnumTypeWrapper):
|
|
101
|
+
"""Displacement enumerations
|
|
102
|
+
|
|
103
|
+
"""
|
|
104
|
+
pass
|
|
105
|
+
|
|
106
|
+
GLOBAL: MomentSpecification.ValueType = ... # 0
|
|
107
|
+
LOCAL: MomentSpecification.ValueType = ... # 1
|
|
108
|
+
global___MomentSpecification = MomentSpecification
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class ChangeSupportSpecificationRequest(google.protobuf.message.Message):
|
|
112
|
+
"""Command requests and responses
|
|
113
|
+
|
|
114
|
+
Support
|
|
115
|
+
"""
|
|
116
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
117
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
118
|
+
SUPPORT_SPECIFICATION_FIELD_NUMBER: builtins.int
|
|
119
|
+
object_id: typing.Text = ...
|
|
120
|
+
support_specification: global___SupportSpecification.ValueType = ...
|
|
121
|
+
def __init__(self,
|
|
122
|
+
*,
|
|
123
|
+
object_id : typing.Text = ...,
|
|
124
|
+
support_specification : global___SupportSpecification.ValueType = ...,
|
|
125
|
+
) -> None: ...
|
|
126
|
+
def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id","support_specification",b"support_specification"]) -> None: ...
|
|
127
|
+
global___ChangeSupportSpecificationRequest = ChangeSupportSpecificationRequest
|
|
128
|
+
|
|
129
|
+
class SupportGeneralCreationRequest(google.protobuf.message.Message):
|
|
130
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
131
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
132
|
+
@property
|
|
133
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
134
|
+
def __init__(self,
|
|
135
|
+
*,
|
|
136
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
137
|
+
) -> None: ...
|
|
138
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data"]) -> builtins.bool: ...
|
|
139
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data"]) -> None: ...
|
|
140
|
+
global___SupportGeneralCreationRequest = SupportGeneralCreationRequest
|
|
141
|
+
|
|
142
|
+
class SupportGeneralCreationResponse(google.protobuf.message.Message):
|
|
143
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
144
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
145
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
146
|
+
@property
|
|
147
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
148
|
+
@property
|
|
149
|
+
def condition_data(self) -> global___SupportGeneralDefinition: ...
|
|
150
|
+
def __init__(self,
|
|
151
|
+
*,
|
|
152
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
153
|
+
condition_data : typing.Optional[global___SupportGeneralDefinition] = ...,
|
|
154
|
+
) -> None: ...
|
|
155
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
156
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
157
|
+
global___SupportGeneralCreationResponse = SupportGeneralCreationResponse
|
|
158
|
+
|
|
159
|
+
class SupportDisplacedCreationRequest(google.protobuf.message.Message):
|
|
160
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
161
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
162
|
+
SUPPORT_DISPLACED_FIELD_NUMBER: builtins.int
|
|
163
|
+
@property
|
|
164
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
165
|
+
@property
|
|
166
|
+
def support_displaced(self) -> global___SupportDisplacedProperties: ...
|
|
167
|
+
def __init__(self,
|
|
168
|
+
*,
|
|
169
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
170
|
+
support_displaced : typing.Optional[global___SupportDisplacedProperties] = ...,
|
|
171
|
+
) -> None: ...
|
|
172
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","support_displaced",b"support_displaced"]) -> builtins.bool: ...
|
|
173
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","support_displaced",b"support_displaced"]) -> None: ...
|
|
174
|
+
global___SupportDisplacedCreationRequest = SupportDisplacedCreationRequest
|
|
175
|
+
|
|
176
|
+
class SupportDisplacedCreationResponse(google.protobuf.message.Message):
|
|
177
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
178
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
179
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
180
|
+
@property
|
|
181
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
182
|
+
@property
|
|
183
|
+
def condition_data(self) -> global___SupportDisplacedDefinition: ...
|
|
184
|
+
def __init__(self,
|
|
185
|
+
*,
|
|
186
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
187
|
+
condition_data : typing.Optional[global___SupportDisplacedDefinition] = ...,
|
|
188
|
+
) -> None: ...
|
|
189
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
190
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
191
|
+
global___SupportDisplacedCreationResponse = SupportDisplacedCreationResponse
|
|
192
|
+
|
|
193
|
+
class ChangeForceSpecificationRequest(google.protobuf.message.Message):
|
|
194
|
+
"""Force"""
|
|
195
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
196
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
197
|
+
FORCE_SPECIFICATION_FIELD_NUMBER: builtins.int
|
|
198
|
+
object_id: typing.Text = ...
|
|
199
|
+
force_specification: global___ForceSpecification.ValueType = ...
|
|
200
|
+
def __init__(self,
|
|
201
|
+
*,
|
|
202
|
+
object_id : typing.Text = ...,
|
|
203
|
+
force_specification : global___ForceSpecification.ValueType = ...,
|
|
204
|
+
) -> None: ...
|
|
205
|
+
def ClearField(self, field_name: typing_extensions.Literal["force_specification",b"force_specification","object_id",b"object_id"]) -> None: ...
|
|
206
|
+
global___ChangeForceSpecificationRequest = ChangeForceSpecificationRequest
|
|
207
|
+
|
|
208
|
+
class ChangeForceMagnitudeDefinitionRequest(google.protobuf.message.Message):
|
|
209
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
210
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
211
|
+
FORCE_MAGNITUDE_DEFINITION_FIELD_NUMBER: builtins.int
|
|
212
|
+
object_id: typing.Text = ...
|
|
213
|
+
force_magnitude_definition: global___ForceMagnitudeDefinition.ValueType = ...
|
|
214
|
+
def __init__(self,
|
|
215
|
+
*,
|
|
216
|
+
object_id : typing.Text = ...,
|
|
217
|
+
force_magnitude_definition : global___ForceMagnitudeDefinition.ValueType = ...,
|
|
218
|
+
) -> None: ...
|
|
219
|
+
def ClearField(self, field_name: typing_extensions.Literal["force_magnitude_definition",b"force_magnitude_definition","object_id",b"object_id"]) -> None: ...
|
|
220
|
+
global___ChangeForceMagnitudeDefinitionRequest = ChangeForceMagnitudeDefinitionRequest
|
|
221
|
+
|
|
222
|
+
class ForceDistributedTotalCreationRequest(google.protobuf.message.Message):
|
|
223
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
224
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
225
|
+
FORCE_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
226
|
+
@property
|
|
227
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
228
|
+
@property
|
|
229
|
+
def force_properties(self) -> global___ForceDistributedProperties: ...
|
|
230
|
+
def __init__(self,
|
|
231
|
+
*,
|
|
232
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
233
|
+
force_properties : typing.Optional[global___ForceDistributedProperties] = ...,
|
|
234
|
+
) -> None: ...
|
|
235
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","force_properties",b"force_properties"]) -> builtins.bool: ...
|
|
236
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","force_properties",b"force_properties"]) -> None: ...
|
|
237
|
+
global___ForceDistributedTotalCreationRequest = ForceDistributedTotalCreationRequest
|
|
238
|
+
|
|
239
|
+
class ForceDistributedTotalCreationResponse(google.protobuf.message.Message):
|
|
240
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
241
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
242
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
243
|
+
@property
|
|
244
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
245
|
+
@property
|
|
246
|
+
def condition_data(self) -> global___ForceDistributedDefinition: ...
|
|
247
|
+
def __init__(self,
|
|
248
|
+
*,
|
|
249
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
250
|
+
condition_data : typing.Optional[global___ForceDistributedDefinition] = ...,
|
|
251
|
+
) -> None: ...
|
|
252
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
253
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
254
|
+
global___ForceDistributedTotalCreationResponse = ForceDistributedTotalCreationResponse
|
|
255
|
+
|
|
256
|
+
class ForceDistributedAreaCreationRequest(google.protobuf.message.Message):
|
|
257
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
258
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
259
|
+
FORCE_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
260
|
+
@property
|
|
261
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
262
|
+
@property
|
|
263
|
+
def force_properties(self) -> global___ForceDistributedProperties: ...
|
|
264
|
+
def __init__(self,
|
|
265
|
+
*,
|
|
266
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
267
|
+
force_properties : typing.Optional[global___ForceDistributedProperties] = ...,
|
|
268
|
+
) -> None: ...
|
|
269
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","force_properties",b"force_properties"]) -> builtins.bool: ...
|
|
270
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","force_properties",b"force_properties"]) -> None: ...
|
|
271
|
+
global___ForceDistributedAreaCreationRequest = ForceDistributedAreaCreationRequest
|
|
272
|
+
|
|
273
|
+
class ForceDistributedAreaCreationResponse(google.protobuf.message.Message):
|
|
274
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
275
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
276
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
277
|
+
@property
|
|
278
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
279
|
+
@property
|
|
280
|
+
def condition_data(self) -> global___ForceDistributedDefinition: ...
|
|
281
|
+
def __init__(self,
|
|
282
|
+
*,
|
|
283
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
284
|
+
condition_data : typing.Optional[global___ForceDistributedDefinition] = ...,
|
|
285
|
+
) -> None: ...
|
|
286
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
287
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
288
|
+
global___ForceDistributedAreaCreationResponse = ForceDistributedAreaCreationResponse
|
|
289
|
+
|
|
290
|
+
class ForceTorqueCreationRequest(google.protobuf.message.Message):
|
|
291
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
292
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
293
|
+
FORCE_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
294
|
+
@property
|
|
295
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
296
|
+
@property
|
|
297
|
+
def force_properties(self) -> global___ForceTorqueProperties: ...
|
|
298
|
+
def __init__(self,
|
|
299
|
+
*,
|
|
300
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
301
|
+
force_properties : typing.Optional[global___ForceTorqueProperties] = ...,
|
|
302
|
+
) -> None: ...
|
|
303
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","force_properties",b"force_properties"]) -> builtins.bool: ...
|
|
304
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","force_properties",b"force_properties"]) -> None: ...
|
|
305
|
+
global___ForceTorqueCreationRequest = ForceTorqueCreationRequest
|
|
306
|
+
|
|
307
|
+
class ForceTorqueCreationResponse(google.protobuf.message.Message):
|
|
308
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
309
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
310
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
311
|
+
@property
|
|
312
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
313
|
+
@property
|
|
314
|
+
def condition_data(self) -> global___ForceTorqueDefinition: ...
|
|
315
|
+
def __init__(self,
|
|
316
|
+
*,
|
|
317
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
318
|
+
condition_data : typing.Optional[global___ForceTorqueDefinition] = ...,
|
|
319
|
+
) -> None: ...
|
|
320
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
321
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
322
|
+
global___ForceTorqueCreationResponse = ForceTorqueCreationResponse
|
|
323
|
+
|
|
324
|
+
class PressureCreationRequest(google.protobuf.message.Message):
|
|
325
|
+
"""Pressure"""
|
|
326
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
327
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
328
|
+
PRESSURE_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
329
|
+
@property
|
|
330
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
331
|
+
@property
|
|
332
|
+
def pressure_properties(self) -> global___PressureProperties: ...
|
|
333
|
+
def __init__(self,
|
|
334
|
+
*,
|
|
335
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
336
|
+
pressure_properties : typing.Optional[global___PressureProperties] = ...,
|
|
337
|
+
) -> None: ...
|
|
338
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","pressure_properties",b"pressure_properties"]) -> builtins.bool: ...
|
|
339
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","pressure_properties",b"pressure_properties"]) -> None: ...
|
|
340
|
+
global___PressureCreationRequest = PressureCreationRequest
|
|
341
|
+
|
|
342
|
+
class PressureCreationResponse(google.protobuf.message.Message):
|
|
343
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
344
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
345
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
346
|
+
@property
|
|
347
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
348
|
+
@property
|
|
349
|
+
def condition_data(self) -> global___PressureDefinition: ...
|
|
350
|
+
def __init__(self,
|
|
351
|
+
*,
|
|
352
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
353
|
+
condition_data : typing.Optional[global___PressureDefinition] = ...,
|
|
354
|
+
) -> None: ...
|
|
355
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
356
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
357
|
+
global___PressureCreationResponse = PressureCreationResponse
|
|
358
|
+
|
|
359
|
+
class DisplacementTranslationCreationRequest(google.protobuf.message.Message):
|
|
360
|
+
"""Displacement"""
|
|
361
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
362
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
363
|
+
DISPLACEMENT_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
364
|
+
@property
|
|
365
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
366
|
+
@property
|
|
367
|
+
def displacement_properties(self) -> global___DisplacementTranslationProperties: ...
|
|
368
|
+
def __init__(self,
|
|
369
|
+
*,
|
|
370
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
371
|
+
displacement_properties : typing.Optional[global___DisplacementTranslationProperties] = ...,
|
|
372
|
+
) -> None: ...
|
|
373
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","displacement_properties",b"displacement_properties"]) -> builtins.bool: ...
|
|
374
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","displacement_properties",b"displacement_properties"]) -> None: ...
|
|
375
|
+
global___DisplacementTranslationCreationRequest = DisplacementTranslationCreationRequest
|
|
376
|
+
|
|
377
|
+
class DisplacementRotationCreationRequest(google.protobuf.message.Message):
|
|
378
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
379
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
380
|
+
DISPLACEMENT_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
381
|
+
@property
|
|
382
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
383
|
+
@property
|
|
384
|
+
def displacement_properties(self) -> global___DisplacementRotationProperties: ...
|
|
385
|
+
def __init__(self,
|
|
386
|
+
*,
|
|
387
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
388
|
+
displacement_properties : typing.Optional[global___DisplacementRotationProperties] = ...,
|
|
389
|
+
) -> None: ...
|
|
390
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","displacement_properties",b"displacement_properties"]) -> builtins.bool: ...
|
|
391
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","displacement_properties",b"displacement_properties"]) -> None: ...
|
|
392
|
+
global___DisplacementRotationCreationRequest = DisplacementRotationCreationRequest
|
|
393
|
+
|
|
394
|
+
class DisplacementCombinedCreationRequest(google.protobuf.message.Message):
|
|
395
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
396
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
397
|
+
DISPLACEMENT_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
398
|
+
@property
|
|
399
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
400
|
+
@property
|
|
401
|
+
def displacement_properties(self) -> global___DisplacementCombinedProperties: ...
|
|
402
|
+
def __init__(self,
|
|
403
|
+
*,
|
|
404
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
405
|
+
displacement_properties : typing.Optional[global___DisplacementCombinedProperties] = ...,
|
|
406
|
+
) -> None: ...
|
|
407
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","displacement_properties",b"displacement_properties"]) -> builtins.bool: ...
|
|
408
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","displacement_properties",b"displacement_properties"]) -> None: ...
|
|
409
|
+
global___DisplacementCombinedCreationRequest = DisplacementCombinedCreationRequest
|
|
410
|
+
|
|
411
|
+
class DisplacementCreationResponse(google.protobuf.message.Message):
|
|
412
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
413
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
414
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
415
|
+
@property
|
|
416
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
417
|
+
@property
|
|
418
|
+
def condition_data(self) -> global___DisplacementDefinition: ...
|
|
419
|
+
def __init__(self,
|
|
420
|
+
*,
|
|
421
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
422
|
+
condition_data : typing.Optional[global___DisplacementDefinition] = ...,
|
|
423
|
+
) -> None: ...
|
|
424
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
425
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
426
|
+
global___DisplacementCreationResponse = DisplacementCreationResponse
|
|
427
|
+
|
|
428
|
+
class ChangeDisplacementSpecificationRequest(google.protobuf.message.Message):
|
|
429
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
430
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
431
|
+
DISPLACEMENT_SPECIFICATION_FIELD_NUMBER: builtins.int
|
|
432
|
+
object_id: typing.Text = ...
|
|
433
|
+
displacement_specification: global___DisplacementSpecification.ValueType = ...
|
|
434
|
+
def __init__(self,
|
|
435
|
+
*,
|
|
436
|
+
object_id : typing.Text = ...,
|
|
437
|
+
displacement_specification : global___DisplacementSpecification.ValueType = ...,
|
|
438
|
+
) -> None: ...
|
|
439
|
+
def ClearField(self, field_name: typing_extensions.Literal["displacement_specification",b"displacement_specification","object_id",b"object_id"]) -> None: ...
|
|
440
|
+
global___ChangeDisplacementSpecificationRequest = ChangeDisplacementSpecificationRequest
|
|
441
|
+
|
|
442
|
+
class MomentCreationRequest(google.protobuf.message.Message):
|
|
443
|
+
"""Moment"""
|
|
444
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
445
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
446
|
+
MOMENT_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
447
|
+
@property
|
|
448
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData: ...
|
|
449
|
+
@property
|
|
450
|
+
def moment_properties(self) -> global___MomentProperties: ...
|
|
451
|
+
def __init__(self,
|
|
452
|
+
*,
|
|
453
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedConditionCreationData] = ...,
|
|
454
|
+
moment_properties : typing.Optional[global___MomentProperties] = ...,
|
|
455
|
+
) -> None: ...
|
|
456
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","moment_properties",b"moment_properties"]) -> builtins.bool: ...
|
|
457
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","moment_properties",b"moment_properties"]) -> None: ...
|
|
458
|
+
global___MomentCreationRequest = MomentCreationRequest
|
|
459
|
+
|
|
460
|
+
class MomentCreationResponse(google.protobuf.message.Message):
|
|
461
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
462
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
463
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
464
|
+
@property
|
|
465
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse: ...
|
|
466
|
+
@property
|
|
467
|
+
def condition_data(self) -> global___MomentDefinition: ...
|
|
468
|
+
def __init__(self,
|
|
469
|
+
*,
|
|
470
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ConditionCreationResponse] = ...,
|
|
471
|
+
condition_data : typing.Optional[global___MomentDefinition] = ...,
|
|
472
|
+
) -> None: ...
|
|
473
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
474
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
475
|
+
global___MomentCreationResponse = MomentCreationResponse
|
|
476
|
+
|
|
477
|
+
class ChangeMomentSpecificationRequest(google.protobuf.message.Message):
|
|
478
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
479
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
480
|
+
MOMENT_SPECIFICATION_FIELD_NUMBER: builtins.int
|
|
481
|
+
object_id: typing.Text = ...
|
|
482
|
+
moment_specification: global___MomentSpecification.ValueType = ...
|
|
483
|
+
def __init__(self,
|
|
484
|
+
*,
|
|
485
|
+
object_id : typing.Text = ...,
|
|
486
|
+
moment_specification : global___MomentSpecification.ValueType = ...,
|
|
487
|
+
) -> None: ...
|
|
488
|
+
def ClearField(self, field_name: typing_extensions.Literal["moment_specification",b"moment_specification","object_id",b"object_id"]) -> None: ...
|
|
489
|
+
global___ChangeMomentSpecificationRequest = ChangeMomentSpecificationRequest
|
|
490
|
+
|
|
491
|
+
class SupportGeneralDefinition(google.protobuf.message.Message):
|
|
492
|
+
"""Support condition definitions
|
|
493
|
+
|
|
494
|
+
"""
|
|
495
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
496
|
+
ID_FIELD_NUMBER: builtins.int
|
|
497
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
498
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
499
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
500
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
501
|
+
SUPPORT_TYPE_FIELD_NUMBER: builtins.int
|
|
502
|
+
id: typing.Text = ...
|
|
503
|
+
parent_id: typing.Text = ...
|
|
504
|
+
label: typing.Text = ...
|
|
505
|
+
@property
|
|
506
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
507
|
+
suppressed: builtins.bool = ...
|
|
508
|
+
support_type: global___SupportSpecification.ValueType = ...
|
|
509
|
+
def __init__(self,
|
|
510
|
+
*,
|
|
511
|
+
id : typing.Text = ...,
|
|
512
|
+
parent_id : typing.Text = ...,
|
|
513
|
+
label : typing.Text = ...,
|
|
514
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
515
|
+
suppressed : builtins.bool = ...,
|
|
516
|
+
support_type : global___SupportSpecification.ValueType = ...,
|
|
517
|
+
) -> None: ...
|
|
518
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","support_type",b"support_type","suppressed",b"suppressed"]) -> None: ...
|
|
519
|
+
global___SupportGeneralDefinition = SupportGeneralDefinition
|
|
520
|
+
|
|
521
|
+
class SupportDisplacedDefinition(google.protobuf.message.Message):
|
|
522
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
523
|
+
ID_FIELD_NUMBER: builtins.int
|
|
524
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
525
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
526
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
527
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
528
|
+
SUPPORT_TYPE_FIELD_NUMBER: builtins.int
|
|
529
|
+
DISPLACEMENT_FIELD_NUMBER: builtins.int
|
|
530
|
+
id: typing.Text = ...
|
|
531
|
+
parent_id: typing.Text = ...
|
|
532
|
+
label: typing.Text = ...
|
|
533
|
+
@property
|
|
534
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
535
|
+
suppressed: builtins.bool = ...
|
|
536
|
+
support_type: global___SupportSpecification.ValueType = ...
|
|
537
|
+
@property
|
|
538
|
+
def displacement(self) -> ansys.api.discovery.v0.discoverymodels_pb2.TensorOfOptionalQuantities: ...
|
|
539
|
+
def __init__(self,
|
|
540
|
+
*,
|
|
541
|
+
id : typing.Text = ...,
|
|
542
|
+
parent_id : typing.Text = ...,
|
|
543
|
+
label : typing.Text = ...,
|
|
544
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
545
|
+
suppressed : builtins.bool = ...,
|
|
546
|
+
support_type : global___SupportSpecification.ValueType = ...,
|
|
547
|
+
displacement : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.TensorOfOptionalQuantities] = ...,
|
|
548
|
+
) -> None: ...
|
|
549
|
+
def HasField(self, field_name: typing_extensions.Literal["displacement",b"displacement"]) -> builtins.bool: ...
|
|
550
|
+
def ClearField(self, field_name: typing_extensions.Literal["displacement",b"displacement","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","support_type",b"support_type","suppressed",b"suppressed"]) -> None: ...
|
|
551
|
+
global___SupportDisplacedDefinition = SupportDisplacedDefinition
|
|
552
|
+
|
|
553
|
+
class SupportDisplacedProperties(google.protobuf.message.Message):
|
|
554
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
555
|
+
DISPLACEMENT_FIELD_NUMBER: builtins.int
|
|
556
|
+
@property
|
|
557
|
+
def displacement(self) -> ansys.api.discovery.v0.discoverymodels_pb2.TensorOfOptionalQuantities: ...
|
|
558
|
+
def __init__(self,
|
|
559
|
+
*,
|
|
560
|
+
displacement : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.TensorOfOptionalQuantities] = ...,
|
|
561
|
+
) -> None: ...
|
|
562
|
+
def HasField(self, field_name: typing_extensions.Literal["displacement",b"displacement"]) -> builtins.bool: ...
|
|
563
|
+
def ClearField(self, field_name: typing_extensions.Literal["displacement",b"displacement"]) -> None: ...
|
|
564
|
+
global___SupportDisplacedProperties = SupportDisplacedProperties
|
|
565
|
+
|
|
566
|
+
class ForceDistributedDefinition(google.protobuf.message.Message):
|
|
567
|
+
"""force condition definitions
|
|
568
|
+
|
|
569
|
+
"""
|
|
570
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
571
|
+
ID_FIELD_NUMBER: builtins.int
|
|
572
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
573
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
574
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
575
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
576
|
+
FORCE_DISTRIBUTED_FIELD_NUMBER: builtins.int
|
|
577
|
+
id: typing.Text = ...
|
|
578
|
+
parent_id: typing.Text = ...
|
|
579
|
+
label: typing.Text = ...
|
|
580
|
+
@property
|
|
581
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
582
|
+
suppressed: builtins.bool = ...
|
|
583
|
+
@property
|
|
584
|
+
def force_distributed(self) -> global___ForceDistributedProperties: ...
|
|
585
|
+
def __init__(self,
|
|
586
|
+
*,
|
|
587
|
+
id : typing.Text = ...,
|
|
588
|
+
parent_id : typing.Text = ...,
|
|
589
|
+
label : typing.Text = ...,
|
|
590
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
591
|
+
suppressed : builtins.bool = ...,
|
|
592
|
+
force_distributed : typing.Optional[global___ForceDistributedProperties] = ...,
|
|
593
|
+
) -> None: ...
|
|
594
|
+
def HasField(self, field_name: typing_extensions.Literal["force_distributed",b"force_distributed"]) -> builtins.bool: ...
|
|
595
|
+
def ClearField(self, field_name: typing_extensions.Literal["force_distributed",b"force_distributed","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
596
|
+
global___ForceDistributedDefinition = ForceDistributedDefinition
|
|
597
|
+
|
|
598
|
+
class ForceDistributedProperties(google.protobuf.message.Message):
|
|
599
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
600
|
+
FORCE_FIELD_NUMBER: builtins.int
|
|
601
|
+
FORCE_COMPONENTS_FIELD_NUMBER: builtins.int
|
|
602
|
+
REMOTE_POINT_FIELD_NUMBER: builtins.int
|
|
603
|
+
@property
|
|
604
|
+
def force(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
605
|
+
@property
|
|
606
|
+
def force_components(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
|
|
607
|
+
@property
|
|
608
|
+
def remote_point(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
|
|
609
|
+
def __init__(self,
|
|
610
|
+
*,
|
|
611
|
+
force : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
612
|
+
force_components : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
|
|
613
|
+
remote_point : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
|
|
614
|
+
) -> None: ...
|
|
615
|
+
def HasField(self, field_name: typing_extensions.Literal["force",b"force","force_components",b"force_components","remote_point",b"remote_point"]) -> builtins.bool: ...
|
|
616
|
+
def ClearField(self, field_name: typing_extensions.Literal["force",b"force","force_components",b"force_components","remote_point",b"remote_point"]) -> None: ...
|
|
617
|
+
global___ForceDistributedProperties = ForceDistributedProperties
|
|
618
|
+
|
|
619
|
+
class ForceTorqueDefinition(google.protobuf.message.Message):
|
|
620
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
621
|
+
ID_FIELD_NUMBER: builtins.int
|
|
622
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
623
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
624
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
625
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
626
|
+
FORCE_TORQUE_FIELD_NUMBER: builtins.int
|
|
627
|
+
id: typing.Text = ...
|
|
628
|
+
parent_id: typing.Text = ...
|
|
629
|
+
label: typing.Text = ...
|
|
630
|
+
@property
|
|
631
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
632
|
+
suppressed: builtins.bool = ...
|
|
633
|
+
@property
|
|
634
|
+
def force_torque(self) -> global___ForceTorqueProperties: ...
|
|
635
|
+
def __init__(self,
|
|
636
|
+
*,
|
|
637
|
+
id : typing.Text = ...,
|
|
638
|
+
parent_id : typing.Text = ...,
|
|
639
|
+
label : typing.Text = ...,
|
|
640
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
641
|
+
suppressed : builtins.bool = ...,
|
|
642
|
+
force_torque : typing.Optional[global___ForceTorqueProperties] = ...,
|
|
643
|
+
) -> None: ...
|
|
644
|
+
def HasField(self, field_name: typing_extensions.Literal["force_torque",b"force_torque"]) -> builtins.bool: ...
|
|
645
|
+
def ClearField(self, field_name: typing_extensions.Literal["force_torque",b"force_torque","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
646
|
+
global___ForceTorqueDefinition = ForceTorqueDefinition
|
|
647
|
+
|
|
648
|
+
class ForceTorqueProperties(google.protobuf.message.Message):
|
|
649
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
650
|
+
FORCE_FIELD_NUMBER: builtins.int
|
|
651
|
+
FORCE_COMPONENTS_FIELD_NUMBER: builtins.int
|
|
652
|
+
@property
|
|
653
|
+
def force(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
654
|
+
@property
|
|
655
|
+
def force_components(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
|
|
656
|
+
def __init__(self,
|
|
657
|
+
*,
|
|
658
|
+
force : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
659
|
+
force_components : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
|
|
660
|
+
) -> None: ...
|
|
661
|
+
def HasField(self, field_name: typing_extensions.Literal["force",b"force","force_components",b"force_components"]) -> builtins.bool: ...
|
|
662
|
+
def ClearField(self, field_name: typing_extensions.Literal["force",b"force","force_components",b"force_components"]) -> None: ...
|
|
663
|
+
global___ForceTorqueProperties = ForceTorqueProperties
|
|
664
|
+
|
|
665
|
+
class PressureProperties(google.protobuf.message.Message):
|
|
666
|
+
"""Pressure condition definitions"""
|
|
667
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
668
|
+
PRESSURE_MAGNITUDE_FIELD_NUMBER: builtins.int
|
|
669
|
+
@property
|
|
670
|
+
def pressure_magnitude(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
671
|
+
def __init__(self,
|
|
672
|
+
*,
|
|
673
|
+
pressure_magnitude : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
674
|
+
) -> None: ...
|
|
675
|
+
def HasField(self, field_name: typing_extensions.Literal["pressure_magnitude",b"pressure_magnitude"]) -> builtins.bool: ...
|
|
676
|
+
def ClearField(self, field_name: typing_extensions.Literal["pressure_magnitude",b"pressure_magnitude"]) -> None: ...
|
|
677
|
+
global___PressureProperties = PressureProperties
|
|
678
|
+
|
|
679
|
+
class PressureDefinition(google.protobuf.message.Message):
|
|
680
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
681
|
+
ID_FIELD_NUMBER: builtins.int
|
|
682
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
683
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
684
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
685
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
686
|
+
PRESSURE_FIELD_NUMBER: builtins.int
|
|
687
|
+
id: typing.Text = ...
|
|
688
|
+
parent_id: typing.Text = ...
|
|
689
|
+
label: typing.Text = ...
|
|
690
|
+
@property
|
|
691
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
692
|
+
suppressed: builtins.bool = ...
|
|
693
|
+
@property
|
|
694
|
+
def pressure(self) -> global___PressureProperties: ...
|
|
695
|
+
def __init__(self,
|
|
696
|
+
*,
|
|
697
|
+
id : typing.Text = ...,
|
|
698
|
+
parent_id : typing.Text = ...,
|
|
699
|
+
label : typing.Text = ...,
|
|
700
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
701
|
+
suppressed : builtins.bool = ...,
|
|
702
|
+
pressure : typing.Optional[global___PressureProperties] = ...,
|
|
703
|
+
) -> None: ...
|
|
704
|
+
def HasField(self, field_name: typing_extensions.Literal["pressure",b"pressure"]) -> builtins.bool: ...
|
|
705
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","pressure",b"pressure","suppressed",b"suppressed"]) -> None: ...
|
|
706
|
+
global___PressureDefinition = PressureDefinition
|
|
707
|
+
|
|
708
|
+
class DisplacementTranslationProperties(google.protobuf.message.Message):
|
|
709
|
+
"""Displacement condition definitions
|
|
710
|
+
|
|
711
|
+
"""
|
|
712
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
713
|
+
DISPLACEMENT_FIELD_NUMBER: builtins.int
|
|
714
|
+
REMOTE_POINT_FIELD_NUMBER: builtins.int
|
|
715
|
+
@property
|
|
716
|
+
def displacement(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
|
|
717
|
+
@property
|
|
718
|
+
def remote_point(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
|
|
719
|
+
def __init__(self,
|
|
720
|
+
*,
|
|
721
|
+
displacement : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
|
|
722
|
+
remote_point : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
|
|
723
|
+
) -> None: ...
|
|
724
|
+
def HasField(self, field_name: typing_extensions.Literal["displacement",b"displacement","remote_point",b"remote_point"]) -> builtins.bool: ...
|
|
725
|
+
def ClearField(self, field_name: typing_extensions.Literal["displacement",b"displacement","remote_point",b"remote_point"]) -> None: ...
|
|
726
|
+
global___DisplacementTranslationProperties = DisplacementTranslationProperties
|
|
727
|
+
|
|
728
|
+
class DisplacementRotationProperties(google.protobuf.message.Message):
|
|
729
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
730
|
+
ROTATION_FIELD_NUMBER: builtins.int
|
|
731
|
+
REMOTE_POINT_FIELD_NUMBER: builtins.int
|
|
732
|
+
@property
|
|
733
|
+
def rotation(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
|
|
734
|
+
@property
|
|
735
|
+
def remote_point(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
|
|
736
|
+
def __init__(self,
|
|
737
|
+
*,
|
|
738
|
+
rotation : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
|
|
739
|
+
remote_point : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
|
|
740
|
+
) -> None: ...
|
|
741
|
+
def HasField(self, field_name: typing_extensions.Literal["remote_point",b"remote_point","rotation",b"rotation"]) -> builtins.bool: ...
|
|
742
|
+
def ClearField(self, field_name: typing_extensions.Literal["remote_point",b"remote_point","rotation",b"rotation"]) -> None: ...
|
|
743
|
+
global___DisplacementRotationProperties = DisplacementRotationProperties
|
|
744
|
+
|
|
745
|
+
class DisplacementCombinedProperties(google.protobuf.message.Message):
|
|
746
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
747
|
+
DISPLACEMENT_FIELD_NUMBER: builtins.int
|
|
748
|
+
ROTATION_FIELD_NUMBER: builtins.int
|
|
749
|
+
REMOTE_POINT_FIELD_NUMBER: builtins.int
|
|
750
|
+
@property
|
|
751
|
+
def displacement(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
|
|
752
|
+
@property
|
|
753
|
+
def rotation(self) -> ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities: ...
|
|
754
|
+
@property
|
|
755
|
+
def remote_point(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector: ...
|
|
756
|
+
def __init__(self,
|
|
757
|
+
*,
|
|
758
|
+
displacement : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
|
|
759
|
+
rotation : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.VectorOfOptionalQuantities] = ...,
|
|
760
|
+
remote_point : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalVector] = ...,
|
|
761
|
+
) -> None: ...
|
|
762
|
+
def HasField(self, field_name: typing_extensions.Literal["displacement",b"displacement","remote_point",b"remote_point","rotation",b"rotation"]) -> builtins.bool: ...
|
|
763
|
+
def ClearField(self, field_name: typing_extensions.Literal["displacement",b"displacement","remote_point",b"remote_point","rotation",b"rotation"]) -> None: ...
|
|
764
|
+
global___DisplacementCombinedProperties = DisplacementCombinedProperties
|
|
765
|
+
|
|
766
|
+
class DisplacementDefinition(google.protobuf.message.Message):
|
|
767
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
768
|
+
ID_FIELD_NUMBER: builtins.int
|
|
769
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
770
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
771
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
772
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
773
|
+
DISPLACEMENT_FIELD_NUMBER: builtins.int
|
|
774
|
+
id: typing.Text = ...
|
|
775
|
+
parent_id: typing.Text = ...
|
|
776
|
+
label: typing.Text = ...
|
|
777
|
+
@property
|
|
778
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
779
|
+
suppressed: builtins.bool = ...
|
|
780
|
+
@property
|
|
781
|
+
def displacement(self) -> global___DisplacementCombinedProperties: ...
|
|
782
|
+
def __init__(self,
|
|
783
|
+
*,
|
|
784
|
+
id : typing.Text = ...,
|
|
785
|
+
parent_id : typing.Text = ...,
|
|
786
|
+
label : typing.Text = ...,
|
|
787
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
788
|
+
suppressed : builtins.bool = ...,
|
|
789
|
+
displacement : typing.Optional[global___DisplacementCombinedProperties] = ...,
|
|
790
|
+
) -> None: ...
|
|
791
|
+
def HasField(self, field_name: typing_extensions.Literal["displacement",b"displacement"]) -> builtins.bool: ...
|
|
792
|
+
def ClearField(self, field_name: typing_extensions.Literal["displacement",b"displacement","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
793
|
+
global___DisplacementDefinition = DisplacementDefinition
|
|
794
|
+
|
|
795
|
+
class MomentProperties(google.protobuf.message.Message):
|
|
796
|
+
"""Displacement condition definitions
|
|
797
|
+
|
|
798
|
+
"""
|
|
799
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
800
|
+
MOMENT_FIELD_NUMBER: builtins.int
|
|
801
|
+
@property
|
|
802
|
+
def moment(self) -> ansys.api.discovery.v0.discoverymodels_pb2.QuantityVector: ...
|
|
803
|
+
def __init__(self,
|
|
804
|
+
*,
|
|
805
|
+
moment : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.QuantityVector] = ...,
|
|
806
|
+
) -> None: ...
|
|
807
|
+
def HasField(self, field_name: typing_extensions.Literal["moment",b"moment"]) -> builtins.bool: ...
|
|
808
|
+
def ClearField(self, field_name: typing_extensions.Literal["moment",b"moment"]) -> None: ...
|
|
809
|
+
global___MomentProperties = MomentProperties
|
|
810
|
+
|
|
811
|
+
class MomentDefinition(google.protobuf.message.Message):
|
|
812
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
813
|
+
ID_FIELD_NUMBER: builtins.int
|
|
814
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
815
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
816
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
817
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
818
|
+
LOCAL_FIELD_NUMBER: builtins.int
|
|
819
|
+
GLOBAL_FIELD_NUMBER: builtins.int
|
|
820
|
+
id: typing.Text = ...
|
|
821
|
+
parent_id: typing.Text = ...
|
|
822
|
+
label: typing.Text = ...
|
|
823
|
+
@property
|
|
824
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
825
|
+
suppressed: builtins.bool = ...
|
|
826
|
+
@property
|
|
827
|
+
def local(self) -> global___MomentProperties: ...
|
|
828
|
+
def __init__(self,
|
|
829
|
+
*,
|
|
830
|
+
id : typing.Text = ...,
|
|
831
|
+
parent_id : typing.Text = ...,
|
|
832
|
+
label : typing.Text = ...,
|
|
833
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
834
|
+
suppressed : builtins.bool = ...,
|
|
835
|
+
local : typing.Optional[global___MomentProperties] = ...,
|
|
836
|
+
) -> None: ...
|
|
837
|
+
def HasField(self, field_name: typing_extensions.Literal["global",b"global","local",b"local"]) -> builtins.bool: ...
|
|
838
|
+
def ClearField(self, field_name: typing_extensions.Literal["global",b"global","id",b"id","label",b"label","local",b"local","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
839
|
+
global___MomentDefinition = MomentDefinition
|