ansys-api-discovery 0.5.2__py3-none-any.whl → 0.6.1__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/monitors.proto +137 -0
- ansys/api/discovery/v0/monitors_pb2.py +42 -0
- ansys/api/discovery/v0/monitors_pb2.pyi +307 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.py +67 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.pyi +27 -0
- 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 +19 -2
- ansys/api/discovery/v0/solution_pb2.py +18 -40
- ansys/api/discovery/v0/solution_pb2.pyi +53 -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.1.dist-info}/METADATA +8 -8
- ansys_api_discovery-0.6.1.dist-info/RECORD +75 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.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.1.dist-info}/LICENSE +0 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/entry_points.txt +0 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,590 @@
|
|
|
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 _FlowDirectionDefinition:
|
|
17
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
18
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
19
|
+
class _FlowDirectionDefinitionEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_FlowDirectionDefinition.ValueType], builtins.type):
|
|
20
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
21
|
+
IN: FlowDirectionDefinition.ValueType = ... # 0
|
|
22
|
+
OUT: FlowDirectionDefinition.ValueType = ... # 1
|
|
23
|
+
class FlowDirectionDefinition(_FlowDirectionDefinition, metaclass=_FlowDirectionDefinitionEnumTypeWrapper):
|
|
24
|
+
"""fluid enumerations
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
IN: FlowDirectionDefinition.ValueType = ... # 0
|
|
30
|
+
OUT: FlowDirectionDefinition.ValueType = ... # 1
|
|
31
|
+
global___FlowDirectionDefinition = FlowDirectionDefinition
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class _FlowSpecificationDefinition:
|
|
35
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
36
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
37
|
+
class _FlowSpecificationDefinitionEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_FlowSpecificationDefinition.ValueType], builtins.type):
|
|
38
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
39
|
+
VELOCITY: FlowSpecificationDefinition.ValueType = ... # 0
|
|
40
|
+
MASSFLOW: FlowSpecificationDefinition.ValueType = ... # 1
|
|
41
|
+
PRESSURE: FlowSpecificationDefinition.ValueType = ... # 2
|
|
42
|
+
class FlowSpecificationDefinition(_FlowSpecificationDefinition, metaclass=_FlowSpecificationDefinitionEnumTypeWrapper):
|
|
43
|
+
pass
|
|
44
|
+
|
|
45
|
+
VELOCITY: FlowSpecificationDefinition.ValueType = ... # 0
|
|
46
|
+
MASSFLOW: FlowSpecificationDefinition.ValueType = ... # 1
|
|
47
|
+
PRESSURE: FlowSpecificationDefinition.ValueType = ... # 2
|
|
48
|
+
global___FlowSpecificationDefinition = FlowSpecificationDefinition
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class FlowVelocityInletCreationRequest(google.protobuf.message.Message):
|
|
52
|
+
"""Command Requests and Responses
|
|
53
|
+
|
|
54
|
+
Velocity In
|
|
55
|
+
"""
|
|
56
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
57
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
58
|
+
VELOCITY_INLET_FIELD_NUMBER: builtins.int
|
|
59
|
+
@property
|
|
60
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
61
|
+
@property
|
|
62
|
+
def velocity_inlet(self) -> global___VelocityInletProperties: ...
|
|
63
|
+
def __init__(self,
|
|
64
|
+
*,
|
|
65
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
66
|
+
velocity_inlet : typing.Optional[global___VelocityInletProperties] = ...,
|
|
67
|
+
) -> None: ...
|
|
68
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","velocity_inlet",b"velocity_inlet"]) -> builtins.bool: ...
|
|
69
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","velocity_inlet",b"velocity_inlet"]) -> None: ...
|
|
70
|
+
global___FlowVelocityInletCreationRequest = FlowVelocityInletCreationRequest
|
|
71
|
+
|
|
72
|
+
class FlowVelocityInletCreationResponse(google.protobuf.message.Message):
|
|
73
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
74
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
75
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
76
|
+
@property
|
|
77
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
78
|
+
@property
|
|
79
|
+
def condition_data(self) -> global___FlowVelocityInletDefinition: ...
|
|
80
|
+
def __init__(self,
|
|
81
|
+
*,
|
|
82
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
83
|
+
condition_data : typing.Optional[global___FlowVelocityInletDefinition] = ...,
|
|
84
|
+
) -> None: ...
|
|
85
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
86
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
87
|
+
global___FlowVelocityInletCreationResponse = FlowVelocityInletCreationResponse
|
|
88
|
+
|
|
89
|
+
class FlowVelocityOutletCreationRequest(google.protobuf.message.Message):
|
|
90
|
+
"""Velocity Out"""
|
|
91
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
92
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
93
|
+
VELOCITY_OUTLET_FIELD_NUMBER: builtins.int
|
|
94
|
+
@property
|
|
95
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
96
|
+
@property
|
|
97
|
+
def velocity_outlet(self) -> global___VelocityOutletProperties: ...
|
|
98
|
+
def __init__(self,
|
|
99
|
+
*,
|
|
100
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
101
|
+
velocity_outlet : typing.Optional[global___VelocityOutletProperties] = ...,
|
|
102
|
+
) -> None: ...
|
|
103
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","velocity_outlet",b"velocity_outlet"]) -> builtins.bool: ...
|
|
104
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","velocity_outlet",b"velocity_outlet"]) -> None: ...
|
|
105
|
+
global___FlowVelocityOutletCreationRequest = FlowVelocityOutletCreationRequest
|
|
106
|
+
|
|
107
|
+
class FlowVelocityOutletCreationResponse(google.protobuf.message.Message):
|
|
108
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
109
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
110
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
111
|
+
@property
|
|
112
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
113
|
+
@property
|
|
114
|
+
def condition_data(self) -> global___FlowVelocityOutletDefinition: ...
|
|
115
|
+
def __init__(self,
|
|
116
|
+
*,
|
|
117
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
118
|
+
condition_data : typing.Optional[global___FlowVelocityOutletDefinition] = ...,
|
|
119
|
+
) -> None: ...
|
|
120
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
121
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
122
|
+
global___FlowVelocityOutletCreationResponse = FlowVelocityOutletCreationResponse
|
|
123
|
+
|
|
124
|
+
class FlowPressureInletCreationRequest(google.protobuf.message.Message):
|
|
125
|
+
"""Pressure In"""
|
|
126
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
127
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
128
|
+
PRESSURE_INLET_FIELD_NUMBER: builtins.int
|
|
129
|
+
@property
|
|
130
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
131
|
+
@property
|
|
132
|
+
def pressure_inlet(self) -> global___PressureInletProperties: ...
|
|
133
|
+
def __init__(self,
|
|
134
|
+
*,
|
|
135
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
136
|
+
pressure_inlet : typing.Optional[global___PressureInletProperties] = ...,
|
|
137
|
+
) -> None: ...
|
|
138
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","pressure_inlet",b"pressure_inlet"]) -> builtins.bool: ...
|
|
139
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","pressure_inlet",b"pressure_inlet"]) -> None: ...
|
|
140
|
+
global___FlowPressureInletCreationRequest = FlowPressureInletCreationRequest
|
|
141
|
+
|
|
142
|
+
class FlowPressureInletCreationResponse(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.CreationResponse: ...
|
|
148
|
+
@property
|
|
149
|
+
def condition_data(self) -> global___FlowPressureInletDefinition: ...
|
|
150
|
+
def __init__(self,
|
|
151
|
+
*,
|
|
152
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
153
|
+
condition_data : typing.Optional[global___FlowPressureInletDefinition] = ...,
|
|
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___FlowPressureInletCreationResponse = FlowPressureInletCreationResponse
|
|
158
|
+
|
|
159
|
+
class FlowPressureOutletCreationRequest(google.protobuf.message.Message):
|
|
160
|
+
"""Pressure Out"""
|
|
161
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
162
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
163
|
+
PRESSURE_OUTLET_FIELD_NUMBER: builtins.int
|
|
164
|
+
@property
|
|
165
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
166
|
+
@property
|
|
167
|
+
def pressure_outlet(self) -> global___PressureOutletProperties: ...
|
|
168
|
+
def __init__(self,
|
|
169
|
+
*,
|
|
170
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
171
|
+
pressure_outlet : typing.Optional[global___PressureOutletProperties] = ...,
|
|
172
|
+
) -> None: ...
|
|
173
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","pressure_outlet",b"pressure_outlet"]) -> builtins.bool: ...
|
|
174
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","pressure_outlet",b"pressure_outlet"]) -> None: ...
|
|
175
|
+
global___FlowPressureOutletCreationRequest = FlowPressureOutletCreationRequest
|
|
176
|
+
|
|
177
|
+
class FlowPressureOutletCreationResponse(google.protobuf.message.Message):
|
|
178
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
179
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
180
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
181
|
+
@property
|
|
182
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
183
|
+
@property
|
|
184
|
+
def condition_data(self) -> global___FlowPressureOutletDefinition: ...
|
|
185
|
+
def __init__(self,
|
|
186
|
+
*,
|
|
187
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
188
|
+
condition_data : typing.Optional[global___FlowPressureOutletDefinition] = ...,
|
|
189
|
+
) -> None: ...
|
|
190
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
191
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
192
|
+
global___FlowPressureOutletCreationResponse = FlowPressureOutletCreationResponse
|
|
193
|
+
|
|
194
|
+
class FlowMassFlowInletCreationRequest(google.protobuf.message.Message):
|
|
195
|
+
"""Mass Flow In"""
|
|
196
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
197
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
198
|
+
MASS_FLOW_INLET_FIELD_NUMBER: builtins.int
|
|
199
|
+
@property
|
|
200
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
201
|
+
@property
|
|
202
|
+
def mass_flow_inlet(self) -> global___MassFlowInletProperties: ...
|
|
203
|
+
def __init__(self,
|
|
204
|
+
*,
|
|
205
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
206
|
+
mass_flow_inlet : typing.Optional[global___MassFlowInletProperties] = ...,
|
|
207
|
+
) -> None: ...
|
|
208
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","mass_flow_inlet",b"mass_flow_inlet"]) -> builtins.bool: ...
|
|
209
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","mass_flow_inlet",b"mass_flow_inlet"]) -> None: ...
|
|
210
|
+
global___FlowMassFlowInletCreationRequest = FlowMassFlowInletCreationRequest
|
|
211
|
+
|
|
212
|
+
class FlowMassFlowInletCreationResponse(google.protobuf.message.Message):
|
|
213
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
214
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
215
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
216
|
+
@property
|
|
217
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
218
|
+
@property
|
|
219
|
+
def condition_data(self) -> global___FlowMassFlowInletDefinition: ...
|
|
220
|
+
def __init__(self,
|
|
221
|
+
*,
|
|
222
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
223
|
+
condition_data : typing.Optional[global___FlowMassFlowInletDefinition] = ...,
|
|
224
|
+
) -> None: ...
|
|
225
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
226
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
227
|
+
global___FlowMassFlowInletCreationResponse = FlowMassFlowInletCreationResponse
|
|
228
|
+
|
|
229
|
+
class FlowMassFlowOutletCreationRequest(google.protobuf.message.Message):
|
|
230
|
+
"""Mass Flow Out"""
|
|
231
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
232
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
233
|
+
MASS_FLOW_OUTLET_FIELD_NUMBER: builtins.int
|
|
234
|
+
@property
|
|
235
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
236
|
+
@property
|
|
237
|
+
def mass_flow_outlet(self) -> global___MassFlowOutletProperties: ...
|
|
238
|
+
def __init__(self,
|
|
239
|
+
*,
|
|
240
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
241
|
+
mass_flow_outlet : typing.Optional[global___MassFlowOutletProperties] = ...,
|
|
242
|
+
) -> None: ...
|
|
243
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","mass_flow_outlet",b"mass_flow_outlet"]) -> builtins.bool: ...
|
|
244
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","mass_flow_outlet",b"mass_flow_outlet"]) -> None: ...
|
|
245
|
+
global___FlowMassFlowOutletCreationRequest = FlowMassFlowOutletCreationRequest
|
|
246
|
+
|
|
247
|
+
class FlowMassFlowOutletCreationResponse(google.protobuf.message.Message):
|
|
248
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
249
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
250
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
251
|
+
@property
|
|
252
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
253
|
+
@property
|
|
254
|
+
def condition_data(self) -> global___FlowMassFlowOutletDefinition: ...
|
|
255
|
+
def __init__(self,
|
|
256
|
+
*,
|
|
257
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
258
|
+
condition_data : typing.Optional[global___FlowMassFlowOutletDefinition] = ...,
|
|
259
|
+
) -> None: ...
|
|
260
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
261
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
262
|
+
global___FlowMassFlowOutletCreationResponse = FlowMassFlowOutletCreationResponse
|
|
263
|
+
|
|
264
|
+
class ChangeFlowSpecificationRequest(google.protobuf.message.Message):
|
|
265
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
266
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
267
|
+
SPECIFICATION_FIELD_NUMBER: builtins.int
|
|
268
|
+
object_id: typing.Text = ...
|
|
269
|
+
specification: global___FlowSpecificationDefinition.ValueType = ...
|
|
270
|
+
def __init__(self,
|
|
271
|
+
*,
|
|
272
|
+
object_id : typing.Text = ...,
|
|
273
|
+
specification : global___FlowSpecificationDefinition.ValueType = ...,
|
|
274
|
+
) -> None: ...
|
|
275
|
+
def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id","specification",b"specification"]) -> None: ...
|
|
276
|
+
global___ChangeFlowSpecificationRequest = ChangeFlowSpecificationRequest
|
|
277
|
+
|
|
278
|
+
class ChangeFlowDirectionRequest(google.protobuf.message.Message):
|
|
279
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
280
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
281
|
+
DIRECTION_FIELD_NUMBER: builtins.int
|
|
282
|
+
RESET_TO_DEFAULT_SUBTYPE_FIELD_NUMBER: builtins.int
|
|
283
|
+
object_id: typing.Text = ...
|
|
284
|
+
direction: global___FlowDirectionDefinition.ValueType = ...
|
|
285
|
+
reset_to_default_subtype: builtins.bool = ...
|
|
286
|
+
def __init__(self,
|
|
287
|
+
*,
|
|
288
|
+
object_id : typing.Text = ...,
|
|
289
|
+
direction : global___FlowDirectionDefinition.ValueType = ...,
|
|
290
|
+
reset_to_default_subtype : builtins.bool = ...,
|
|
291
|
+
) -> None: ...
|
|
292
|
+
def ClearField(self, field_name: typing_extensions.Literal["direction",b"direction","object_id",b"object_id","reset_to_default_subtype",b"reset_to_default_subtype"]) -> None: ...
|
|
293
|
+
global___ChangeFlowDirectionRequest = ChangeFlowDirectionRequest
|
|
294
|
+
|
|
295
|
+
class VelocityInletProperties(google.protobuf.message.Message):
|
|
296
|
+
"""Fluid conditions properties
|
|
297
|
+
|
|
298
|
+
"""
|
|
299
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
300
|
+
SPEED_FIELD_NUMBER: builtins.int
|
|
301
|
+
THERMAL_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
302
|
+
IS_SWIRLING_FIELD_NUMBER: builtins.int
|
|
303
|
+
ROTATIONAL_SPEED_FIELD_NUMBER: builtins.int
|
|
304
|
+
@property
|
|
305
|
+
def speed(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
306
|
+
@property
|
|
307
|
+
def thermal_properties(self) -> global___FlowThermalProperties: ...
|
|
308
|
+
is_swirling: builtins.bool = ...
|
|
309
|
+
@property
|
|
310
|
+
def rotational_speed(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
311
|
+
def __init__(self,
|
|
312
|
+
*,
|
|
313
|
+
speed : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
314
|
+
thermal_properties : typing.Optional[global___FlowThermalProperties] = ...,
|
|
315
|
+
is_swirling : builtins.bool = ...,
|
|
316
|
+
rotational_speed : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
317
|
+
) -> None: ...
|
|
318
|
+
def HasField(self, field_name: typing_extensions.Literal["rotational_speed",b"rotational_speed","speed",b"speed","thermal_properties",b"thermal_properties"]) -> builtins.bool: ...
|
|
319
|
+
def ClearField(self, field_name: typing_extensions.Literal["is_swirling",b"is_swirling","rotational_speed",b"rotational_speed","speed",b"speed","thermal_properties",b"thermal_properties"]) -> None: ...
|
|
320
|
+
global___VelocityInletProperties = VelocityInletProperties
|
|
321
|
+
|
|
322
|
+
class VelocityOutletProperties(google.protobuf.message.Message):
|
|
323
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
324
|
+
SPEED_FIELD_NUMBER: builtins.int
|
|
325
|
+
@property
|
|
326
|
+
def speed(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
327
|
+
def __init__(self,
|
|
328
|
+
*,
|
|
329
|
+
speed : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
330
|
+
) -> None: ...
|
|
331
|
+
def HasField(self, field_name: typing_extensions.Literal["speed",b"speed"]) -> builtins.bool: ...
|
|
332
|
+
def ClearField(self, field_name: typing_extensions.Literal["speed",b"speed"]) -> None: ...
|
|
333
|
+
global___VelocityOutletProperties = VelocityOutletProperties
|
|
334
|
+
|
|
335
|
+
class PressureInletProperties(google.protobuf.message.Message):
|
|
336
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
337
|
+
PRESSURE_FIELD_NUMBER: builtins.int
|
|
338
|
+
THERMAL_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
339
|
+
@property
|
|
340
|
+
def pressure(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
341
|
+
@property
|
|
342
|
+
def thermal_properties(self) -> global___FlowThermalProperties: ...
|
|
343
|
+
def __init__(self,
|
|
344
|
+
*,
|
|
345
|
+
pressure : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
346
|
+
thermal_properties : typing.Optional[global___FlowThermalProperties] = ...,
|
|
347
|
+
) -> None: ...
|
|
348
|
+
def HasField(self, field_name: typing_extensions.Literal["pressure",b"pressure","thermal_properties",b"thermal_properties"]) -> builtins.bool: ...
|
|
349
|
+
def ClearField(self, field_name: typing_extensions.Literal["pressure",b"pressure","thermal_properties",b"thermal_properties"]) -> None: ...
|
|
350
|
+
global___PressureInletProperties = PressureInletProperties
|
|
351
|
+
|
|
352
|
+
class PressureOutletProperties(google.protobuf.message.Message):
|
|
353
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
354
|
+
PRESSURE_FIELD_NUMBER: builtins.int
|
|
355
|
+
THERMAL_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
356
|
+
@property
|
|
357
|
+
def pressure(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
358
|
+
@property
|
|
359
|
+
def thermal_properties(self) -> global___FlowThermalProperties: ...
|
|
360
|
+
def __init__(self,
|
|
361
|
+
*,
|
|
362
|
+
pressure : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
363
|
+
thermal_properties : typing.Optional[global___FlowThermalProperties] = ...,
|
|
364
|
+
) -> None: ...
|
|
365
|
+
def HasField(self, field_name: typing_extensions.Literal["pressure",b"pressure","thermal_properties",b"thermal_properties"]) -> builtins.bool: ...
|
|
366
|
+
def ClearField(self, field_name: typing_extensions.Literal["pressure",b"pressure","thermal_properties",b"thermal_properties"]) -> None: ...
|
|
367
|
+
global___PressureOutletProperties = PressureOutletProperties
|
|
368
|
+
|
|
369
|
+
class MassFlowInletProperties(google.protobuf.message.Message):
|
|
370
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
371
|
+
MASS_FLOW_FIELD_NUMBER: builtins.int
|
|
372
|
+
THERMAL_PROPERTIES_FIELD_NUMBER: builtins.int
|
|
373
|
+
@property
|
|
374
|
+
def mass_flow(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
375
|
+
@property
|
|
376
|
+
def thermal_properties(self) -> global___FlowThermalProperties: ...
|
|
377
|
+
def __init__(self,
|
|
378
|
+
*,
|
|
379
|
+
mass_flow : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
380
|
+
thermal_properties : typing.Optional[global___FlowThermalProperties] = ...,
|
|
381
|
+
) -> None: ...
|
|
382
|
+
def HasField(self, field_name: typing_extensions.Literal["mass_flow",b"mass_flow","thermal_properties",b"thermal_properties"]) -> builtins.bool: ...
|
|
383
|
+
def ClearField(self, field_name: typing_extensions.Literal["mass_flow",b"mass_flow","thermal_properties",b"thermal_properties"]) -> None: ...
|
|
384
|
+
global___MassFlowInletProperties = MassFlowInletProperties
|
|
385
|
+
|
|
386
|
+
class MassFlowOutletProperties(google.protobuf.message.Message):
|
|
387
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
388
|
+
MASS_FLOW_FIELD_NUMBER: builtins.int
|
|
389
|
+
@property
|
|
390
|
+
def mass_flow(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
391
|
+
def __init__(self,
|
|
392
|
+
*,
|
|
393
|
+
mass_flow : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
394
|
+
) -> None: ...
|
|
395
|
+
def HasField(self, field_name: typing_extensions.Literal["mass_flow",b"mass_flow"]) -> builtins.bool: ...
|
|
396
|
+
def ClearField(self, field_name: typing_extensions.Literal["mass_flow",b"mass_flow"]) -> None: ...
|
|
397
|
+
global___MassFlowOutletProperties = MassFlowOutletProperties
|
|
398
|
+
|
|
399
|
+
class FlowThermalProperties(google.protobuf.message.Message):
|
|
400
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
401
|
+
IS_THERMAL_FIELD_NUMBER: builtins.int
|
|
402
|
+
TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
403
|
+
is_thermal: builtins.bool = ...
|
|
404
|
+
@property
|
|
405
|
+
def temperature(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
406
|
+
def __init__(self,
|
|
407
|
+
*,
|
|
408
|
+
is_thermal : builtins.bool = ...,
|
|
409
|
+
temperature : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
410
|
+
) -> None: ...
|
|
411
|
+
def HasField(self, field_name: typing_extensions.Literal["temperature",b"temperature"]) -> builtins.bool: ...
|
|
412
|
+
def ClearField(self, field_name: typing_extensions.Literal["is_thermal",b"is_thermal","temperature",b"temperature"]) -> None: ...
|
|
413
|
+
global___FlowThermalProperties = FlowThermalProperties
|
|
414
|
+
|
|
415
|
+
class FlowVelocityInletDefinition(google.protobuf.message.Message):
|
|
416
|
+
"""Fluid conditions definitions
|
|
417
|
+
|
|
418
|
+
"""
|
|
419
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
420
|
+
ID_FIELD_NUMBER: builtins.int
|
|
421
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
422
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
423
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
424
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
425
|
+
VELOCITY_INLET_FIELD_NUMBER: builtins.int
|
|
426
|
+
id: typing.Text = ...
|
|
427
|
+
parent_id: typing.Text = ...
|
|
428
|
+
label: typing.Text = ...
|
|
429
|
+
@property
|
|
430
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
431
|
+
suppressed: builtins.bool = ...
|
|
432
|
+
@property
|
|
433
|
+
def velocity_inlet(self) -> global___VelocityInletProperties: ...
|
|
434
|
+
def __init__(self,
|
|
435
|
+
*,
|
|
436
|
+
id : typing.Text = ...,
|
|
437
|
+
parent_id : typing.Text = ...,
|
|
438
|
+
label : typing.Text = ...,
|
|
439
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
440
|
+
suppressed : builtins.bool = ...,
|
|
441
|
+
velocity_inlet : typing.Optional[global___VelocityInletProperties] = ...,
|
|
442
|
+
) -> None: ...
|
|
443
|
+
def HasField(self, field_name: typing_extensions.Literal["velocity_inlet",b"velocity_inlet"]) -> builtins.bool: ...
|
|
444
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed","velocity_inlet",b"velocity_inlet"]) -> None: ...
|
|
445
|
+
global___FlowVelocityInletDefinition = FlowVelocityInletDefinition
|
|
446
|
+
|
|
447
|
+
class FlowVelocityOutletDefinition(google.protobuf.message.Message):
|
|
448
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
449
|
+
ID_FIELD_NUMBER: builtins.int
|
|
450
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
451
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
452
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
453
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
454
|
+
VELOCITY_OUTLET_FIELD_NUMBER: builtins.int
|
|
455
|
+
id: typing.Text = ...
|
|
456
|
+
parent_id: typing.Text = ...
|
|
457
|
+
label: typing.Text = ...
|
|
458
|
+
@property
|
|
459
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
460
|
+
suppressed: builtins.bool = ...
|
|
461
|
+
@property
|
|
462
|
+
def velocity_outlet(self) -> global___VelocityOutletProperties: ...
|
|
463
|
+
def __init__(self,
|
|
464
|
+
*,
|
|
465
|
+
id : typing.Text = ...,
|
|
466
|
+
parent_id : typing.Text = ...,
|
|
467
|
+
label : typing.Text = ...,
|
|
468
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
469
|
+
suppressed : builtins.bool = ...,
|
|
470
|
+
velocity_outlet : typing.Optional[global___VelocityOutletProperties] = ...,
|
|
471
|
+
) -> None: ...
|
|
472
|
+
def HasField(self, field_name: typing_extensions.Literal["velocity_outlet",b"velocity_outlet"]) -> builtins.bool: ...
|
|
473
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed","velocity_outlet",b"velocity_outlet"]) -> None: ...
|
|
474
|
+
global___FlowVelocityOutletDefinition = FlowVelocityOutletDefinition
|
|
475
|
+
|
|
476
|
+
class FlowPressureInletDefinition(google.protobuf.message.Message):
|
|
477
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
478
|
+
ID_FIELD_NUMBER: builtins.int
|
|
479
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
480
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
481
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
482
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
483
|
+
PRESSURE_INLET_FIELD_NUMBER: builtins.int
|
|
484
|
+
id: typing.Text = ...
|
|
485
|
+
parent_id: typing.Text = ...
|
|
486
|
+
label: typing.Text = ...
|
|
487
|
+
@property
|
|
488
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
489
|
+
suppressed: builtins.bool = ...
|
|
490
|
+
@property
|
|
491
|
+
def pressure_inlet(self) -> global___PressureInletProperties: ...
|
|
492
|
+
def __init__(self,
|
|
493
|
+
*,
|
|
494
|
+
id : typing.Text = ...,
|
|
495
|
+
parent_id : typing.Text = ...,
|
|
496
|
+
label : typing.Text = ...,
|
|
497
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
498
|
+
suppressed : builtins.bool = ...,
|
|
499
|
+
pressure_inlet : typing.Optional[global___PressureInletProperties] = ...,
|
|
500
|
+
) -> None: ...
|
|
501
|
+
def HasField(self, field_name: typing_extensions.Literal["pressure_inlet",b"pressure_inlet"]) -> builtins.bool: ...
|
|
502
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","pressure_inlet",b"pressure_inlet","suppressed",b"suppressed"]) -> None: ...
|
|
503
|
+
global___FlowPressureInletDefinition = FlowPressureInletDefinition
|
|
504
|
+
|
|
505
|
+
class FlowPressureOutletDefinition(google.protobuf.message.Message):
|
|
506
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
507
|
+
ID_FIELD_NUMBER: builtins.int
|
|
508
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
509
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
510
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
511
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
512
|
+
PRESSURE_OUTLET_FIELD_NUMBER: builtins.int
|
|
513
|
+
id: typing.Text = ...
|
|
514
|
+
parent_id: typing.Text = ...
|
|
515
|
+
label: typing.Text = ...
|
|
516
|
+
@property
|
|
517
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
518
|
+
suppressed: builtins.bool = ...
|
|
519
|
+
@property
|
|
520
|
+
def pressure_outlet(self) -> global___PressureOutletProperties: ...
|
|
521
|
+
def __init__(self,
|
|
522
|
+
*,
|
|
523
|
+
id : typing.Text = ...,
|
|
524
|
+
parent_id : typing.Text = ...,
|
|
525
|
+
label : typing.Text = ...,
|
|
526
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
527
|
+
suppressed : builtins.bool = ...,
|
|
528
|
+
pressure_outlet : typing.Optional[global___PressureOutletProperties] = ...,
|
|
529
|
+
) -> None: ...
|
|
530
|
+
def HasField(self, field_name: typing_extensions.Literal["pressure_outlet",b"pressure_outlet"]) -> builtins.bool: ...
|
|
531
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","pressure_outlet",b"pressure_outlet","suppressed",b"suppressed"]) -> None: ...
|
|
532
|
+
global___FlowPressureOutletDefinition = FlowPressureOutletDefinition
|
|
533
|
+
|
|
534
|
+
class FlowMassFlowInletDefinition(google.protobuf.message.Message):
|
|
535
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
536
|
+
ID_FIELD_NUMBER: builtins.int
|
|
537
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
538
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
539
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
540
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
541
|
+
MASS_FLOW_INLET_FIELD_NUMBER: builtins.int
|
|
542
|
+
id: typing.Text = ...
|
|
543
|
+
parent_id: typing.Text = ...
|
|
544
|
+
label: typing.Text = ...
|
|
545
|
+
@property
|
|
546
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
547
|
+
suppressed: builtins.bool = ...
|
|
548
|
+
@property
|
|
549
|
+
def mass_flow_inlet(self) -> global___MassFlowInletProperties: ...
|
|
550
|
+
def __init__(self,
|
|
551
|
+
*,
|
|
552
|
+
id : typing.Text = ...,
|
|
553
|
+
parent_id : typing.Text = ...,
|
|
554
|
+
label : typing.Text = ...,
|
|
555
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
556
|
+
suppressed : builtins.bool = ...,
|
|
557
|
+
mass_flow_inlet : typing.Optional[global___MassFlowInletProperties] = ...,
|
|
558
|
+
) -> None: ...
|
|
559
|
+
def HasField(self, field_name: typing_extensions.Literal["mass_flow_inlet",b"mass_flow_inlet"]) -> builtins.bool: ...
|
|
560
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","mass_flow_inlet",b"mass_flow_inlet","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
561
|
+
global___FlowMassFlowInletDefinition = FlowMassFlowInletDefinition
|
|
562
|
+
|
|
563
|
+
class FlowMassFlowOutletDefinition(google.protobuf.message.Message):
|
|
564
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
565
|
+
ID_FIELD_NUMBER: builtins.int
|
|
566
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
567
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
568
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
569
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
570
|
+
MASS_FLOW_OUTLET_FIELD_NUMBER: builtins.int
|
|
571
|
+
id: typing.Text = ...
|
|
572
|
+
parent_id: typing.Text = ...
|
|
573
|
+
label: typing.Text = ...
|
|
574
|
+
@property
|
|
575
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
576
|
+
suppressed: builtins.bool = ...
|
|
577
|
+
@property
|
|
578
|
+
def mass_flow_outlet(self) -> global___MassFlowOutletProperties: ...
|
|
579
|
+
def __init__(self,
|
|
580
|
+
*,
|
|
581
|
+
id : typing.Text = ...,
|
|
582
|
+
parent_id : typing.Text = ...,
|
|
583
|
+
label : typing.Text = ...,
|
|
584
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
585
|
+
suppressed : builtins.bool = ...,
|
|
586
|
+
mass_flow_outlet : typing.Optional[global___MassFlowOutletProperties] = ...,
|
|
587
|
+
) -> None: ...
|
|
588
|
+
def HasField(self, field_name: typing_extensions.Literal["mass_flow_outlet",b"mass_flow_outlet"]) -> builtins.bool: ...
|
|
589
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","mass_flow_outlet",b"mass_flow_outlet","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
590
|
+
global___FlowMassFlowOutletDefinition = FlowMassFlowOutletDefinition
|