ansys-api-discovery 0.6.14__py3-none-any.whl → 0.6.17__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.

Files changed (46) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/assignments/fan.proto +2 -1
  3. ansys/api/discovery/v0/assignments/fan_pb2.py +22 -22
  4. ansys/api/discovery/v0/assignments/fan_pb2.pyi +9 -4
  5. ansys/api/discovery/v0/conditions/porous.proto +12 -16
  6. ansys/api/discovery/v0/conditions/porous_pb2.py +19 -21
  7. ansys/api/discovery/v0/conditions/porous_pb2.pyi +19 -38
  8. ansys/api/discovery/v0/conditions/porous_pb2_grpc.py +63 -30
  9. ansys/api/discovery/v0/conditions/porous_pb2_grpc.pyi +22 -12
  10. ansys/api/discovery/v0/conditions/rotatingfluidzone.proto +1 -1
  11. ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.py +6 -6
  12. ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.pyi +5 -5
  13. ansys/api/discovery/v0/connections/contact.proto +20 -56
  14. ansys/api/discovery/v0/connections/contact_pb2.py +12 -20
  15. ansys/api/discovery/v0/connections/contact_pb2.pyi +11 -134
  16. ansys/api/discovery/v0/connections/contact_pb2_grpc.py +145 -145
  17. ansys/api/discovery/v0/connections/contact_pb2_grpc.pyi +46 -46
  18. ansys/api/discovery/v0/connections/contactgroup.proto +31 -50
  19. ansys/api/discovery/v0/connections/contactgroup_pb2.py +8 -10
  20. ansys/api/discovery/v0/connections/contactgroup_pb2.pyi +4 -82
  21. ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.py +190 -190
  22. ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.pyi +60 -60
  23. ansys/api/discovery/v0/connections/fluidinterface.proto +1 -13
  24. ansys/api/discovery/v0/connections/fluidinterface_pb2.py +11 -17
  25. ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi +0 -35
  26. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py +10 -10
  27. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi +4 -4
  28. ansys/api/discovery/v0/discoverymodels.proto +60 -1
  29. ansys/api/discovery/v0/discoverymodels_pb2.py +62 -48
  30. ansys/api/discovery/v0/discoverymodels_pb2.pyi +191 -5
  31. ansys/api/discovery/v0/monitors.proto +20 -0
  32. ansys/api/discovery/v0/monitors_pb2.py +15 -7
  33. ansys/api/discovery/v0/monitors_pb2.pyi +41 -0
  34. ansys/api/discovery/v0/monitors_pb2_grpc.py +66 -0
  35. ansys/api/discovery/v0/monitors_pb2_grpc.pyi +20 -0
  36. ansys/api/discovery/v0/unsupported.proto +12 -0
  37. ansys/api/discovery/v0/unsupported_pb2.py +20 -11
  38. ansys/api/discovery/v0/unsupported_pb2.pyi +41 -0
  39. ansys/api/discovery/v0/unsupported_pb2_grpc.py +33 -0
  40. ansys/api/discovery/v0/unsupported_pb2_grpc.pyi +10 -0
  41. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/METADATA +3 -3
  42. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/RECORD +46 -46
  43. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/LICENSE +0 -0
  44. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/WHEEL +0 -0
  45. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/entry_points.txt +0 -0
  46. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/top_level.txt +0 -0
@@ -11,103 +11,103 @@ import grpc
11
11
 
12
12
  class ContactGroupStub:
13
13
  def __init__(self, channel: grpc.Channel) -> None: ...
14
- ChangeContactSide1Location: grpc.UnaryUnaryMultiCallable[
14
+ ChangeContactGroupSide1Location: grpc.UnaryUnaryMultiCallable[
15
15
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
16
16
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
17
17
 
18
- ChangeContactSide2Location: grpc.UnaryUnaryMultiCallable[
18
+ ChangeContactGroupSide2Location: grpc.UnaryUnaryMultiCallable[
19
19
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
20
20
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
21
21
 
22
- ChangeContactType: grpc.UnaryUnaryMultiCallable[
22
+ ChangeContactGroupContactType: grpc.UnaryUnaryMultiCallable[
23
23
  ansys.api.discovery.v0.connections.contact_pb2.ChangeContactTypeRequest,
24
24
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
25
25
 
26
- Split: grpc.UnaryUnaryMultiCallable[
26
+ SplitContactGroup: grpc.UnaryUnaryMultiCallable[
27
27
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeEmptyRequest,
28
28
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
29
29
 
30
- Convert: grpc.UnaryUnaryMultiCallable[
30
+ ConvertContactGroup: grpc.UnaryUnaryMultiCallable[
31
31
  ansys.api.discovery.v0.connections.contactgroup_pb2.ConvertContactGroupChangeRequest,
32
32
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
33
33
 
34
- ChangeFrictionCoefficient: grpc.UnaryUnaryMultiCallable[
34
+ ChangeContactGroupFrictionCoefficient: grpc.UnaryUnaryMultiCallable[
35
35
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeDoubleRequest,
36
36
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
37
37
 
38
- ChangeStiffnessFactor: grpc.UnaryUnaryMultiCallable[
38
+ ChangeContactGroupStiffnessFactor: grpc.UnaryUnaryMultiCallable[
39
39
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeDoubleRequest,
40
40
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
41
41
 
42
- ChangeDetectionRadiusFactor: grpc.UnaryUnaryMultiCallable[
42
+ ChangeContactGroupDetectionRadiusFactor: grpc.UnaryUnaryMultiCallable[
43
43
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeDoubleRequest,
44
44
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
45
45
 
46
- ChangeOffset: grpc.UnaryUnaryMultiCallable[
46
+ ChangeContactGroupOffset: grpc.UnaryUnaryMultiCallable[
47
47
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
48
48
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
49
49
 
50
- ChangeShearStrength: grpc.UnaryUnaryMultiCallable[
50
+ ChangeContactGroupShearStrength: grpc.UnaryUnaryMultiCallable[
51
51
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
52
52
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
53
53
 
54
- ChangeTensileStrength: grpc.UnaryUnaryMultiCallable[
54
+ ChangeContactGroupTensileStrength: grpc.UnaryUnaryMultiCallable[
55
55
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
56
56
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
57
57
 
58
- ChangeAreStrengthLimitsSet: grpc.UnaryUnaryMultiCallable[
58
+ ChangeContactGroupAreStrengthLimitsSet: grpc.UnaryUnaryMultiCallable[
59
59
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
60
60
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
61
61
 
62
- ChangeAdjustGapOrOverlap: grpc.UnaryUnaryMultiCallable[
62
+ ChangeContactGroupAdjustGapOrOverlap: grpc.UnaryUnaryMultiCallable[
63
63
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
64
64
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
65
65
 
66
- ChangeMakeJustTouching: grpc.UnaryUnaryMultiCallable[
66
+ ChangeContactGroupMakeJustTouching: grpc.UnaryUnaryMultiCallable[
67
67
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
68
68
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
69
69
 
70
- ChangeIdealize: grpc.UnaryUnaryMultiCallable[
70
+ ChangeContactGroupIdealize: grpc.UnaryUnaryMultiCallable[
71
71
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
72
72
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
73
73
 
74
- ChangeSpecifyThermalConductance: grpc.UnaryUnaryMultiCallable[
75
- ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
74
+ ChangeContactGroupDetectionDistanceLow: grpc.UnaryUnaryMultiCallable[
75
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
76
76
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
77
77
 
78
- ChangeSpecifyThermalConductanceFromThicknessAndMaterial: grpc.UnaryUnaryMultiCallable[
79
- ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
78
+ ChangeContactGroupDetectionDistanceHigh: grpc.UnaryUnaryMultiCallable[
79
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
80
80
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
81
81
 
82
- ChangeSpecifyElectricConductance: grpc.UnaryUnaryMultiCallable[
83
- ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
82
+ ChangeContactGroupSpecifyThermalConductance: grpc.UnaryUnaryMultiCallable[
83
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeSpecifyConductanceRequest,
84
84
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
85
85
 
86
- ChangeSpecifyElectricConductanceFromThicknessAndMaterial: grpc.UnaryUnaryMultiCallable[
87
- ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
86
+ ChangeContactGroupSpecifyElectricConductance: grpc.UnaryUnaryMultiCallable[
87
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeSpecifyConductanceRequest,
88
88
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
89
89
 
90
- ChangeThermalContactConductance: grpc.UnaryUnaryMultiCallable[
90
+ ChangeContactGroupConductanceThickness: grpc.UnaryUnaryMultiCallable[
91
91
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
92
92
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
93
93
 
94
- ChangeThermalConductanceThickness: grpc.UnaryUnaryMultiCallable[
95
- ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
94
+ ChangeContactGroupConductanceMaterial: grpc.UnaryUnaryMultiCallable[
95
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeAssignmentRequest,
96
96
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
97
97
 
98
- ChangeElectricContactConductance: grpc.UnaryUnaryMultiCallable[
98
+ ChangeContactGroupThermalContactConductivity: grpc.UnaryUnaryMultiCallable[
99
99
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
100
100
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
101
101
 
102
- ChangeElectricConductanceThickness: grpc.UnaryUnaryMultiCallable[
102
+ ChangeContactGroupElectricContactConductivity: grpc.UnaryUnaryMultiCallable[
103
103
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
104
104
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
105
105
 
106
- ChangeDetectionDistanceLow: grpc.UnaryUnaryMultiCallable[
106
+ ChangeContactGroupThermalContactConductance: grpc.UnaryUnaryMultiCallable[
107
107
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
108
108
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
109
109
 
110
- ChangeDetectionDistanceHigh: grpc.UnaryUnaryMultiCallable[
110
+ ChangeContactGroupElectricContactConductance: grpc.UnaryUnaryMultiCallable[
111
111
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
112
112
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
113
113
 
@@ -118,151 +118,151 @@ class ContactGroupStub:
118
118
 
119
119
  class ContactGroupServicer(metaclass=abc.ABCMeta):
120
120
  @abc.abstractmethod
121
- def ChangeContactSide1Location(self,
121
+ def ChangeContactGroupSide1Location(self,
122
122
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
123
123
  context: grpc.ServicerContext,
124
124
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
125
125
 
126
126
  @abc.abstractmethod
127
- def ChangeContactSide2Location(self,
127
+ def ChangeContactGroupSide2Location(self,
128
128
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
129
129
  context: grpc.ServicerContext,
130
130
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
131
131
 
132
132
  @abc.abstractmethod
133
- def ChangeContactType(self,
133
+ def ChangeContactGroupContactType(self,
134
134
  request: ansys.api.discovery.v0.connections.contact_pb2.ChangeContactTypeRequest,
135
135
  context: grpc.ServicerContext,
136
136
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
137
137
 
138
138
  @abc.abstractmethod
139
- def Split(self,
139
+ def SplitContactGroup(self,
140
140
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeEmptyRequest,
141
141
  context: grpc.ServicerContext,
142
142
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
143
143
 
144
144
  @abc.abstractmethod
145
- def Convert(self,
145
+ def ConvertContactGroup(self,
146
146
  request: ansys.api.discovery.v0.connections.contactgroup_pb2.ConvertContactGroupChangeRequest,
147
147
  context: grpc.ServicerContext,
148
148
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
149
149
 
150
150
  @abc.abstractmethod
151
- def ChangeFrictionCoefficient(self,
151
+ def ChangeContactGroupFrictionCoefficient(self,
152
152
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeDoubleRequest,
153
153
  context: grpc.ServicerContext,
154
154
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
155
155
 
156
156
  @abc.abstractmethod
157
- def ChangeStiffnessFactor(self,
157
+ def ChangeContactGroupStiffnessFactor(self,
158
158
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeDoubleRequest,
159
159
  context: grpc.ServicerContext,
160
160
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
161
161
 
162
162
  @abc.abstractmethod
163
- def ChangeDetectionRadiusFactor(self,
163
+ def ChangeContactGroupDetectionRadiusFactor(self,
164
164
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeDoubleRequest,
165
165
  context: grpc.ServicerContext,
166
166
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
167
167
 
168
168
  @abc.abstractmethod
169
- def ChangeOffset(self,
169
+ def ChangeContactGroupOffset(self,
170
170
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
171
171
  context: grpc.ServicerContext,
172
172
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
173
173
 
174
174
  @abc.abstractmethod
175
- def ChangeShearStrength(self,
175
+ def ChangeContactGroupShearStrength(self,
176
176
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
177
177
  context: grpc.ServicerContext,
178
178
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
179
179
 
180
180
  @abc.abstractmethod
181
- def ChangeTensileStrength(self,
181
+ def ChangeContactGroupTensileStrength(self,
182
182
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
183
183
  context: grpc.ServicerContext,
184
184
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
185
185
 
186
186
  @abc.abstractmethod
187
- def ChangeAreStrengthLimitsSet(self,
187
+ def ChangeContactGroupAreStrengthLimitsSet(self,
188
188
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
189
189
  context: grpc.ServicerContext,
190
190
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
191
191
 
192
192
  @abc.abstractmethod
193
- def ChangeAdjustGapOrOverlap(self,
193
+ def ChangeContactGroupAdjustGapOrOverlap(self,
194
194
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
195
195
  context: grpc.ServicerContext,
196
196
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
197
197
 
198
198
  @abc.abstractmethod
199
- def ChangeMakeJustTouching(self,
199
+ def ChangeContactGroupMakeJustTouching(self,
200
200
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
201
201
  context: grpc.ServicerContext,
202
202
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
203
203
 
204
204
  @abc.abstractmethod
205
- def ChangeIdealize(self,
205
+ def ChangeContactGroupIdealize(self,
206
206
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
207
207
  context: grpc.ServicerContext,
208
208
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
209
209
 
210
210
  @abc.abstractmethod
211
- def ChangeSpecifyThermalConductance(self,
212
- request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
211
+ def ChangeContactGroupDetectionDistanceLow(self,
212
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
213
213
  context: grpc.ServicerContext,
214
214
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
215
215
 
216
216
  @abc.abstractmethod
217
- def ChangeSpecifyThermalConductanceFromThicknessAndMaterial(self,
218
- request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
217
+ def ChangeContactGroupDetectionDistanceHigh(self,
218
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
219
219
  context: grpc.ServicerContext,
220
220
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
221
221
 
222
222
  @abc.abstractmethod
223
- def ChangeSpecifyElectricConductance(self,
224
- request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
223
+ def ChangeContactGroupSpecifyThermalConductance(self,
224
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeSpecifyConductanceRequest,
225
225
  context: grpc.ServicerContext,
226
226
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
227
227
 
228
228
  @abc.abstractmethod
229
- def ChangeSpecifyElectricConductanceFromThicknessAndMaterial(self,
230
- request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeBooleanRequest,
229
+ def ChangeContactGroupSpecifyElectricConductance(self,
230
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeSpecifyConductanceRequest,
231
231
  context: grpc.ServicerContext,
232
232
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
233
233
 
234
234
  @abc.abstractmethod
235
- def ChangeThermalContactConductance(self,
235
+ def ChangeContactGroupConductanceThickness(self,
236
236
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
237
237
  context: grpc.ServicerContext,
238
238
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
239
239
 
240
240
  @abc.abstractmethod
241
- def ChangeThermalConductanceThickness(self,
242
- request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
241
+ def ChangeContactGroupConductanceMaterial(self,
242
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeAssignmentRequest,
243
243
  context: grpc.ServicerContext,
244
244
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
245
245
 
246
246
  @abc.abstractmethod
247
- def ChangeElectricContactConductance(self,
247
+ def ChangeContactGroupThermalContactConductivity(self,
248
248
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
249
249
  context: grpc.ServicerContext,
250
250
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
251
251
 
252
252
  @abc.abstractmethod
253
- def ChangeElectricConductanceThickness(self,
253
+ def ChangeContactGroupElectricContactConductivity(self,
254
254
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
255
255
  context: grpc.ServicerContext,
256
256
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
257
257
 
258
258
  @abc.abstractmethod
259
- def ChangeDetectionDistanceLow(self,
259
+ def ChangeContactGroupThermalContactConductance(self,
260
260
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
261
261
  context: grpc.ServicerContext,
262
262
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
263
263
 
264
264
  @abc.abstractmethod
265
- def ChangeDetectionDistanceHigh(self,
265
+ def ChangeContactGroupElectricContactConductance(self,
266
266
  request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
267
267
  context: grpc.ServicerContext,
268
268
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
@@ -3,8 +3,6 @@ syntax = "proto3";
3
3
  package ansys.api.discovery.v0.connections.fluidinterface;
4
4
 
5
5
  import "ansys/api/dbu/v0/dbumodels.proto";
6
- import "ansys/api/discovery/v0/conditions/condition.proto";
7
- import "ansys/api/discovery/v0/connections/contact.proto";
8
6
  import "ansys/api/discovery/v0/discoverymodels.proto";
9
7
 
10
8
  option csharp_namespace = "Ansys.Api.Discovery.V0.Connections";
@@ -13,7 +11,7 @@ service FluidInterface
13
11
  {
14
12
  rpc ChangeFluidInterfaceType(ChangeFluidInterfaceTypeRequest) returns (ChangeResponse);
15
13
  rpc ChangeFluidInterfaceFaceGroupingMethod(ChangeFluidInterfaceFaceGroupingMethodRequest) returns (ChangeResponse);
16
- rpc ChangeFluidInterfaceSpecifyConductanceMethod(ChangeFluidInterfaceConductanceMethod) returns (ChangeResponse);
14
+ rpc ChangeFluidInterfaceConductanceMethod(ChangeSpecifyConductanceRequest) returns(ChangeResponse);
17
15
 
18
16
  rpc ChangeFluidInterfaceThermalMaterialAssignment(ChangeAssignmentRequest) returns (ChangeResponse);
19
17
  rpc ChangeFluidInterfaceThermalConductance(ChangeQuantityRequest) returns (ChangeResponse);
@@ -49,14 +47,4 @@ enum FluidInterfaceFaceGroupingMethod {
49
47
  NOGROUPING = 2;
50
48
  }
51
49
 
52
- message ChangeFluidInterfaceConductanceMethod{
53
- ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
54
- FluidInterfaceFaceThermalConductanceMethod thermal_conductivity_method = 2;
55
- }
56
50
 
57
- enum FluidInterfaceFaceThermalConductanceMethod {
58
- INSULATED = 0;
59
- THERMALCONDUCTANCE = 1;
60
- THICKNESSANDCONDUCTIVITY = 2;
61
- THICKNESSANDMATERIAL = 3;
62
- }
@@ -12,12 +12,10 @@ _sym_db = _symbol_database.Default()
12
12
 
13
13
 
14
14
  from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_dbumodels__pb2
15
- from ansys.api.discovery.v0.conditions import condition_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_conditions_dot_condition__pb2
16
- from ansys.api.discovery.v0.connections import contact_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_connections_dot_contact__pb2
17
15
  from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
18
16
 
19
17
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7ansys/api/discovery/v0/connections/fluidinterface.proto\x12\x31\x61nsys.api.discovery.v0.connections.fluidinterface\x1a ansys/api/dbu/v0/dbumodels.proto\x1a\x31\x61nsys/api/discovery/v0/conditions/condition.proto\x1a\x30\x61nsys/api/discovery/v0/connections/contact.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xbe\x01\n\x1f\x43hangeFluidInterfaceTypeRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12]\n\x0einterface_type\x18\x02 \x01(\x0e\x32\x45.ansys.api.discovery.v0.connections.fluidinterface.FluidInterfaceType\"\xe0\x01\n-ChangeFluidInterfaceFaceGroupingMethodRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12q\n\x14\x66\x61\x63\x65_grouping_method\x18\x02 \x01(\x0e\x32S.ansys.api.discovery.v0.connections.fluidinterface.FluidInterfaceFaceGroupingMethod\"\xea\x01\n%ChangeFluidInterfaceConductanceMethod\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\x82\x01\n\x1bthermal_conductivity_method\x18\x02 \x01(\x0e\x32].ansys.api.discovery.v0.connections.fluidinterface.FluidInterfaceFaceThermalConductanceMethod*1\n\x12\x46luidInterfaceType\x12\x0e\n\nCONDUCTING\x10\x00\x12\x0b\n\x07\x45XCLUDE\x10\x01*Z\n FluidInterfaceFaceGroupingMethod\x12\x0f\n\x0bGROUPBYBODY\x10\x00\x12\x15\n\x11GROUPTANGENTFACES\x10\x01\x12\x0e\n\nNOGROUPING\x10\x02*\x8b\x01\n*FluidInterfaceFaceThermalConductanceMethod\x12\r\n\tINSULATED\x10\x00\x12\x16\n\x12THERMALCONDUCTANCE\x10\x01\x12\x1c\n\x18THICKNESSANDCONDUCTIVITY\x10\x02\x12\x18\n\x14THICKNESSANDMATERIAL\x10\x03\x32\xaf\x0c\n\x0e\x46luidInterface\x12\x96\x01\n\x18\x43hangeFluidInterfaceType\x12R.ansys.api.discovery.v0.connections.fluidinterface.ChangeFluidInterfaceTypeRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb2\x01\n&ChangeFluidInterfaceFaceGroupingMethod\x12`.ansys.api.discovery.v0.connections.fluidinterface.ChangeFluidInterfaceFaceGroupingMethodRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb0\x01\n,ChangeFluidInterfaceSpecifyConductanceMethod\x12X.ansys.api.discovery.v0.connections.fluidinterface.ChangeFluidInterfaceConductanceMethod\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x88\x01\n-ChangeFluidInterfaceThermalMaterialAssignment\x12/.ansys.api.discovery.v0.ChangeAssignmentRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x7f\n&ChangeFluidInterfaceThermalConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x80\x01\n\'ChangeFluidInterfaceThermalConductivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeFluidInterfaceThermalThickness\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x82\x01\n)ChangeFluidInterfaceDetectionDistanceHigh\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n(ChangeFluidInterfaceFaceOverlapAllowance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x86\x01\n.ChangeFSInterfaceInternalRadiationInputEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n#ChangeFSInterfaceInternalEmissivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Connectionsb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7ansys/api/discovery/v0/connections/fluidinterface.proto\x12\x31\x61nsys.api.discovery.v0.connections.fluidinterface\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xbe\x01\n\x1f\x43hangeFluidInterfaceTypeRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12]\n\x0einterface_type\x18\x02 \x01(\x0e\x32\x45.ansys.api.discovery.v0.connections.fluidinterface.FluidInterfaceType\"\xe0\x01\n-ChangeFluidInterfaceFaceGroupingMethodRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12q\n\x14\x66\x61\x63\x65_grouping_method\x18\x02 \x01(\x0e\x32S.ansys.api.discovery.v0.connections.fluidinterface.FluidInterfaceFaceGroupingMethod*1\n\x12\x46luidInterfaceType\x12\x0e\n\nCONDUCTING\x10\x00\x12\x0b\n\x07\x45XCLUDE\x10\x01*Z\n FluidInterfaceFaceGroupingMethod\x12\x0f\n\x0bGROUPBYBODY\x10\x00\x12\x15\n\x11GROUPTANGENTFACES\x10\x01\x12\x0e\n\nNOGROUPING\x10\x02\x32\x87\x0c\n\x0e\x46luidInterface\x12\x96\x01\n\x18\x43hangeFluidInterfaceType\x12R.ansys.api.discovery.v0.connections.fluidinterface.ChangeFluidInterfaceTypeRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb2\x01\n&ChangeFluidInterfaceFaceGroupingMethod\x12`.ansys.api.discovery.v0.connections.fluidinterface.ChangeFluidInterfaceFaceGroupingMethodRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x88\x01\n%ChangeFluidInterfaceConductanceMethod\x12\x37.ansys.api.discovery.v0.ChangeSpecifyConductanceRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x88\x01\n-ChangeFluidInterfaceThermalMaterialAssignment\x12/.ansys.api.discovery.v0.ChangeAssignmentRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x7f\n&ChangeFluidInterfaceThermalConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x80\x01\n\'ChangeFluidInterfaceThermalConductivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeFluidInterfaceThermalThickness\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x82\x01\n)ChangeFluidInterfaceDetectionDistanceHigh\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n(ChangeFluidInterfaceFaceOverlapAllowance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x86\x01\n.ChangeFSInterfaceInternalRadiationInputEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n#ChangeFSInterfaceInternalEmissivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Connectionsb\x06proto3')
21
19
 
22
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
23
21
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.connections.fluidinterface_pb2', globals())
@@ -25,18 +23,14 @@ if _descriptor._USE_C_DESCRIPTORS == False:
25
23
 
26
24
  DESCRIPTOR._options = None
27
25
  DESCRIPTOR._serialized_options = b'\252\002\"Ansys.Api.Discovery.V0.Connections'
28
- _FLUIDINTERFACETYPE._serialized_start=948
29
- _FLUIDINTERFACETYPE._serialized_end=997
30
- _FLUIDINTERFACEFACEGROUPINGMETHOD._serialized_start=999
31
- _FLUIDINTERFACEFACEGROUPINGMETHOD._serialized_end=1089
32
- _FLUIDINTERFACEFACETHERMALCONDUCTANCEMETHOD._serialized_start=1092
33
- _FLUIDINTERFACEFACETHERMALCONDUCTANCEMETHOD._serialized_end=1231
34
- _CHANGEFLUIDINTERFACETYPEREQUEST._serialized_start=292
35
- _CHANGEFLUIDINTERFACETYPEREQUEST._serialized_end=482
36
- _CHANGEFLUIDINTERFACEFACEGROUPINGMETHODREQUEST._serialized_start=485
37
- _CHANGEFLUIDINTERFACEFACEGROUPINGMETHODREQUEST._serialized_end=709
38
- _CHANGEFLUIDINTERFACECONDUCTANCEMETHOD._serialized_start=712
39
- _CHANGEFLUIDINTERFACECONDUCTANCEMETHOD._serialized_end=946
40
- _FLUIDINTERFACE._serialized_start=1234
41
- _FLUIDINTERFACE._serialized_end=2817
26
+ _FLUIDINTERFACETYPE._serialized_start=610
27
+ _FLUIDINTERFACETYPE._serialized_end=659
28
+ _FLUIDINTERFACEFACEGROUPINGMETHOD._serialized_start=661
29
+ _FLUIDINTERFACEFACEGROUPINGMETHOD._serialized_end=751
30
+ _CHANGEFLUIDINTERFACETYPEREQUEST._serialized_start=191
31
+ _CHANGEFLUIDINTERFACETYPEREQUEST._serialized_end=381
32
+ _CHANGEFLUIDINTERFACEFACEGROUPINGMETHODREQUEST._serialized_start=384
33
+ _CHANGEFLUIDINTERFACEFACEGROUPINGMETHODREQUEST._serialized_end=608
34
+ _FLUIDINTERFACE._serialized_start=754
35
+ _FLUIDINTERFACE._serialized_end=2297
42
36
  # @@protoc_insertion_point(module_scope)
@@ -45,25 +45,6 @@ NOGROUPING: FluidInterfaceFaceGroupingMethod.ValueType = ... # 2
45
45
  global___FluidInterfaceFaceGroupingMethod = FluidInterfaceFaceGroupingMethod
46
46
 
47
47
 
48
- class _FluidInterfaceFaceThermalConductanceMethod:
49
- ValueType = typing.NewType('ValueType', builtins.int)
50
- V: typing_extensions.TypeAlias = ValueType
51
- class _FluidInterfaceFaceThermalConductanceMethodEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_FluidInterfaceFaceThermalConductanceMethod.ValueType], builtins.type):
52
- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
53
- INSULATED: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 0
54
- THERMALCONDUCTANCE: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 1
55
- THICKNESSANDCONDUCTIVITY: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 2
56
- THICKNESSANDMATERIAL: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 3
57
- class FluidInterfaceFaceThermalConductanceMethod(_FluidInterfaceFaceThermalConductanceMethod, metaclass=_FluidInterfaceFaceThermalConductanceMethodEnumTypeWrapper):
58
- pass
59
-
60
- INSULATED: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 0
61
- THERMALCONDUCTANCE: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 1
62
- THICKNESSANDCONDUCTIVITY: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 2
63
- THICKNESSANDMATERIAL: FluidInterfaceFaceThermalConductanceMethod.ValueType = ... # 3
64
- global___FluidInterfaceFaceThermalConductanceMethod = FluidInterfaceFaceThermalConductanceMethod
65
-
66
-
67
48
  class ChangeFluidInterfaceTypeRequest(google.protobuf.message.Message):
68
49
  DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
69
50
  OBJECT_ID_FIELD_NUMBER: builtins.int
@@ -95,19 +76,3 @@ class ChangeFluidInterfaceFaceGroupingMethodRequest(google.protobuf.message.Mess
95
76
  def HasField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> builtins.bool: ...
96
77
  def ClearField(self, field_name: typing_extensions.Literal["face_grouping_method",b"face_grouping_method","object_id",b"object_id"]) -> None: ...
97
78
  global___ChangeFluidInterfaceFaceGroupingMethodRequest = ChangeFluidInterfaceFaceGroupingMethodRequest
98
-
99
- class ChangeFluidInterfaceConductanceMethod(google.protobuf.message.Message):
100
- DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
101
- OBJECT_ID_FIELD_NUMBER: builtins.int
102
- THERMAL_CONDUCTIVITY_METHOD_FIELD_NUMBER: builtins.int
103
- @property
104
- def object_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
105
- thermal_conductivity_method: global___FluidInterfaceFaceThermalConductanceMethod.ValueType = ...
106
- def __init__(self,
107
- *,
108
- object_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
109
- thermal_conductivity_method : global___FluidInterfaceFaceThermalConductanceMethod.ValueType = ...,
110
- ) -> None: ...
111
- def HasField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> builtins.bool: ...
112
- def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id","thermal_conductivity_method",b"thermal_conductivity_method"]) -> None: ...
113
- global___ChangeFluidInterfaceConductanceMethod = ChangeFluidInterfaceConductanceMethod
@@ -25,9 +25,9 @@ class FluidInterfaceStub(object):
25
25
  request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_connections_dot_fluidinterface__pb2.ChangeFluidInterfaceFaceGroupingMethodRequest.SerializeToString,
26
26
  response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
27
27
  )
28
- self.ChangeFluidInterfaceSpecifyConductanceMethod = channel.unary_unary(
29
- '/ansys.api.discovery.v0.connections.fluidinterface.FluidInterface/ChangeFluidInterfaceSpecifyConductanceMethod',
30
- request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_connections_dot_fluidinterface__pb2.ChangeFluidInterfaceConductanceMethod.SerializeToString,
28
+ self.ChangeFluidInterfaceConductanceMethod = channel.unary_unary(
29
+ '/ansys.api.discovery.v0.connections.fluidinterface.FluidInterface/ChangeFluidInterfaceConductanceMethod',
30
+ request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeSpecifyConductanceRequest.SerializeToString,
31
31
  response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
32
32
  )
33
33
  self.ChangeFluidInterfaceThermalMaterialAssignment = channel.unary_unary(
@@ -87,7 +87,7 @@ class FluidInterfaceServicer(object):
87
87
  context.set_details('Method not implemented!')
88
88
  raise NotImplementedError('Method not implemented!')
89
89
 
90
- def ChangeFluidInterfaceSpecifyConductanceMethod(self, request, context):
90
+ def ChangeFluidInterfaceConductanceMethod(self, request, context):
91
91
  """Missing associated documentation comment in .proto file."""
92
92
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
93
93
  context.set_details('Method not implemented!')
@@ -154,9 +154,9 @@ def add_FluidInterfaceServicer_to_server(servicer, server):
154
154
  request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_connections_dot_fluidinterface__pb2.ChangeFluidInterfaceFaceGroupingMethodRequest.FromString,
155
155
  response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
156
156
  ),
157
- 'ChangeFluidInterfaceSpecifyConductanceMethod': grpc.unary_unary_rpc_method_handler(
158
- servicer.ChangeFluidInterfaceSpecifyConductanceMethod,
159
- request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_connections_dot_fluidinterface__pb2.ChangeFluidInterfaceConductanceMethod.FromString,
157
+ 'ChangeFluidInterfaceConductanceMethod': grpc.unary_unary_rpc_method_handler(
158
+ servicer.ChangeFluidInterfaceConductanceMethod,
159
+ request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeSpecifyConductanceRequest.FromString,
160
160
  response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
161
161
  ),
162
162
  'ChangeFluidInterfaceThermalMaterialAssignment': grpc.unary_unary_rpc_method_handler(
@@ -244,7 +244,7 @@ class FluidInterface(object):
244
244
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
245
245
 
246
246
  @staticmethod
247
- def ChangeFluidInterfaceSpecifyConductanceMethod(request,
247
+ def ChangeFluidInterfaceConductanceMethod(request,
248
248
  target,
249
249
  options=(),
250
250
  channel_credentials=None,
@@ -254,8 +254,8 @@ class FluidInterface(object):
254
254
  wait_for_ready=None,
255
255
  timeout=None,
256
256
  metadata=None):
257
- return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.connections.fluidinterface.FluidInterface/ChangeFluidInterfaceSpecifyConductanceMethod',
258
- ansys_dot_api_dot_discovery_dot_v0_dot_connections_dot_fluidinterface__pb2.ChangeFluidInterfaceConductanceMethod.SerializeToString,
257
+ return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.connections.fluidinterface.FluidInterface/ChangeFluidInterfaceConductanceMethod',
258
+ ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeSpecifyConductanceRequest.SerializeToString,
259
259
  ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
260
260
  options, channel_credentials,
261
261
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -17,8 +17,8 @@ class FluidInterfaceStub:
17
17
  ansys.api.discovery.v0.connections.fluidinterface_pb2.ChangeFluidInterfaceFaceGroupingMethodRequest,
18
18
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
19
19
 
20
- ChangeFluidInterfaceSpecifyConductanceMethod: grpc.UnaryUnaryMultiCallable[
21
- ansys.api.discovery.v0.connections.fluidinterface_pb2.ChangeFluidInterfaceConductanceMethod,
20
+ ChangeFluidInterfaceConductanceMethod: grpc.UnaryUnaryMultiCallable[
21
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeSpecifyConductanceRequest,
22
22
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
23
23
 
24
24
  ChangeFluidInterfaceThermalMaterialAssignment: grpc.UnaryUnaryMultiCallable[
@@ -68,8 +68,8 @@ class FluidInterfaceServicer(metaclass=abc.ABCMeta):
68
68
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
69
69
 
70
70
  @abc.abstractmethod
71
- def ChangeFluidInterfaceSpecifyConductanceMethod(self,
72
- request: ansys.api.discovery.v0.connections.fluidinterface_pb2.ChangeFluidInterfaceConductanceMethod,
71
+ def ChangeFluidInterfaceConductanceMethod(self,
72
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeSpecifyConductanceRequest,
73
73
  context: grpc.ServicerContext,
74
74
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
75
75
 
@@ -125,7 +125,7 @@ message ChangeDoubleRequest{
125
125
  }
126
126
 
127
127
  message ChangeAssignmentRequest{
128
- ansys.api.dbu.v0.PhysicsEntityIdentifier assigner_object_id = 1;
128
+ ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
129
129
  ansys.api.dbu.v0.PhysicsEntityIdentifier referenced_object_id = 2;
130
130
  }
131
131
 
@@ -248,6 +248,46 @@ message QuantityPair{
248
248
  Quantity dependant_data = 2;
249
249
  }
250
250
 
251
+ enum ContactType {
252
+ BONDED_CONTACT = 0;
253
+ SLIDING_CONTACT = 1;
254
+ PREVENTED_CONTACT = 2;
255
+ }
256
+
257
+ message ContactPairs {
258
+ repeated ContactPair contact_pair = 1;
259
+ }
260
+
261
+ message ContactPair {
262
+ repeated string item1 = 1;
263
+ repeated string item2 = 2;
264
+ }
265
+
266
+ message ContactProperties {
267
+ ContactType contact_type = 1;
268
+ ContactPairs contact_pairs = 2;
269
+
270
+ double friction_coefficient = 3;
271
+ double stiffness_factor = 4;
272
+ double detection_radius_factor = 5;
273
+ Quantity offset = 6;
274
+ Quantity shear_strenght = 7;
275
+ Quantity tensile_strength = 8;
276
+ bool are_strength_limits_set = 9;
277
+ bool adjust_gap_or_overlap = 10;
278
+ bool make_just_touching = 11;
279
+ bool idealize = 12;
280
+ bool specify_thermal_conductance = 13;
281
+ bool specify_electric_conductance = 14;
282
+ Quantity thermal_contact_conductance = 15;
283
+ Quantity thermal_contact_conductivity = 16;
284
+ Quantity thermal_conductance_thickness = 17;
285
+ Quantity electrical_contact_conductance = 18;
286
+ Quantity electrical_contact_conductivity = 19;
287
+ Quantity electrical_conductance_thickness = 20;
288
+ ConductanceOptionType thermal_conductance_option = 21;
289
+ ConductanceOptionType electric_conductance_option = 22;
290
+ }
251
291
 
252
292
  // Represents the quantity type for a physics parameter.
253
293
  enum QuantityType {
@@ -333,4 +373,23 @@ enum QuantityType {
333
373
  QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA=79;
334
374
  QUANTITY_TYPE_NONE=80;
335
375
  QUANTITY_TYPE_UNKNOWN = 81;
376
+ }
377
+
378
+ enum ConductanceOptionType {
379
+ CONDUCTANCEOPTIONTYPE_PERFECT_CONDUCTOR = 0;
380
+ CONDUCTANCEOPTIONTYPE_PERFECT_INSULATOR = 1;
381
+ CONDUCTANCEOPTIONTYPE_VALUE = 2;
382
+ CONDUCTANCEOPTIONTYPE_THICKNESS_AND_MATERIAL = 3;
383
+ CONDUCTANCEOPTIONTYPE_THICKNESS_AND_CONDUCTIVITY = 4;
384
+ }
385
+
386
+ message ChangeSpecifyConductanceRequest{
387
+ ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
388
+ ConductanceOptionType conductance_type = 2;
389
+ }
390
+
391
+ message Tessellation {
392
+ repeated double vertices = 1;
393
+ repeated int32 faces = 2;
394
+ int32 facecolor = 3;
336
395
  }