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,662 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from ansys.api.discovery.v0 import conditionsfluid_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2
|
|
6
|
+
from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ConditionsFluidStub(object):
|
|
10
|
+
"""Missing associated documentation comment in .proto file."""
|
|
11
|
+
|
|
12
|
+
def __init__(self, channel):
|
|
13
|
+
"""Constructor.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
channel: A grpc.Channel.
|
|
17
|
+
"""
|
|
18
|
+
self.CreateFlowVelocityInlet = channel.unary_unary(
|
|
19
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowVelocityInlet',
|
|
20
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityInletCreationRequest.SerializeToString,
|
|
21
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityInletCreationResponse.FromString,
|
|
22
|
+
)
|
|
23
|
+
self.CreateFlowVelocityOutlet = channel.unary_unary(
|
|
24
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowVelocityOutlet',
|
|
25
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityOutletCreationRequest.SerializeToString,
|
|
26
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityOutletCreationResponse.FromString,
|
|
27
|
+
)
|
|
28
|
+
self.CreateFlowPressureInlet = channel.unary_unary(
|
|
29
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowPressureInlet',
|
|
30
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureInletCreationRequest.SerializeToString,
|
|
31
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureInletCreationResponse.FromString,
|
|
32
|
+
)
|
|
33
|
+
self.CreateFlowPressureOutlet = channel.unary_unary(
|
|
34
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowPressureOutlet',
|
|
35
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureOutletCreationRequest.SerializeToString,
|
|
36
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureOutletCreationResponse.FromString,
|
|
37
|
+
)
|
|
38
|
+
self.CreateFlowMassFlowInlet = channel.unary_unary(
|
|
39
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowMassFlowInlet',
|
|
40
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowInletCreationRequest.SerializeToString,
|
|
41
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowInletCreationResponse.FromString,
|
|
42
|
+
)
|
|
43
|
+
self.CreateFlowMassFlowOutlet = channel.unary_unary(
|
|
44
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowMassFlowOutlet',
|
|
45
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowOutletCreationRequest.SerializeToString,
|
|
46
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowOutletCreationResponse.FromString,
|
|
47
|
+
)
|
|
48
|
+
self.ChangeFlowLocation = channel.unary_unary(
|
|
49
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowLocation',
|
|
50
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.SerializeToString,
|
|
51
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
52
|
+
)
|
|
53
|
+
self.ChangeFlowVelocityInletMagnitude = channel.unary_unary(
|
|
54
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowVelocityInletMagnitude',
|
|
55
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
56
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
57
|
+
)
|
|
58
|
+
self.ChangeFlowVelocityOutletMagnitude = channel.unary_unary(
|
|
59
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowVelocityOutletMagnitude',
|
|
60
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
61
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
62
|
+
)
|
|
63
|
+
self.ChangeFlowPressureInletMagnitude = channel.unary_unary(
|
|
64
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowPressureInletMagnitude',
|
|
65
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
66
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
67
|
+
)
|
|
68
|
+
self.ChangeFlowPressureOutletMagnitude = channel.unary_unary(
|
|
69
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowPressureOutletMagnitude',
|
|
70
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
71
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
72
|
+
)
|
|
73
|
+
self.ChangeFlowMassFlowInletMagnitude = channel.unary_unary(
|
|
74
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowMassFlowInletMagnitude',
|
|
75
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
76
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
77
|
+
)
|
|
78
|
+
self.ChangeFlowMassFlowOutletMagnitude = channel.unary_unary(
|
|
79
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowMassFlowOutletMagnitude',
|
|
80
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
81
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
82
|
+
)
|
|
83
|
+
self.ChangeFlowTemperatureInputEnabled = channel.unary_unary(
|
|
84
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowTemperatureInputEnabled',
|
|
85
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeBooleanRequest.SerializeToString,
|
|
86
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
87
|
+
)
|
|
88
|
+
self.ChangeFlowTemperatureMagnitude = channel.unary_unary(
|
|
89
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowTemperatureMagnitude',
|
|
90
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
91
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
92
|
+
)
|
|
93
|
+
self.ChangeFlowSwirlingInputEnabled = channel.unary_unary(
|
|
94
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowSwirlingInputEnabled',
|
|
95
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeBooleanRequest.SerializeToString,
|
|
96
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
97
|
+
)
|
|
98
|
+
self.ChangeFlowSwirlingMagnitude = channel.unary_unary(
|
|
99
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowSwirlingMagnitude',
|
|
100
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
101
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
102
|
+
)
|
|
103
|
+
self.ChangeFlowSpecification = channel.unary_unary(
|
|
104
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowSpecification',
|
|
105
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.ChangeFlowSpecificationRequest.SerializeToString,
|
|
106
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
107
|
+
)
|
|
108
|
+
self.ChangeFlowDirection = channel.unary_unary(
|
|
109
|
+
'/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowDirection',
|
|
110
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.ChangeFlowDirectionRequest.SerializeToString,
|
|
111
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
class ConditionsFluidServicer(object):
|
|
116
|
+
"""Missing associated documentation comment in .proto file."""
|
|
117
|
+
|
|
118
|
+
def CreateFlowVelocityInlet(self, request, context):
|
|
119
|
+
"""Fluid flow methods
|
|
120
|
+
"""
|
|
121
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
122
|
+
context.set_details('Method not implemented!')
|
|
123
|
+
raise NotImplementedError('Method not implemented!')
|
|
124
|
+
|
|
125
|
+
def CreateFlowVelocityOutlet(self, request, context):
|
|
126
|
+
"""Missing associated documentation comment in .proto file."""
|
|
127
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
128
|
+
context.set_details('Method not implemented!')
|
|
129
|
+
raise NotImplementedError('Method not implemented!')
|
|
130
|
+
|
|
131
|
+
def CreateFlowPressureInlet(self, request, context):
|
|
132
|
+
"""Missing associated documentation comment in .proto file."""
|
|
133
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
134
|
+
context.set_details('Method not implemented!')
|
|
135
|
+
raise NotImplementedError('Method not implemented!')
|
|
136
|
+
|
|
137
|
+
def CreateFlowPressureOutlet(self, request, context):
|
|
138
|
+
"""Missing associated documentation comment in .proto file."""
|
|
139
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
140
|
+
context.set_details('Method not implemented!')
|
|
141
|
+
raise NotImplementedError('Method not implemented!')
|
|
142
|
+
|
|
143
|
+
def CreateFlowMassFlowInlet(self, request, context):
|
|
144
|
+
"""Missing associated documentation comment in .proto file."""
|
|
145
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
146
|
+
context.set_details('Method not implemented!')
|
|
147
|
+
raise NotImplementedError('Method not implemented!')
|
|
148
|
+
|
|
149
|
+
def CreateFlowMassFlowOutlet(self, request, context):
|
|
150
|
+
"""Missing associated documentation comment in .proto file."""
|
|
151
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
152
|
+
context.set_details('Method not implemented!')
|
|
153
|
+
raise NotImplementedError('Method not implemented!')
|
|
154
|
+
|
|
155
|
+
def ChangeFlowLocation(self, request, context):
|
|
156
|
+
"""Missing associated documentation comment in .proto file."""
|
|
157
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
158
|
+
context.set_details('Method not implemented!')
|
|
159
|
+
raise NotImplementedError('Method not implemented!')
|
|
160
|
+
|
|
161
|
+
def ChangeFlowVelocityInletMagnitude(self, request, context):
|
|
162
|
+
"""Missing associated documentation comment in .proto file."""
|
|
163
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
164
|
+
context.set_details('Method not implemented!')
|
|
165
|
+
raise NotImplementedError('Method not implemented!')
|
|
166
|
+
|
|
167
|
+
def ChangeFlowVelocityOutletMagnitude(self, request, context):
|
|
168
|
+
"""Missing associated documentation comment in .proto file."""
|
|
169
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
170
|
+
context.set_details('Method not implemented!')
|
|
171
|
+
raise NotImplementedError('Method not implemented!')
|
|
172
|
+
|
|
173
|
+
def ChangeFlowPressureInletMagnitude(self, request, context):
|
|
174
|
+
"""Missing associated documentation comment in .proto file."""
|
|
175
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
176
|
+
context.set_details('Method not implemented!')
|
|
177
|
+
raise NotImplementedError('Method not implemented!')
|
|
178
|
+
|
|
179
|
+
def ChangeFlowPressureOutletMagnitude(self, request, context):
|
|
180
|
+
"""Missing associated documentation comment in .proto file."""
|
|
181
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
182
|
+
context.set_details('Method not implemented!')
|
|
183
|
+
raise NotImplementedError('Method not implemented!')
|
|
184
|
+
|
|
185
|
+
def ChangeFlowMassFlowInletMagnitude(self, request, context):
|
|
186
|
+
"""Missing associated documentation comment in .proto file."""
|
|
187
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
188
|
+
context.set_details('Method not implemented!')
|
|
189
|
+
raise NotImplementedError('Method not implemented!')
|
|
190
|
+
|
|
191
|
+
def ChangeFlowMassFlowOutletMagnitude(self, request, context):
|
|
192
|
+
"""Missing associated documentation comment in .proto file."""
|
|
193
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
194
|
+
context.set_details('Method not implemented!')
|
|
195
|
+
raise NotImplementedError('Method not implemented!')
|
|
196
|
+
|
|
197
|
+
def ChangeFlowTemperatureInputEnabled(self, request, context):
|
|
198
|
+
"""Missing associated documentation comment in .proto file."""
|
|
199
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
200
|
+
context.set_details('Method not implemented!')
|
|
201
|
+
raise NotImplementedError('Method not implemented!')
|
|
202
|
+
|
|
203
|
+
def ChangeFlowTemperatureMagnitude(self, request, context):
|
|
204
|
+
"""Missing associated documentation comment in .proto file."""
|
|
205
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
206
|
+
context.set_details('Method not implemented!')
|
|
207
|
+
raise NotImplementedError('Method not implemented!')
|
|
208
|
+
|
|
209
|
+
def ChangeFlowSwirlingInputEnabled(self, request, context):
|
|
210
|
+
"""Missing associated documentation comment in .proto file."""
|
|
211
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
212
|
+
context.set_details('Method not implemented!')
|
|
213
|
+
raise NotImplementedError('Method not implemented!')
|
|
214
|
+
|
|
215
|
+
def ChangeFlowSwirlingMagnitude(self, request, context):
|
|
216
|
+
"""Missing associated documentation comment in .proto file."""
|
|
217
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
218
|
+
context.set_details('Method not implemented!')
|
|
219
|
+
raise NotImplementedError('Method not implemented!')
|
|
220
|
+
|
|
221
|
+
def ChangeFlowSpecification(self, request, context):
|
|
222
|
+
"""Missing associated documentation comment in .proto file."""
|
|
223
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
224
|
+
context.set_details('Method not implemented!')
|
|
225
|
+
raise NotImplementedError('Method not implemented!')
|
|
226
|
+
|
|
227
|
+
def ChangeFlowDirection(self, request, context):
|
|
228
|
+
"""Missing associated documentation comment in .proto file."""
|
|
229
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
230
|
+
context.set_details('Method not implemented!')
|
|
231
|
+
raise NotImplementedError('Method not implemented!')
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
def add_ConditionsFluidServicer_to_server(servicer, server):
|
|
235
|
+
rpc_method_handlers = {
|
|
236
|
+
'CreateFlowVelocityInlet': grpc.unary_unary_rpc_method_handler(
|
|
237
|
+
servicer.CreateFlowVelocityInlet,
|
|
238
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityInletCreationRequest.FromString,
|
|
239
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityInletCreationResponse.SerializeToString,
|
|
240
|
+
),
|
|
241
|
+
'CreateFlowVelocityOutlet': grpc.unary_unary_rpc_method_handler(
|
|
242
|
+
servicer.CreateFlowVelocityOutlet,
|
|
243
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityOutletCreationRequest.FromString,
|
|
244
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityOutletCreationResponse.SerializeToString,
|
|
245
|
+
),
|
|
246
|
+
'CreateFlowPressureInlet': grpc.unary_unary_rpc_method_handler(
|
|
247
|
+
servicer.CreateFlowPressureInlet,
|
|
248
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureInletCreationRequest.FromString,
|
|
249
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureInletCreationResponse.SerializeToString,
|
|
250
|
+
),
|
|
251
|
+
'CreateFlowPressureOutlet': grpc.unary_unary_rpc_method_handler(
|
|
252
|
+
servicer.CreateFlowPressureOutlet,
|
|
253
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureOutletCreationRequest.FromString,
|
|
254
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureOutletCreationResponse.SerializeToString,
|
|
255
|
+
),
|
|
256
|
+
'CreateFlowMassFlowInlet': grpc.unary_unary_rpc_method_handler(
|
|
257
|
+
servicer.CreateFlowMassFlowInlet,
|
|
258
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowInletCreationRequest.FromString,
|
|
259
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowInletCreationResponse.SerializeToString,
|
|
260
|
+
),
|
|
261
|
+
'CreateFlowMassFlowOutlet': grpc.unary_unary_rpc_method_handler(
|
|
262
|
+
servicer.CreateFlowMassFlowOutlet,
|
|
263
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowOutletCreationRequest.FromString,
|
|
264
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowOutletCreationResponse.SerializeToString,
|
|
265
|
+
),
|
|
266
|
+
'ChangeFlowLocation': grpc.unary_unary_rpc_method_handler(
|
|
267
|
+
servicer.ChangeFlowLocation,
|
|
268
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.FromString,
|
|
269
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
270
|
+
),
|
|
271
|
+
'ChangeFlowVelocityInletMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
272
|
+
servicer.ChangeFlowVelocityInletMagnitude,
|
|
273
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
274
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
275
|
+
),
|
|
276
|
+
'ChangeFlowVelocityOutletMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
277
|
+
servicer.ChangeFlowVelocityOutletMagnitude,
|
|
278
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
279
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
280
|
+
),
|
|
281
|
+
'ChangeFlowPressureInletMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
282
|
+
servicer.ChangeFlowPressureInletMagnitude,
|
|
283
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
284
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
285
|
+
),
|
|
286
|
+
'ChangeFlowPressureOutletMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
287
|
+
servicer.ChangeFlowPressureOutletMagnitude,
|
|
288
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
289
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
290
|
+
),
|
|
291
|
+
'ChangeFlowMassFlowInletMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
292
|
+
servicer.ChangeFlowMassFlowInletMagnitude,
|
|
293
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
294
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
295
|
+
),
|
|
296
|
+
'ChangeFlowMassFlowOutletMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
297
|
+
servicer.ChangeFlowMassFlowOutletMagnitude,
|
|
298
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
299
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
300
|
+
),
|
|
301
|
+
'ChangeFlowTemperatureInputEnabled': grpc.unary_unary_rpc_method_handler(
|
|
302
|
+
servicer.ChangeFlowTemperatureInputEnabled,
|
|
303
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeBooleanRequest.FromString,
|
|
304
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
305
|
+
),
|
|
306
|
+
'ChangeFlowTemperatureMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
307
|
+
servicer.ChangeFlowTemperatureMagnitude,
|
|
308
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
309
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
310
|
+
),
|
|
311
|
+
'ChangeFlowSwirlingInputEnabled': grpc.unary_unary_rpc_method_handler(
|
|
312
|
+
servicer.ChangeFlowSwirlingInputEnabled,
|
|
313
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeBooleanRequest.FromString,
|
|
314
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
315
|
+
),
|
|
316
|
+
'ChangeFlowSwirlingMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
317
|
+
servicer.ChangeFlowSwirlingMagnitude,
|
|
318
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
319
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
320
|
+
),
|
|
321
|
+
'ChangeFlowSpecification': grpc.unary_unary_rpc_method_handler(
|
|
322
|
+
servicer.ChangeFlowSpecification,
|
|
323
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.ChangeFlowSpecificationRequest.FromString,
|
|
324
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
325
|
+
),
|
|
326
|
+
'ChangeFlowDirection': grpc.unary_unary_rpc_method_handler(
|
|
327
|
+
servicer.ChangeFlowDirection,
|
|
328
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.ChangeFlowDirectionRequest.FromString,
|
|
329
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.SerializeToString,
|
|
330
|
+
),
|
|
331
|
+
}
|
|
332
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
333
|
+
'ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid', rpc_method_handlers)
|
|
334
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
# This class is part of an EXPERIMENTAL API.
|
|
338
|
+
class ConditionsFluid(object):
|
|
339
|
+
"""Missing associated documentation comment in .proto file."""
|
|
340
|
+
|
|
341
|
+
@staticmethod
|
|
342
|
+
def CreateFlowVelocityInlet(request,
|
|
343
|
+
target,
|
|
344
|
+
options=(),
|
|
345
|
+
channel_credentials=None,
|
|
346
|
+
call_credentials=None,
|
|
347
|
+
insecure=False,
|
|
348
|
+
compression=None,
|
|
349
|
+
wait_for_ready=None,
|
|
350
|
+
timeout=None,
|
|
351
|
+
metadata=None):
|
|
352
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowVelocityInlet',
|
|
353
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityInletCreationRequest.SerializeToString,
|
|
354
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityInletCreationResponse.FromString,
|
|
355
|
+
options, channel_credentials,
|
|
356
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
357
|
+
|
|
358
|
+
@staticmethod
|
|
359
|
+
def CreateFlowVelocityOutlet(request,
|
|
360
|
+
target,
|
|
361
|
+
options=(),
|
|
362
|
+
channel_credentials=None,
|
|
363
|
+
call_credentials=None,
|
|
364
|
+
insecure=False,
|
|
365
|
+
compression=None,
|
|
366
|
+
wait_for_ready=None,
|
|
367
|
+
timeout=None,
|
|
368
|
+
metadata=None):
|
|
369
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowVelocityOutlet',
|
|
370
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityOutletCreationRequest.SerializeToString,
|
|
371
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowVelocityOutletCreationResponse.FromString,
|
|
372
|
+
options, channel_credentials,
|
|
373
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
374
|
+
|
|
375
|
+
@staticmethod
|
|
376
|
+
def CreateFlowPressureInlet(request,
|
|
377
|
+
target,
|
|
378
|
+
options=(),
|
|
379
|
+
channel_credentials=None,
|
|
380
|
+
call_credentials=None,
|
|
381
|
+
insecure=False,
|
|
382
|
+
compression=None,
|
|
383
|
+
wait_for_ready=None,
|
|
384
|
+
timeout=None,
|
|
385
|
+
metadata=None):
|
|
386
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowPressureInlet',
|
|
387
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureInletCreationRequest.SerializeToString,
|
|
388
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureInletCreationResponse.FromString,
|
|
389
|
+
options, channel_credentials,
|
|
390
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
391
|
+
|
|
392
|
+
@staticmethod
|
|
393
|
+
def CreateFlowPressureOutlet(request,
|
|
394
|
+
target,
|
|
395
|
+
options=(),
|
|
396
|
+
channel_credentials=None,
|
|
397
|
+
call_credentials=None,
|
|
398
|
+
insecure=False,
|
|
399
|
+
compression=None,
|
|
400
|
+
wait_for_ready=None,
|
|
401
|
+
timeout=None,
|
|
402
|
+
metadata=None):
|
|
403
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowPressureOutlet',
|
|
404
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureOutletCreationRequest.SerializeToString,
|
|
405
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowPressureOutletCreationResponse.FromString,
|
|
406
|
+
options, channel_credentials,
|
|
407
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
408
|
+
|
|
409
|
+
@staticmethod
|
|
410
|
+
def CreateFlowMassFlowInlet(request,
|
|
411
|
+
target,
|
|
412
|
+
options=(),
|
|
413
|
+
channel_credentials=None,
|
|
414
|
+
call_credentials=None,
|
|
415
|
+
insecure=False,
|
|
416
|
+
compression=None,
|
|
417
|
+
wait_for_ready=None,
|
|
418
|
+
timeout=None,
|
|
419
|
+
metadata=None):
|
|
420
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowMassFlowInlet',
|
|
421
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowInletCreationRequest.SerializeToString,
|
|
422
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowInletCreationResponse.FromString,
|
|
423
|
+
options, channel_credentials,
|
|
424
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
425
|
+
|
|
426
|
+
@staticmethod
|
|
427
|
+
def CreateFlowMassFlowOutlet(request,
|
|
428
|
+
target,
|
|
429
|
+
options=(),
|
|
430
|
+
channel_credentials=None,
|
|
431
|
+
call_credentials=None,
|
|
432
|
+
insecure=False,
|
|
433
|
+
compression=None,
|
|
434
|
+
wait_for_ready=None,
|
|
435
|
+
timeout=None,
|
|
436
|
+
metadata=None):
|
|
437
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/CreateFlowMassFlowOutlet',
|
|
438
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowOutletCreationRequest.SerializeToString,
|
|
439
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.FlowMassFlowOutletCreationResponse.FromString,
|
|
440
|
+
options, channel_credentials,
|
|
441
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
442
|
+
|
|
443
|
+
@staticmethod
|
|
444
|
+
def ChangeFlowLocation(request,
|
|
445
|
+
target,
|
|
446
|
+
options=(),
|
|
447
|
+
channel_credentials=None,
|
|
448
|
+
call_credentials=None,
|
|
449
|
+
insecure=False,
|
|
450
|
+
compression=None,
|
|
451
|
+
wait_for_ready=None,
|
|
452
|
+
timeout=None,
|
|
453
|
+
metadata=None):
|
|
454
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowLocation',
|
|
455
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.SerializeToString,
|
|
456
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
457
|
+
options, channel_credentials,
|
|
458
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
459
|
+
|
|
460
|
+
@staticmethod
|
|
461
|
+
def ChangeFlowVelocityInletMagnitude(request,
|
|
462
|
+
target,
|
|
463
|
+
options=(),
|
|
464
|
+
channel_credentials=None,
|
|
465
|
+
call_credentials=None,
|
|
466
|
+
insecure=False,
|
|
467
|
+
compression=None,
|
|
468
|
+
wait_for_ready=None,
|
|
469
|
+
timeout=None,
|
|
470
|
+
metadata=None):
|
|
471
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowVelocityInletMagnitude',
|
|
472
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
473
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
474
|
+
options, channel_credentials,
|
|
475
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
476
|
+
|
|
477
|
+
@staticmethod
|
|
478
|
+
def ChangeFlowVelocityOutletMagnitude(request,
|
|
479
|
+
target,
|
|
480
|
+
options=(),
|
|
481
|
+
channel_credentials=None,
|
|
482
|
+
call_credentials=None,
|
|
483
|
+
insecure=False,
|
|
484
|
+
compression=None,
|
|
485
|
+
wait_for_ready=None,
|
|
486
|
+
timeout=None,
|
|
487
|
+
metadata=None):
|
|
488
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowVelocityOutletMagnitude',
|
|
489
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
490
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
491
|
+
options, channel_credentials,
|
|
492
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
493
|
+
|
|
494
|
+
@staticmethod
|
|
495
|
+
def ChangeFlowPressureInletMagnitude(request,
|
|
496
|
+
target,
|
|
497
|
+
options=(),
|
|
498
|
+
channel_credentials=None,
|
|
499
|
+
call_credentials=None,
|
|
500
|
+
insecure=False,
|
|
501
|
+
compression=None,
|
|
502
|
+
wait_for_ready=None,
|
|
503
|
+
timeout=None,
|
|
504
|
+
metadata=None):
|
|
505
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowPressureInletMagnitude',
|
|
506
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
507
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
508
|
+
options, channel_credentials,
|
|
509
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
510
|
+
|
|
511
|
+
@staticmethod
|
|
512
|
+
def ChangeFlowPressureOutletMagnitude(request,
|
|
513
|
+
target,
|
|
514
|
+
options=(),
|
|
515
|
+
channel_credentials=None,
|
|
516
|
+
call_credentials=None,
|
|
517
|
+
insecure=False,
|
|
518
|
+
compression=None,
|
|
519
|
+
wait_for_ready=None,
|
|
520
|
+
timeout=None,
|
|
521
|
+
metadata=None):
|
|
522
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowPressureOutletMagnitude',
|
|
523
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
524
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
525
|
+
options, channel_credentials,
|
|
526
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
527
|
+
|
|
528
|
+
@staticmethod
|
|
529
|
+
def ChangeFlowMassFlowInletMagnitude(request,
|
|
530
|
+
target,
|
|
531
|
+
options=(),
|
|
532
|
+
channel_credentials=None,
|
|
533
|
+
call_credentials=None,
|
|
534
|
+
insecure=False,
|
|
535
|
+
compression=None,
|
|
536
|
+
wait_for_ready=None,
|
|
537
|
+
timeout=None,
|
|
538
|
+
metadata=None):
|
|
539
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowMassFlowInletMagnitude',
|
|
540
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
541
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
542
|
+
options, channel_credentials,
|
|
543
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
544
|
+
|
|
545
|
+
@staticmethod
|
|
546
|
+
def ChangeFlowMassFlowOutletMagnitude(request,
|
|
547
|
+
target,
|
|
548
|
+
options=(),
|
|
549
|
+
channel_credentials=None,
|
|
550
|
+
call_credentials=None,
|
|
551
|
+
insecure=False,
|
|
552
|
+
compression=None,
|
|
553
|
+
wait_for_ready=None,
|
|
554
|
+
timeout=None,
|
|
555
|
+
metadata=None):
|
|
556
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowMassFlowOutletMagnitude',
|
|
557
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
558
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
559
|
+
options, channel_credentials,
|
|
560
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
561
|
+
|
|
562
|
+
@staticmethod
|
|
563
|
+
def ChangeFlowTemperatureInputEnabled(request,
|
|
564
|
+
target,
|
|
565
|
+
options=(),
|
|
566
|
+
channel_credentials=None,
|
|
567
|
+
call_credentials=None,
|
|
568
|
+
insecure=False,
|
|
569
|
+
compression=None,
|
|
570
|
+
wait_for_ready=None,
|
|
571
|
+
timeout=None,
|
|
572
|
+
metadata=None):
|
|
573
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowTemperatureInputEnabled',
|
|
574
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeBooleanRequest.SerializeToString,
|
|
575
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
576
|
+
options, channel_credentials,
|
|
577
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
578
|
+
|
|
579
|
+
@staticmethod
|
|
580
|
+
def ChangeFlowTemperatureMagnitude(request,
|
|
581
|
+
target,
|
|
582
|
+
options=(),
|
|
583
|
+
channel_credentials=None,
|
|
584
|
+
call_credentials=None,
|
|
585
|
+
insecure=False,
|
|
586
|
+
compression=None,
|
|
587
|
+
wait_for_ready=None,
|
|
588
|
+
timeout=None,
|
|
589
|
+
metadata=None):
|
|
590
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowTemperatureMagnitude',
|
|
591
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
592
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
593
|
+
options, channel_credentials,
|
|
594
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
595
|
+
|
|
596
|
+
@staticmethod
|
|
597
|
+
def ChangeFlowSwirlingInputEnabled(request,
|
|
598
|
+
target,
|
|
599
|
+
options=(),
|
|
600
|
+
channel_credentials=None,
|
|
601
|
+
call_credentials=None,
|
|
602
|
+
insecure=False,
|
|
603
|
+
compression=None,
|
|
604
|
+
wait_for_ready=None,
|
|
605
|
+
timeout=None,
|
|
606
|
+
metadata=None):
|
|
607
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowSwirlingInputEnabled',
|
|
608
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeBooleanRequest.SerializeToString,
|
|
609
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
610
|
+
options, channel_credentials,
|
|
611
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
612
|
+
|
|
613
|
+
@staticmethod
|
|
614
|
+
def ChangeFlowSwirlingMagnitude(request,
|
|
615
|
+
target,
|
|
616
|
+
options=(),
|
|
617
|
+
channel_credentials=None,
|
|
618
|
+
call_credentials=None,
|
|
619
|
+
insecure=False,
|
|
620
|
+
compression=None,
|
|
621
|
+
wait_for_ready=None,
|
|
622
|
+
timeout=None,
|
|
623
|
+
metadata=None):
|
|
624
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowSwirlingMagnitude',
|
|
625
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
626
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
627
|
+
options, channel_credentials,
|
|
628
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
629
|
+
|
|
630
|
+
@staticmethod
|
|
631
|
+
def ChangeFlowSpecification(request,
|
|
632
|
+
target,
|
|
633
|
+
options=(),
|
|
634
|
+
channel_credentials=None,
|
|
635
|
+
call_credentials=None,
|
|
636
|
+
insecure=False,
|
|
637
|
+
compression=None,
|
|
638
|
+
wait_for_ready=None,
|
|
639
|
+
timeout=None,
|
|
640
|
+
metadata=None):
|
|
641
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowSpecification',
|
|
642
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.ChangeFlowSpecificationRequest.SerializeToString,
|
|
643
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
644
|
+
options, channel_credentials,
|
|
645
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
646
|
+
|
|
647
|
+
@staticmethod
|
|
648
|
+
def ChangeFlowDirection(request,
|
|
649
|
+
target,
|
|
650
|
+
options=(),
|
|
651
|
+
channel_credentials=None,
|
|
652
|
+
call_credentials=None,
|
|
653
|
+
insecure=False,
|
|
654
|
+
compression=None,
|
|
655
|
+
wait_for_ready=None,
|
|
656
|
+
timeout=None,
|
|
657
|
+
metadata=None):
|
|
658
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsfluid.ConditionsFluid/ChangeFlowDirection',
|
|
659
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsfluid__pb2.ChangeFlowDirectionRequest.SerializeToString,
|
|
660
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ConditionChangedResponse.FromString,
|
|
661
|
+
options, channel_credentials,
|
|
662
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|