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
@@ -9,13 +9,17 @@ import grpc
9
9
 
10
10
  class PorousStub:
11
11
  def __init__(self, channel: grpc.Channel) -> None: ...
12
- CreatePorousCartesian: grpc.UnaryUnaryMultiCallable[
13
- ansys.api.discovery.v0.conditions.porous_pb2.PorousCartesianCreationRequest,
12
+ CreatePorousIsotropic: grpc.UnaryUnaryMultiCallable[
13
+ ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationRequest,
14
14
  ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationResponse] = ...
15
15
  """wall creation methods"""
16
16
 
17
- CreatePorousConical: grpc.UnaryUnaryMultiCallable[
18
- ansys.api.discovery.v0.conditions.porous_pb2.PorousConicalCreationRequest,
17
+ CreatePorousBidirectional: grpc.UnaryUnaryMultiCallable[
18
+ ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationRequest,
19
+ ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationResponse] = ...
20
+
21
+ CreatePorousOrthotropic: grpc.UnaryUnaryMultiCallable[
22
+ ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationRequest,
19
23
  ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationResponse] = ...
20
24
 
21
25
  ChangePorousSpecification: grpc.UnaryUnaryMultiCallable[
@@ -27,8 +31,8 @@ class PorousStub:
27
31
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
28
32
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
29
33
 
30
- ChangePorousStreamwiseFlowFace: grpc.UnaryUnaryMultiCallable[
31
- ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
34
+ ChangePorousStreamwiseFlowDirectionReference: grpc.UnaryUnaryMultiCallable[
35
+ ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationExtendedRequest,
32
36
  ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
33
37
 
34
38
  ChangePorousViscousStreamwiseMagnitude: grpc.UnaryUnaryMultiCallable[
@@ -82,16 +86,22 @@ class PorousStub:
82
86
 
83
87
  class PorousServicer(metaclass=abc.ABCMeta):
84
88
  @abc.abstractmethod
85
- def CreatePorousCartesian(self,
86
- request: ansys.api.discovery.v0.conditions.porous_pb2.PorousCartesianCreationRequest,
89
+ def CreatePorousIsotropic(self,
90
+ request: ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationRequest,
87
91
  context: grpc.ServicerContext,
88
92
  ) -> ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationResponse:
89
93
  """wall creation methods"""
90
94
  pass
91
95
 
92
96
  @abc.abstractmethod
93
- def CreatePorousConical(self,
94
- request: ansys.api.discovery.v0.conditions.porous_pb2.PorousConicalCreationRequest,
97
+ def CreatePorousBidirectional(self,
98
+ request: ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationRequest,
99
+ context: grpc.ServicerContext,
100
+ ) -> ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationResponse: ...
101
+
102
+ @abc.abstractmethod
103
+ def CreatePorousOrthotropic(self,
104
+ request: ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationRequest,
95
105
  context: grpc.ServicerContext,
96
106
  ) -> ansys.api.discovery.v0.conditions.porous_pb2.PorousCreationResponse: ...
97
107
 
@@ -110,8 +120,8 @@ class PorousServicer(metaclass=abc.ABCMeta):
110
120
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
111
121
 
112
122
  @abc.abstractmethod
113
- def ChangePorousStreamwiseFlowFace(self,
114
- request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
123
+ def ChangePorousStreamwiseFlowDirectionReference(self,
124
+ request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationExtendedRequest,
115
125
  context: grpc.ServicerContext,
116
126
  ) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
117
127
 
@@ -41,7 +41,7 @@ message RotatingFluidZoneCreationResponse{
41
41
 
42
42
  message RotatingFluidZoneProperties
43
43
  {
44
- Quantity translational_velocity = 1;
44
+ Quantity rotational_velocity = 1;
45
45
  }
46
46
 
47
47
 
@@ -15,7 +15,7 @@ from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_d
15
15
  from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
16
16
 
17
17
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9ansys/api/discovery/v0/conditions/rotatingfluidzone.proto\x12\x33\x61nsys.api.discovery.v0.conditions.rotatingfluidzone\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xdf\x01\n RotatingFluidZoneCreationRequest\x12\x41\n\rcreation_data\x18\x02 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12x\n\x1erotating_fluid_zone_properties\x18\x04 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneProperties\"\xd3\x01\n!RotatingFluidZoneCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12h\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneDefinition\"_\n\x1bRotatingFluidZoneProperties\x12@\n\x16translational_velocity\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc2\x02\n\x1bRotatingFluidZoneDefinition\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12<\n\tparent_id\x18\x02 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12x\n\x1erotating_fluid_zone_properties\x18\x06 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneProperties2\xd8\x03\n\x11RotatingFluidZone\x12\xc8\x01\n\x17\x43reateRotatingFluidZone\x12U.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneCreationRequest\x1aV.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneCreationResponse\x12x\n\x1f\x43hangeRotatingFluidZoneLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeWallRotationalVelocityMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB$\xaa\x02!Ansys.Api.Discovery.V0.Conditionsb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9ansys/api/discovery/v0/conditions/rotatingfluidzone.proto\x12\x33\x61nsys.api.discovery.v0.conditions.rotatingfluidzone\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xdf\x01\n RotatingFluidZoneCreationRequest\x12\x41\n\rcreation_data\x18\x02 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12x\n\x1erotating_fluid_zone_properties\x18\x04 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneProperties\"\xd3\x01\n!RotatingFluidZoneCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12h\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneDefinition\"\\\n\x1bRotatingFluidZoneProperties\x12=\n\x13rotational_velocity\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc2\x02\n\x1bRotatingFluidZoneDefinition\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12<\n\tparent_id\x18\x02 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12x\n\x1erotating_fluid_zone_properties\x18\x06 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneProperties2\xd8\x03\n\x11RotatingFluidZone\x12\xc8\x01\n\x17\x43reateRotatingFluidZone\x12U.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneCreationRequest\x1aV.ansys.api.discovery.v0.conditions.rotatingfluidzone.RotatingFluidZoneCreationResponse\x12x\n\x1f\x43hangeRotatingFluidZoneLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeWallRotationalVelocityMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB$\xaa\x02!Ansys.Api.Discovery.V0.Conditionsb\x06proto3')
19
19
 
20
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
21
21
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.conditions.rotatingfluidzone_pb2', globals())
@@ -28,9 +28,9 @@ if _descriptor._USE_C_DESCRIPTORS == False:
28
28
  _ROTATINGFLUIDZONECREATIONRESPONSE._serialized_start=421
29
29
  _ROTATINGFLUIDZONECREATIONRESPONSE._serialized_end=632
30
30
  _ROTATINGFLUIDZONEPROPERTIES._serialized_start=634
31
- _ROTATINGFLUIDZONEPROPERTIES._serialized_end=729
32
- _ROTATINGFLUIDZONEDEFINITION._serialized_start=732
33
- _ROTATINGFLUIDZONEDEFINITION._serialized_end=1054
34
- _ROTATINGFLUIDZONE._serialized_start=1057
35
- _ROTATINGFLUIDZONE._serialized_end=1529
31
+ _ROTATINGFLUIDZONEPROPERTIES._serialized_end=726
32
+ _ROTATINGFLUIDZONEDEFINITION._serialized_start=729
33
+ _ROTATINGFLUIDZONEDEFINITION._serialized_end=1051
34
+ _ROTATINGFLUIDZONE._serialized_start=1054
35
+ _ROTATINGFLUIDZONE._serialized_end=1526
36
36
  # @@protoc_insertion_point(module_scope)
@@ -56,15 +56,15 @@ class RotatingFluidZoneProperties(google.protobuf.message.Message):
56
56
 
57
57
  """
58
58
  DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
59
- TRANSLATIONAL_VELOCITY_FIELD_NUMBER: builtins.int
59
+ ROTATIONAL_VELOCITY_FIELD_NUMBER: builtins.int
60
60
  @property
61
- def translational_velocity(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
61
+ def rotational_velocity(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
62
62
  def __init__(self,
63
63
  *,
64
- translational_velocity : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
64
+ rotational_velocity : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
65
65
  ) -> None: ...
66
- def HasField(self, field_name: typing_extensions.Literal["translational_velocity",b"translational_velocity"]) -> builtins.bool: ...
67
- def ClearField(self, field_name: typing_extensions.Literal["translational_velocity",b"translational_velocity"]) -> None: ...
66
+ def HasField(self, field_name: typing_extensions.Literal["rotational_velocity",b"rotational_velocity"]) -> builtins.bool: ...
67
+ def ClearField(self, field_name: typing_extensions.Literal["rotational_velocity",b"rotational_velocity"]) -> None: ...
68
68
  global___RotatingFluidZoneProperties = RotatingFluidZoneProperties
69
69
 
70
70
  class RotatingFluidZoneDefinition(google.protobuf.message.Message):
@@ -17,26 +17,26 @@ service Contact
17
17
 
18
18
  rpc ChangeContactType(ChangeContactTypeRequest) returns (ChangeResponse);
19
19
  rpc ChangeContactPairs(ChangeContactPairRequest) returns (ChangeResponse);
20
- rpc Split(ChangeEmptyRequest) returns (ChangeResponse);
21
-
22
- rpc ChangeFrictionCoefficient(ChangeDoubleRequest) returns (ChangeResponse);
23
- rpc ChangeStiffnessFactor(ChangeDoubleRequest) returns (ChangeResponse);
24
- rpc ChangeDetectionRadiusFactor(ChangeDoubleRequest) returns (ChangeResponse);
25
- rpc ChangeOffset(ChangeQuantityRequest) returns (ChangeResponse);
26
- rpc ChangeShearStrength(ChangeQuantityRequest) returns (ChangeResponse);
27
- rpc ChangeTensileStrength(ChangeQuantityRequest) returns (ChangeResponse);
28
- rpc ChangeAreStrengthLimitsSet(ChangeBooleanRequest) returns (ChangeResponse);
29
- rpc ChangeAdjustGapOrOverlap(ChangeBooleanRequest) returns (ChangeResponse);
30
- rpc ChangeMakeJustTouching(ChangeBooleanRequest) returns (ChangeResponse);
31
- rpc ChangeIdealize(ChangeBooleanRequest) returns (ChangeResponse);
32
- rpc ChangeSpecifyThermalConductance(ChangeBooleanRequest) returns (ChangeResponse);
33
- rpc ChangeSpecifyThermalConductanceFromThicknessAndMaterial(ChangeBooleanRequest) returns (ChangeResponse);
34
- rpc ChangeSpecifyElectricConductance(ChangeBooleanRequest) returns (ChangeResponse);
35
- rpc ChangeSpecifyElectricConductanceFromThicknessAndMaterial(ChangeBooleanRequest) returns (ChangeResponse);
36
- rpc ChangeThermalContactConductance(ChangeQuantityRequest) returns (ChangeResponse);
37
- rpc ChangeThermalConductanceThickness(ChangeQuantityRequest) returns (ChangeResponse);
38
- rpc ChangeElectricContactConductance(ChangeQuantityRequest) returns (ChangeResponse);
39
- rpc ChangeElectricConductanceThickness(ChangeQuantityRequest) returns (ChangeResponse);
20
+ rpc SplitContact(ChangeEmptyRequest) returns (ChangeResponse);
21
+
22
+ rpc ChangeContactFrictionCoefficient(ChangeDoubleRequest) returns (ChangeResponse);
23
+ rpc ChangeContactStiffnessFactor(ChangeDoubleRequest) returns (ChangeResponse);
24
+ rpc ChangeContactDetectionRadiusFactor(ChangeDoubleRequest) returns (ChangeResponse);
25
+ rpc ChangeContactOffset(ChangeQuantityRequest) returns (ChangeResponse);
26
+ rpc ChangeContactShearStrength(ChangeQuantityRequest) returns (ChangeResponse);
27
+ rpc ChangeContactTensileStrength(ChangeQuantityRequest) returns (ChangeResponse);
28
+ rpc ChangeContactAreStrengthLimitsSet(ChangeBooleanRequest) returns (ChangeResponse);
29
+ rpc ChangeContactAdjustGapOrOverlap(ChangeBooleanRequest) returns (ChangeResponse);
30
+ rpc ChangeContactMakeJustTouching(ChangeBooleanRequest) returns (ChangeResponse);
31
+ rpc ChangeContactIdealize(ChangeBooleanRequest) returns (ChangeResponse);
32
+ rpc ChangeContactSpecifyThermalConductance(ChangeSpecifyConductanceRequest) returns (ChangeResponse);
33
+ rpc ChangeContactSpecifyElectricConductance(ChangeSpecifyConductanceRequest) returns (ChangeResponse);
34
+ rpc ChangeContactConductanceThickness(ChangeQuantityRequest) returns (ChangeResponse);
35
+ rpc ChangeContactConductanceMaterial(ChangeAssignmentRequest) returns (ChangeResponse);
36
+ rpc ChangeContactThermalContactConductivity(ChangeQuantityRequest) returns (ChangeResponse);
37
+ rpc ChangeContactElectricContactConductivity(ChangeQuantityRequest) returns (ChangeResponse);
38
+ rpc ChangeContactThermalContactConductance(ChangeQuantityRequest) returns (ChangeResponse);
39
+ rpc ChangeContactElectricContactConductance(ChangeQuantityRequest) returns (ChangeResponse);
40
40
  }
41
41
 
42
42
  message ContactCreationRequest{
@@ -61,43 +61,7 @@ message ChangeContactPairRequest{
61
61
 
62
62
  // Contact condition definitions
63
63
 
64
- enum ContactType {
65
- BONDED_CONTACT = 0;
66
- SLIDING_CONTACT = 1;
67
- PREVENTED_CONTACT = 2;
68
- }
69
-
70
- message ContactPairs {
71
- repeated ContactPair contact_pair = 1;
72
- }
73
-
74
- message ContactPair {
75
- repeated string item1 = 1;
76
- repeated string item2 = 2;
77
- }
78
64
 
79
- message ContactProperties {
80
- ContactType contact_type = 1;
81
- ContactPairs contact_pairs = 2;
82
- double friction_coefficient = 3;
83
- double stiffness_factor = 4;
84
- double detection_radius_factor = 5;
85
- Quantity offset = 6;
86
- Quantity shear_strenght = 7;
87
- Quantity tensile_strength = 8;
88
- bool are_strength_limits_set = 9;
89
- bool adjust_gap_or_overlap = 10;
90
- bool make_just_touching = 11;
91
- bool idealize = 12;
92
- bool specify_thermal_conductance = 13;
93
- bool specify_thermal_conductance_from_thickness_and_material = 14;
94
- bool specify_electric_conductance = 15;
95
- bool specify_electric_conductance_from_thickness_and_material = 16;
96
- Quantity thermal_contact_conductance = 17;
97
- Quantity thermal_conductance_thickness = 18;
98
- Quantity electrical_contact_conductance = 19;
99
- Quantity electrical_conductance_thickness = 20;
100
- }
101
65
 
102
66
  message ContactDefinition {
103
67
  ansys.api.dbu.v0.PhysicsEntityIdentifier id = 1;
@@ -15,7 +15,7 @@ from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_d
15
15
  from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
16
16
 
17
17
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0ansys/api/discovery/v0/connections/contact.proto\x12*ansys.api.discovery.v0.connections.contact\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xc1\x01\n\x16\x43ontactCreationRequest\x12L\n\rcreation_data\x18\x01 \x01(\x0b\x32\x35.ansys.api.discovery.v0.DoubleSidedScopedCreationData\x12Y\n\x12\x63ontact_properties\x18\x02 \x01(\x0b\x32=.ansys.api.discovery.v0.connections.contact.ContactProperties\"\xb6\x01\n\x17\x43ontactCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12U\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32=.ansys.api.discovery.v0.connections.contact.ContactDefinition\"\xa7\x01\n\x18\x43hangeContactTypeRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12M\n\x0c\x63ontact_type\x18\x02 \x01(\x0e\x32\x37.ansys.api.discovery.v0.connections.contact.ContactType\"\xa9\x01\n\x18\x43hangeContactPairRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12O\n\rcontact_pairs\x18\x02 \x01(\x0b\x32\x38.ansys.api.discovery.v0.connections.contact.ContactPairs\"]\n\x0c\x43ontactPairs\x12M\n\x0c\x63ontact_pair\x18\x01 \x03(\x0b\x32\x37.ansys.api.discovery.v0.connections.contact.ContactPair\"+\n\x0b\x43ontactPair\x12\r\n\x05item1\x18\x01 \x03(\t\x12\r\n\x05item2\x18\x02 \x03(\t\"\x96\x08\n\x11\x43ontactProperties\x12M\n\x0c\x63ontact_type\x18\x01 \x01(\x0e\x32\x37.ansys.api.discovery.v0.connections.contact.ContactType\x12O\n\rcontact_pairs\x18\x02 \x01(\x0b\x32\x38.ansys.api.discovery.v0.connections.contact.ContactPairs\x12\x1c\n\x14\x66riction_coefficient\x18\x03 \x01(\x01\x12\x18\n\x10stiffness_factor\x18\x04 \x01(\x01\x12\x1f\n\x17\x64\x65tection_radius_factor\x18\x05 \x01(\x01\x12\x30\n\x06offset\x18\x06 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x38\n\x0eshear_strenght\x18\x07 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12:\n\x10tensile_strength\x18\x08 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x1f\n\x17\x61re_strength_limits_set\x18\t \x01(\x08\x12\x1d\n\x15\x61\x64just_gap_or_overlap\x18\n \x01(\x08\x12\x1a\n\x12make_just_touching\x18\x0b \x01(\x08\x12\x10\n\x08idealize\x18\x0c \x01(\x08\x12#\n\x1bspecify_thermal_conductance\x18\r \x01(\x08\x12?\n7specify_thermal_conductance_from_thickness_and_material\x18\x0e \x01(\x08\x12$\n\x1cspecify_electric_conductance\x18\x0f \x01(\x08\x12@\n8specify_electric_conductance_from_thickness_and_material\x18\x10 \x01(\x08\x12\x45\n\x1bthermal_contact_conductance\x18\x11 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12G\n\x1dthermal_conductance_thickness\x18\x12 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12H\n\x1e\x65lectrical_contact_conductance\x18\x13 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12J\n electrical_conductance_thickness\x18\x14 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xad\x02\n\x11\x43ontactDefinition\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12<\n\tparent_id\x18\x02 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\r\n\x05label\x18\x03 \x01(\t\x12\x17\n\x0fside1_locations\x18\x04 \x03(\t\x12\x17\n\x0fside2_locations\x18\x05 \x03(\t\x12\x12\n\nsuppressed\x18\x06 \x01(\x08\x12N\n\x07\x63ontact\x18\x07 \x01(\x0b\x32=.ansys.api.discovery.v0.connections.contact.ContactProperties*M\n\x0b\x43ontactType\x12\x12\n\x0e\x42ONDED_CONTACT\x10\x00\x12\x13\n\x0fSLIDING_CONTACT\x10\x01\x12\x15\n\x11PREVENTED_CONTACT\x10\x02\x32\xd1\x16\n\x07\x43ontact\x12\x98\x01\n\rCreateContact\x12\x42.ansys.api.discovery.v0.connections.contact.ContactCreationRequest\x1a\x43.ansys.api.discovery.v0.connections.contact.ContactCreationResponse\x12s\n\x1a\x43hangeContactSide1Location\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeContactSide2Location\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n\x11\x43hangeContactType\x12\x44.ansys.api.discovery.v0.connections.contact.ChangeContactTypeRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x82\x01\n\x12\x43hangeContactPairs\x12\x44.ansys.api.discovery.v0.connections.contact.ChangeContactPairRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12[\n\x05Split\x12*.ansys.api.discovery.v0.ChangeEmptyRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12p\n\x19\x43hangeFrictionCoefficient\x12+.ansys.api.discovery.v0.ChangeDoubleRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x15\x43hangeStiffnessFactor\x12+.ansys.api.discovery.v0.ChangeDoubleRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x1b\x43hangeDetectionRadiusFactor\x12+.ansys.api.discovery.v0.ChangeDoubleRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x65\n\x0c\x43hangeOffset\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeShearStrength\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12n\n\x15\x43hangeTensileStrength\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x1a\x43hangeAreStrengthLimitsSet\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12p\n\x18\x43hangeAdjustGapOrOverlap\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12n\n\x16\x43hangeMakeJustTouching\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x66\n\x0e\x43hangeIdealize\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSpecifyThermalConductance\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x8f\x01\n7ChangeSpecifyThermalConductanceFromThicknessAndMaterial\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12x\n ChangeSpecifyElectricConductance\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x90\x01\n8ChangeSpecifyElectricConductanceFromThicknessAndMaterial\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12x\n\x1f\x43hangeThermalContactConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12z\n!ChangeThermalConductanceThickness\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12y\n ChangeElectricContactConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12{\n\"ChangeElectricConductanceThickness\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'\n0ansys/api/discovery/v0/connections/contact.proto\x12*ansys.api.discovery.v0.connections.contact\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xad\x01\n\x16\x43ontactCreationRequest\x12L\n\rcreation_data\x18\x01 \x01(\x0b\x32\x35.ansys.api.discovery.v0.DoubleSidedScopedCreationData\x12\x45\n\x12\x63ontact_properties\x18\x02 \x01(\x0b\x32).ansys.api.discovery.v0.ContactProperties\"\xb6\x01\n\x17\x43ontactCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12U\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32=.ansys.api.discovery.v0.connections.contact.ContactDefinition\"\x93\x01\n\x18\x43hangeContactTypeRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\x39\n\x0c\x63ontact_type\x18\x02 \x01(\x0e\x32#.ansys.api.discovery.v0.ContactType\"\x95\x01\n\x18\x43hangeContactPairRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12;\n\rcontact_pairs\x18\x02 \x01(\x0b\x32$.ansys.api.discovery.v0.ContactPairs\"\x99\x02\n\x11\x43ontactDefinition\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12<\n\tparent_id\x18\x02 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\r\n\x05label\x18\x03 \x01(\t\x12\x17\n\x0fside1_locations\x18\x04 \x03(\t\x12\x17\n\x0fside2_locations\x18\x05 \x03(\t\x12\x12\n\nsuppressed\x18\x06 \x01(\x08\x12:\n\x07\x63ontact\x18\x07 \x01(\x0b\x32).ansys.api.discovery.v0.ContactProperties2\xb5\x17\n\x07\x43ontact\x12\x98\x01\n\rCreateContact\x12\x42.ansys.api.discovery.v0.connections.contact.ContactCreationRequest\x1a\x43.ansys.api.discovery.v0.connections.contact.ContactCreationResponse\x12s\n\x1a\x43hangeContactSide1Location\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeContactSide2Location\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n\x11\x43hangeContactType\x12\x44.ansys.api.discovery.v0.connections.contact.ChangeContactTypeRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x82\x01\n\x12\x43hangeContactPairs\x12\x44.ansys.api.discovery.v0.connections.contact.ChangeContactPairRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x62\n\x0cSplitContact\x12*.ansys.api.discovery.v0.ChangeEmptyRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n ChangeContactFrictionCoefficient\x12+.ansys.api.discovery.v0.ChangeDoubleRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1c\x43hangeContactStiffnessFactor\x12+.ansys.api.discovery.v0.ChangeDoubleRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12y\n\"ChangeContactDetectionRadiusFactor\x12+.ansys.api.discovery.v0.ChangeDoubleRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeContactOffset\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeContactShearStrength\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeContactTensileStrength\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12y\n!ChangeContactAreStrengthLimitsSet\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeContactAdjustGapOrOverlap\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1d\x43hangeContactMakeJustTouching\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x15\x43hangeContactIdealize\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x89\x01\n&ChangeContactSpecifyThermalConductance\x12\x37.ansys.api.discovery.v0.ChangeSpecifyConductanceRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x8a\x01\n\'ChangeContactSpecifyElectricConductance\x12\x37.ansys.api.discovery.v0.ChangeSpecifyConductanceRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12z\n!ChangeContactConductanceThickness\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12{\n ChangeContactConductanceMaterial\x12/.ansys.api.discovery.v0.ChangeAssignmentRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x80\x01\n\'ChangeContactThermalContactConductivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n(ChangeContactElectricContactConductivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x7f\n&ChangeContactThermalContactConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x80\x01\n\'ChangeContactElectricContactConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Connectionsb\x06proto3')
19
19
 
20
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
21
21
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.connections.contact_pb2', globals())
@@ -23,24 +23,16 @@ if _descriptor._USE_C_DESCRIPTORS == False:
23
23
 
24
24
  DESCRIPTOR._options = None
25
25
  DESCRIPTOR._serialized_options = b'\252\002\"Ansys.Api.Discovery.V0.Connections'
26
- _CONTACTTYPE._serialized_start=2392
27
- _CONTACTTYPE._serialized_end=2469
28
26
  _CONTACTCREATIONREQUEST._serialized_start=177
29
- _CONTACTCREATIONREQUEST._serialized_end=370
30
- _CONTACTCREATIONRESPONSE._serialized_start=373
31
- _CONTACTCREATIONRESPONSE._serialized_end=555
32
- _CHANGECONTACTTYPEREQUEST._serialized_start=558
33
- _CHANGECONTACTTYPEREQUEST._serialized_end=725
34
- _CHANGECONTACTPAIRREQUEST._serialized_start=728
35
- _CHANGECONTACTPAIRREQUEST._serialized_end=897
36
- _CONTACTPAIRS._serialized_start=899
37
- _CONTACTPAIRS._serialized_end=992
38
- _CONTACTPAIR._serialized_start=994
39
- _CONTACTPAIR._serialized_end=1037
40
- _CONTACTPROPERTIES._serialized_start=1040
41
- _CONTACTPROPERTIES._serialized_end=2086
42
- _CONTACTDEFINITION._serialized_start=2089
43
- _CONTACTDEFINITION._serialized_end=2390
44
- _CONTACT._serialized_start=2472
45
- _CONTACT._serialized_end=5369
27
+ _CONTACTCREATIONREQUEST._serialized_end=350
28
+ _CONTACTCREATIONRESPONSE._serialized_start=353
29
+ _CONTACTCREATIONRESPONSE._serialized_end=535
30
+ _CHANGECONTACTTYPEREQUEST._serialized_start=538
31
+ _CHANGECONTACTTYPEREQUEST._serialized_end=685
32
+ _CHANGECONTACTPAIRREQUEST._serialized_start=688
33
+ _CHANGECONTACTPAIRREQUEST._serialized_end=837
34
+ _CONTACTDEFINITION._serialized_start=840
35
+ _CONTACTDEFINITION._serialized_end=1121
36
+ _CONTACT._serialized_start=1124
37
+ _CONTACT._serialized_end=4121
46
38
  # @@protoc_insertion_point(module_scope)
@@ -7,33 +7,12 @@ import ansys.api.discovery.v0.discoverymodels_pb2
7
7
  import builtins
8
8
  import google.protobuf.descriptor
9
9
  import google.protobuf.internal.containers
10
- import google.protobuf.internal.enum_type_wrapper
11
10
  import google.protobuf.message
12
11
  import typing
13
12
  import typing_extensions
14
13
 
15
14
  DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
16
15
 
17
- class _ContactType:
18
- ValueType = typing.NewType('ValueType', builtins.int)
19
- V: typing_extensions.TypeAlias = ValueType
20
- class _ContactTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ContactType.ValueType], builtins.type):
21
- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
22
- BONDED_CONTACT: ContactType.ValueType = ... # 0
23
- SLIDING_CONTACT: ContactType.ValueType = ... # 1
24
- PREVENTED_CONTACT: ContactType.ValueType = ... # 2
25
- class ContactType(_ContactType, metaclass=_ContactTypeEnumTypeWrapper):
26
- """Contact condition definitions
27
-
28
- """
29
- pass
30
-
31
- BONDED_CONTACT: ContactType.ValueType = ... # 0
32
- SLIDING_CONTACT: ContactType.ValueType = ... # 1
33
- PREVENTED_CONTACT: ContactType.ValueType = ... # 2
34
- global___ContactType = ContactType
35
-
36
-
37
16
  class ContactCreationRequest(google.protobuf.message.Message):
38
17
  DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
39
18
  CREATION_DATA_FIELD_NUMBER: builtins.int
@@ -41,11 +20,11 @@ class ContactCreationRequest(google.protobuf.message.Message):
41
20
  @property
42
21
  def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.DoubleSidedScopedCreationData: ...
43
22
  @property
44
- def contact_properties(self) -> global___ContactProperties: ...
23
+ def contact_properties(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ContactProperties: ...
45
24
  def __init__(self,
46
25
  *,
47
26
  creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.DoubleSidedScopedCreationData] = ...,
48
- contact_properties : typing.Optional[global___ContactProperties] = ...,
27
+ contact_properties : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ContactProperties] = ...,
49
28
  ) -> None: ...
50
29
  def HasField(self, field_name: typing_extensions.Literal["contact_properties",b"contact_properties","creation_data",b"creation_data"]) -> builtins.bool: ...
51
30
  def ClearField(self, field_name: typing_extensions.Literal["contact_properties",b"contact_properties","creation_data",b"creation_data"]) -> None: ...
@@ -74,11 +53,11 @@ class ChangeContactTypeRequest(google.protobuf.message.Message):
74
53
  CONTACT_TYPE_FIELD_NUMBER: builtins.int
75
54
  @property
76
55
  def object_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
77
- contact_type: global___ContactType.ValueType = ...
56
+ contact_type: ansys.api.discovery.v0.discoverymodels_pb2.ContactType.ValueType = ...
78
57
  def __init__(self,
79
58
  *,
80
59
  object_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
81
- contact_type : global___ContactType.ValueType = ...,
60
+ contact_type : ansys.api.discovery.v0.discoverymodels_pb2.ContactType.ValueType = ...,
82
61
  ) -> None: ...
83
62
  def HasField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> builtins.bool: ...
84
63
  def ClearField(self, field_name: typing_extensions.Literal["contact_type",b"contact_type","object_id",b"object_id"]) -> None: ...
@@ -91,122 +70,20 @@ class ChangeContactPairRequest(google.protobuf.message.Message):
91
70
  @property
92
71
  def object_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
93
72
  @property
94
- def contact_pairs(self) -> global___ContactPairs: ...
73
+ def contact_pairs(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ContactPairs: ...
95
74
  def __init__(self,
96
75
  *,
97
76
  object_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
98
- contact_pairs : typing.Optional[global___ContactPairs] = ...,
77
+ contact_pairs : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ContactPairs] = ...,
99
78
  ) -> None: ...
100
79
  def HasField(self, field_name: typing_extensions.Literal["contact_pairs",b"contact_pairs","object_id",b"object_id"]) -> builtins.bool: ...
101
80
  def ClearField(self, field_name: typing_extensions.Literal["contact_pairs",b"contact_pairs","object_id",b"object_id"]) -> None: ...
102
81
  global___ChangeContactPairRequest = ChangeContactPairRequest
103
82
 
104
- class ContactPairs(google.protobuf.message.Message):
105
- DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
106
- CONTACT_PAIR_FIELD_NUMBER: builtins.int
107
- @property
108
- def contact_pair(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ContactPair]: ...
109
- def __init__(self,
110
- *,
111
- contact_pair : typing.Optional[typing.Iterable[global___ContactPair]] = ...,
112
- ) -> None: ...
113
- def ClearField(self, field_name: typing_extensions.Literal["contact_pair",b"contact_pair"]) -> None: ...
114
- global___ContactPairs = ContactPairs
115
-
116
- class ContactPair(google.protobuf.message.Message):
117
- DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
118
- ITEM1_FIELD_NUMBER: builtins.int
119
- ITEM2_FIELD_NUMBER: builtins.int
120
- @property
121
- def item1(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
122
- @property
123
- def item2(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
124
- def __init__(self,
125
- *,
126
- item1 : typing.Optional[typing.Iterable[typing.Text]] = ...,
127
- item2 : typing.Optional[typing.Iterable[typing.Text]] = ...,
128
- ) -> None: ...
129
- def ClearField(self, field_name: typing_extensions.Literal["item1",b"item1","item2",b"item2"]) -> None: ...
130
- global___ContactPair = ContactPair
131
-
132
- class ContactProperties(google.protobuf.message.Message):
133
- DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
134
- CONTACT_TYPE_FIELD_NUMBER: builtins.int
135
- CONTACT_PAIRS_FIELD_NUMBER: builtins.int
136
- FRICTION_COEFFICIENT_FIELD_NUMBER: builtins.int
137
- STIFFNESS_FACTOR_FIELD_NUMBER: builtins.int
138
- DETECTION_RADIUS_FACTOR_FIELD_NUMBER: builtins.int
139
- OFFSET_FIELD_NUMBER: builtins.int
140
- SHEAR_STRENGHT_FIELD_NUMBER: builtins.int
141
- TENSILE_STRENGTH_FIELD_NUMBER: builtins.int
142
- ARE_STRENGTH_LIMITS_SET_FIELD_NUMBER: builtins.int
143
- ADJUST_GAP_OR_OVERLAP_FIELD_NUMBER: builtins.int
144
- MAKE_JUST_TOUCHING_FIELD_NUMBER: builtins.int
145
- IDEALIZE_FIELD_NUMBER: builtins.int
146
- SPECIFY_THERMAL_CONDUCTANCE_FIELD_NUMBER: builtins.int
147
- SPECIFY_THERMAL_CONDUCTANCE_FROM_THICKNESS_AND_MATERIAL_FIELD_NUMBER: builtins.int
148
- SPECIFY_ELECTRIC_CONDUCTANCE_FIELD_NUMBER: builtins.int
149
- SPECIFY_ELECTRIC_CONDUCTANCE_FROM_THICKNESS_AND_MATERIAL_FIELD_NUMBER: builtins.int
150
- THERMAL_CONTACT_CONDUCTANCE_FIELD_NUMBER: builtins.int
151
- THERMAL_CONDUCTANCE_THICKNESS_FIELD_NUMBER: builtins.int
152
- ELECTRICAL_CONTACT_CONDUCTANCE_FIELD_NUMBER: builtins.int
153
- ELECTRICAL_CONDUCTANCE_THICKNESS_FIELD_NUMBER: builtins.int
154
- contact_type: global___ContactType.ValueType = ...
155
- @property
156
- def contact_pairs(self) -> global___ContactPairs: ...
157
- friction_coefficient: builtins.float = ...
158
- stiffness_factor: builtins.float = ...
159
- detection_radius_factor: builtins.float = ...
160
- @property
161
- def offset(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
162
- @property
163
- def shear_strenght(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
164
- @property
165
- def tensile_strength(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
166
- are_strength_limits_set: builtins.bool = ...
167
- adjust_gap_or_overlap: builtins.bool = ...
168
- make_just_touching: builtins.bool = ...
169
- idealize: builtins.bool = ...
170
- specify_thermal_conductance: builtins.bool = ...
171
- specify_thermal_conductance_from_thickness_and_material: builtins.bool = ...
172
- specify_electric_conductance: builtins.bool = ...
173
- specify_electric_conductance_from_thickness_and_material: builtins.bool = ...
174
- @property
175
- def thermal_contact_conductance(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
176
- @property
177
- def thermal_conductance_thickness(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
178
- @property
179
- def electrical_contact_conductance(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
180
- @property
181
- def electrical_conductance_thickness(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
182
- def __init__(self,
183
- *,
184
- contact_type : global___ContactType.ValueType = ...,
185
- contact_pairs : typing.Optional[global___ContactPairs] = ...,
186
- friction_coefficient : builtins.float = ...,
187
- stiffness_factor : builtins.float = ...,
188
- detection_radius_factor : builtins.float = ...,
189
- offset : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
190
- shear_strenght : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
191
- tensile_strength : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
192
- are_strength_limits_set : builtins.bool = ...,
193
- adjust_gap_or_overlap : builtins.bool = ...,
194
- make_just_touching : builtins.bool = ...,
195
- idealize : builtins.bool = ...,
196
- specify_thermal_conductance : builtins.bool = ...,
197
- specify_thermal_conductance_from_thickness_and_material : builtins.bool = ...,
198
- specify_electric_conductance : builtins.bool = ...,
199
- specify_electric_conductance_from_thickness_and_material : builtins.bool = ...,
200
- thermal_contact_conductance : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
201
- thermal_conductance_thickness : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
202
- electrical_contact_conductance : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
203
- electrical_conductance_thickness : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
204
- ) -> None: ...
205
- def HasField(self, field_name: typing_extensions.Literal["contact_pairs",b"contact_pairs","electrical_conductance_thickness",b"electrical_conductance_thickness","electrical_contact_conductance",b"electrical_contact_conductance","offset",b"offset","shear_strenght",b"shear_strenght","tensile_strength",b"tensile_strength","thermal_conductance_thickness",b"thermal_conductance_thickness","thermal_contact_conductance",b"thermal_contact_conductance"]) -> builtins.bool: ...
206
- def ClearField(self, field_name: typing_extensions.Literal["adjust_gap_or_overlap",b"adjust_gap_or_overlap","are_strength_limits_set",b"are_strength_limits_set","contact_pairs",b"contact_pairs","contact_type",b"contact_type","detection_radius_factor",b"detection_radius_factor","electrical_conductance_thickness",b"electrical_conductance_thickness","electrical_contact_conductance",b"electrical_contact_conductance","friction_coefficient",b"friction_coefficient","idealize",b"idealize","make_just_touching",b"make_just_touching","offset",b"offset","shear_strenght",b"shear_strenght","specify_electric_conductance",b"specify_electric_conductance","specify_electric_conductance_from_thickness_and_material",b"specify_electric_conductance_from_thickness_and_material","specify_thermal_conductance",b"specify_thermal_conductance","specify_thermal_conductance_from_thickness_and_material",b"specify_thermal_conductance_from_thickness_and_material","stiffness_factor",b"stiffness_factor","tensile_strength",b"tensile_strength","thermal_conductance_thickness",b"thermal_conductance_thickness","thermal_contact_conductance",b"thermal_contact_conductance"]) -> None: ...
207
- global___ContactProperties = ContactProperties
208
-
209
83
  class ContactDefinition(google.protobuf.message.Message):
84
+ """Contact condition definitions
85
+
86
+ """
210
87
  DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
211
88
  ID_FIELD_NUMBER: builtins.int
212
89
  PARENT_ID_FIELD_NUMBER: builtins.int
@@ -226,7 +103,7 @@ class ContactDefinition(google.protobuf.message.Message):
226
103
  def side2_locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
227
104
  suppressed: builtins.bool = ...
228
105
  @property
229
- def contact(self) -> global___ContactProperties: ...
106
+ def contact(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ContactProperties: ...
230
107
  def __init__(self,
231
108
  *,
232
109
  id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
@@ -235,7 +112,7 @@ class ContactDefinition(google.protobuf.message.Message):
235
112
  side1_locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
236
113
  side2_locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
237
114
  suppressed : builtins.bool = ...,
238
- contact : typing.Optional[global___ContactProperties] = ...,
115
+ contact : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ContactProperties] = ...,
239
116
  ) -> None: ...
240
117
  def HasField(self, field_name: typing_extensions.Literal["contact",b"contact","id",b"id","parent_id",b"parent_id"]) -> builtins.bool: ...
241
118
  def ClearField(self, field_name: typing_extensions.Literal["contact",b"contact","id",b"id","label",b"label","parent_id",b"parent_id","side1_locations",b"side1_locations","side2_locations",b"side2_locations","suppressed",b"suppressed"]) -> None: ...