ansys-api-discovery 0.6.10__py3-none-any.whl → 0.6.12__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 (30) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/assignments/fan.proto +104 -0
  3. ansys/api/discovery/v0/assignments/fan_pb2.py +49 -0
  4. ansys/api/discovery/v0/assignments/fan_pb2.pyi +240 -0
  5. ansys/api/discovery/v0/assignments/fan_pb2_grpc.py +430 -0
  6. ansys/api/discovery/v0/assignments/fan_pb2_grpc.pyi +135 -0
  7. ansys/api/discovery/v0/conditions/operatingpressure.proto +12 -0
  8. ansys/api/discovery/v0/conditions/operatingpressure_pb2.py +27 -0
  9. ansys/api/discovery/v0/conditions/operatingpressure_pb2.pyi +7 -0
  10. ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.py +66 -0
  11. ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.pyi +24 -0
  12. ansys/api/discovery/v0/connections/fluidinterface.proto +62 -0
  13. ansys/api/discovery/v0/connections/fluidinterface_pb2.py +42 -0
  14. ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi +113 -0
  15. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py +397 -0
  16. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi +125 -0
  17. ansys/api/discovery/v0/discoverymodels.proto +37 -0
  18. ansys/api/discovery/v0/discoverymodels_pb2.py +66 -52
  19. ansys/api/discovery/v0/discoverymodels_pb2.pyi +121 -1
  20. ansys/api/discovery/v0/engineeringdata/fandata.proto +72 -0
  21. ansys/api/discovery/v0/engineeringdata/fandata_pb2.py +40 -0
  22. ansys/api/discovery/v0/engineeringdata/fandata_pb2.pyi +142 -0
  23. ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.py +67 -0
  24. ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.pyi +27 -0
  25. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/METADATA +3 -3
  26. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/RECORD +30 -10
  27. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/LICENSE +0 -0
  28. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/WHEEL +0 -0
  29. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/entry_points.txt +0 -0
  30. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
1
- 0.6.10
1
+ 0.6.12
@@ -0,0 +1,104 @@
1
+ // Copyright 2025, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
2
+ syntax = "proto3";
3
+ package ansys.api.discovery.v0.assignments.fanassignment;
4
+
5
+ import "ansys/api/dbu/v0/dbumodels.proto";
6
+ import "ansys/api/discovery/v0/discoverymodels.proto";
7
+ import "ansys/api/discovery/v0/engineeringdata/fandata.proto";
8
+
9
+ option csharp_namespace = "Ansys.Api.Discovery.V0.Assignments";
10
+
11
+ service Fan
12
+ {
13
+ rpc CreateInternalFanAssignment(InternalFanAssignmentCreationRequest) returns (InternalFanAssignmentCreationResponse);
14
+
15
+ rpc CreateExternalFanAssignment(ExternalFanAssignmentCreationRequest) returns (ExternalFanAssignmentCreationResponse);
16
+
17
+ rpc ChangeFanAssignment(ChangeAssignmentRequest) returns (ChangeResponse);
18
+
19
+ rpc ChangeExternalFanSpecification(ChangeExternalFanSpecificationRequest) returns (ChangeResponse);
20
+
21
+ rpc ChangeFanLocation(ChangeLocationExtendedRequest) returns (ChangeResponse);
22
+
23
+ rpc ChangeExternalFanGaugePressure(ChangeQuantityRequest) returns (ChangeResponse);
24
+
25
+ rpc ChangeInternalFanInletFace(ChangeLocationRequest) returns (ChangeResponse);
26
+
27
+ rpc ChangeInternalFanIsShrouded(ChangeBooleanRequest) returns (ChangeResponse);
28
+
29
+ rpc ChangeInternalFanHubRadius(ChangeQuantityRequest) returns (ChangeResponse);
30
+
31
+ rpc ChangeInternalFanTipRadius(ChangeQuantityRequest) returns (ChangeResponse);
32
+
33
+ rpc ChangeInternalFanTotalHeat(ChangeQuantityRequest) returns (ChangeResponse);
34
+
35
+ rpc ChangeInternalFanSpecifyTotalHeat(ChangeBooleanRequest) returns (ChangeResponse);
36
+ }
37
+
38
+ message InternalFanAssignmentCreationRequest{
39
+ DoubleSidedScopedCreationData creation_data = 1;
40
+ ansys.api.dbu.v0.PhysicsEntityIdentifier fan_id = 2;
41
+ InternalFanAssignmentProperties internal_fan_assignment_properties = 3;
42
+ }
43
+
44
+ message ExternalFanAssignmentCreationRequest{
45
+ ScopedCreationData creation_data = 1;
46
+ ansys.api.dbu.v0.PhysicsEntityIdentifier fan_id = 2;
47
+ ExternalFanAssignmentProperties external_fan_assignment_properties = 3;
48
+ }
49
+
50
+ message InternalFanAssignmentCreationResponse{
51
+ CreationResponse condition_response = 1;
52
+ InternalFanAssignmentDefinition condition_data = 2;
53
+ }
54
+
55
+ message ExternalFanAssignmentCreationResponse{
56
+ CreationResponse condition_response = 1;
57
+ ExternalFanAssignmentDefinition condition_data = 2;
58
+ }
59
+
60
+ message ChangeExternalFanSpecificationRequest{
61
+ ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
62
+ ExternalFanSpecification specification = 2;
63
+ }
64
+
65
+ message ExternalFanAssignmentProperties {
66
+ ExternalFanSpecification specification = 1;
67
+ Quantity gauge_pressure = 2;
68
+ bool is_swirling = 3;
69
+ }
70
+
71
+ message InternalFanAssignmentProperties {
72
+ bool is_shrouded = 1;
73
+ OptionalQuantity specify_total_heat = 2;
74
+ Quantity hub_radius = 3;
75
+ Quantity tip_radius = 4;
76
+ bool is_swirling = 5;
77
+ }
78
+
79
+ enum ExternalFanSpecification
80
+ {
81
+ INTAKE = 0;
82
+ EXHAUST = 1;
83
+ }
84
+
85
+ // Return definitions
86
+ message InternalFanAssignmentDefinition {
87
+ ansys.api.dbu.v0.PhysicsEntityIdentifier id = 1;
88
+ ansys.api.dbu.v0.PhysicsEntityIdentifier parent_id = 2;
89
+ string label = 3;
90
+ repeated string locations = 4;
91
+ bool suppressed = 5;
92
+ ExternalFanAssignmentProperties assignment_properties = 6;
93
+ ansys.api.discovery.v0.engineeringdata.fandata.FanDataProperties fan_properties = 7;
94
+ }
95
+
96
+ message ExternalFanAssignmentDefinition {
97
+ ansys.api.dbu.v0.PhysicsEntityIdentifier id = 1;
98
+ ansys.api.dbu.v0.PhysicsEntityIdentifier parent_id = 2;
99
+ string label = 3;
100
+ repeated string locations = 4;
101
+ bool suppressed = 5;
102
+ InternalFanAssignmentProperties assignment_properties = 6;
103
+ ansys.api.discovery.v0.engineeringdata.fandata.FanDataProperties fan_properties = 7;
104
+ }
@@ -0,0 +1,49 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: ansys/api/discovery/v0/assignments/fan.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import symbol_database as _symbol_database
9
+ # @@protoc_insertion_point(imports)
10
+
11
+ _sym_db = _symbol_database.Default()
12
+
13
+
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 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
16
+ from ansys.api.discovery.v0.engineeringdata import fandata_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2
17
+
18
+
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,ansys/api/discovery/v0/assignments/fan.proto\x12\x30\x61nsys.api.discovery.v0.assignments.fanassignment\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a\x34\x61nsys/api/discovery/v0/engineeringdata/fandata.proto\"\xae\x02\n$InternalFanAssignmentCreationRequest\x12L\n\rcreation_data\x18\x01 \x01(\x0b\x32\x35.ansys.api.discovery.v0.DoubleSidedScopedCreationData\x12\x39\n\x06\x66\x61n_id\x18\x02 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12}\n\"internal_fan_assignment_properties\x18\x03 \x01(\x0b\x32Q.ansys.api.discovery.v0.assignments.fanassignment.InternalFanAssignmentProperties\"\xa3\x02\n$ExternalFanAssignmentCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12\x39\n\x06\x66\x61n_id\x18\x02 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12}\n\"external_fan_assignment_properties\x18\x03 \x01(\x0b\x32Q.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanAssignmentProperties\"\xd8\x01\n%InternalFanAssignmentCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12i\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32Q.ansys.api.discovery.v0.assignments.fanassignment.InternalFanAssignmentDefinition\"\xd8\x01\n%ExternalFanAssignmentCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12i\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32Q.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanAssignmentDefinition\"\xc8\x01\n%ChangeExternalFanSpecificationRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\x61\n\rspecification\x18\x02 \x01(\x0e\x32J.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanSpecification\"\xd3\x01\n\x1f\x45xternalFanAssignmentProperties\x12\x61\n\rspecification\x18\x01 \x01(\x0e\x32J.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanSpecification\x12\x38\n\x0egauge_pressure\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x13\n\x0bis_swirling\x18\x03 \x01(\x08\"\xfd\x01\n\x1fInternalFanAssignmentProperties\x12\x13\n\x0bis_shrouded\x18\x01 \x01(\x08\x12\x44\n\x12specify_total_heat\x18\x02 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\nhub_radius\x18\x03 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x34\n\ntip_radius\x18\x04 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x13\n\x0bis_swirling\x18\x05 \x01(\x08\"\x99\x03\n\x1fInternalFanAssignmentDefinition\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\x12p\n\x15\x61ssignment_properties\x18\x06 \x01(\x0b\x32Q.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanAssignmentProperties\x12Y\n\x0e\x66\x61n_properties\x18\x07 \x01(\x0b\x32\x41.ansys.api.discovery.v0.engineeringdata.fandata.FanDataProperties\"\x99\x03\n\x1f\x45xternalFanAssignmentDefinition\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\x12p\n\x15\x61ssignment_properties\x18\x06 \x01(\x0b\x32Q.ansys.api.discovery.v0.assignments.fanassignment.InternalFanAssignmentProperties\x12Y\n\x0e\x66\x61n_properties\x18\x07 \x01(\x0b\x32\x41.ansys.api.discovery.v0.engineeringdata.fandata.FanDataProperties*3\n\x18\x45xternalFanSpecification\x12\n\n\x06INTAKE\x10\x00\x12\x0b\n\x07\x45XHAUST\x10\x01\x32\xec\x0c\n\x03\x46\x61n\x12\xce\x01\n\x1b\x43reateInternalFanAssignment\x12V.ansys.api.discovery.v0.assignments.fanassignment.InternalFanAssignmentCreationRequest\x1aW.ansys.api.discovery.v0.assignments.fanassignment.InternalFanAssignmentCreationResponse\x12\xce\x01\n\x1b\x43reateExternalFanAssignment\x12V.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanAssignmentCreationRequest\x1aW.ansys.api.discovery.v0.assignments.fanassignment.ExternalFanAssignmentCreationResponse\x12n\n\x13\x43hangeFanAssignment\x12/.ansys.api.discovery.v0.ChangeAssignmentRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xa1\x01\n\x1e\x43hangeExternalFanSpecification\x12W.ansys.api.discovery.v0.assignments.fanassignment.ChangeExternalFanSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x11\x43hangeFanLocation\x12\x35.ansys.api.discovery.v0.ChangeLocationExtendedRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1e\x43hangeExternalFanGaugePressure\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeInternalFanInletFace\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeInternalFanIsShrouded\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeInternalFanHubRadius\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeInternalFanTipRadius\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeInternalFanTotalHeat\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12y\n!ChangeInternalFanSpecifyTotalHeat\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Assignmentsb\x06proto3')
20
+
21
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
22
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.assignments.fan_pb2', globals())
23
+ if _descriptor._USE_C_DESCRIPTORS == False:
24
+
25
+ DESCRIPTOR._options = None
26
+ DESCRIPTOR._serialized_options = b'\252\002\"Ansys.Api.Discovery.V0.Assignments'
27
+ _EXTERNALFANSPECIFICATION._serialized_start=2766
28
+ _EXTERNALFANSPECIFICATION._serialized_end=2817
29
+ _INTERNALFANASSIGNMENTCREATIONREQUEST._serialized_start=233
30
+ _INTERNALFANASSIGNMENTCREATIONREQUEST._serialized_end=535
31
+ _EXTERNALFANASSIGNMENTCREATIONREQUEST._serialized_start=538
32
+ _EXTERNALFANASSIGNMENTCREATIONREQUEST._serialized_end=829
33
+ _INTERNALFANASSIGNMENTCREATIONRESPONSE._serialized_start=832
34
+ _INTERNALFANASSIGNMENTCREATIONRESPONSE._serialized_end=1048
35
+ _EXTERNALFANASSIGNMENTCREATIONRESPONSE._serialized_start=1051
36
+ _EXTERNALFANASSIGNMENTCREATIONRESPONSE._serialized_end=1267
37
+ _CHANGEEXTERNALFANSPECIFICATIONREQUEST._serialized_start=1270
38
+ _CHANGEEXTERNALFANSPECIFICATIONREQUEST._serialized_end=1470
39
+ _EXTERNALFANASSIGNMENTPROPERTIES._serialized_start=1473
40
+ _EXTERNALFANASSIGNMENTPROPERTIES._serialized_end=1684
41
+ _INTERNALFANASSIGNMENTPROPERTIES._serialized_start=1687
42
+ _INTERNALFANASSIGNMENTPROPERTIES._serialized_end=1940
43
+ _INTERNALFANASSIGNMENTDEFINITION._serialized_start=1943
44
+ _INTERNALFANASSIGNMENTDEFINITION._serialized_end=2352
45
+ _EXTERNALFANASSIGNMENTDEFINITION._serialized_start=2355
46
+ _EXTERNALFANASSIGNMENTDEFINITION._serialized_end=2764
47
+ _FAN._serialized_start=2820
48
+ _FAN._serialized_end=4464
49
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,240 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ """
5
+ import ansys.api.dbu.v0.dbumodels_pb2
6
+ import ansys.api.discovery.v0.discoverymodels_pb2
7
+ import ansys.api.discovery.v0.engineeringdata.fandata_pb2
8
+ import builtins
9
+ import google.protobuf.descriptor
10
+ import google.protobuf.internal.containers
11
+ import google.protobuf.internal.enum_type_wrapper
12
+ import google.protobuf.message
13
+ import typing
14
+ import typing_extensions
15
+
16
+ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
17
+
18
+ class _ExternalFanSpecification:
19
+ ValueType = typing.NewType('ValueType', builtins.int)
20
+ V: typing_extensions.TypeAlias = ValueType
21
+ class _ExternalFanSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ExternalFanSpecification.ValueType], builtins.type):
22
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
23
+ INTAKE: ExternalFanSpecification.ValueType = ... # 0
24
+ EXHAUST: ExternalFanSpecification.ValueType = ... # 1
25
+ class ExternalFanSpecification(_ExternalFanSpecification, metaclass=_ExternalFanSpecificationEnumTypeWrapper):
26
+ pass
27
+
28
+ INTAKE: ExternalFanSpecification.ValueType = ... # 0
29
+ EXHAUST: ExternalFanSpecification.ValueType = ... # 1
30
+ global___ExternalFanSpecification = ExternalFanSpecification
31
+
32
+
33
+ class InternalFanAssignmentCreationRequest(google.protobuf.message.Message):
34
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
35
+ CREATION_DATA_FIELD_NUMBER: builtins.int
36
+ FAN_ID_FIELD_NUMBER: builtins.int
37
+ INTERNAL_FAN_ASSIGNMENT_PROPERTIES_FIELD_NUMBER: builtins.int
38
+ @property
39
+ def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.DoubleSidedScopedCreationData: ...
40
+ @property
41
+ def fan_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
42
+ @property
43
+ def internal_fan_assignment_properties(self) -> global___InternalFanAssignmentProperties: ...
44
+ def __init__(self,
45
+ *,
46
+ creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.DoubleSidedScopedCreationData] = ...,
47
+ fan_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
48
+ internal_fan_assignment_properties : typing.Optional[global___InternalFanAssignmentProperties] = ...,
49
+ ) -> None: ...
50
+ def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","fan_id",b"fan_id","internal_fan_assignment_properties",b"internal_fan_assignment_properties"]) -> builtins.bool: ...
51
+ def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","fan_id",b"fan_id","internal_fan_assignment_properties",b"internal_fan_assignment_properties"]) -> None: ...
52
+ global___InternalFanAssignmentCreationRequest = InternalFanAssignmentCreationRequest
53
+
54
+ class ExternalFanAssignmentCreationRequest(google.protobuf.message.Message):
55
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
56
+ CREATION_DATA_FIELD_NUMBER: builtins.int
57
+ FAN_ID_FIELD_NUMBER: builtins.int
58
+ EXTERNAL_FAN_ASSIGNMENT_PROPERTIES_FIELD_NUMBER: builtins.int
59
+ @property
60
+ def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
61
+ @property
62
+ def fan_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
63
+ @property
64
+ def external_fan_assignment_properties(self) -> global___ExternalFanAssignmentProperties: ...
65
+ def __init__(self,
66
+ *,
67
+ creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
68
+ fan_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
69
+ external_fan_assignment_properties : typing.Optional[global___ExternalFanAssignmentProperties] = ...,
70
+ ) -> None: ...
71
+ def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","external_fan_assignment_properties",b"external_fan_assignment_properties","fan_id",b"fan_id"]) -> builtins.bool: ...
72
+ def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","external_fan_assignment_properties",b"external_fan_assignment_properties","fan_id",b"fan_id"]) -> None: ...
73
+ global___ExternalFanAssignmentCreationRequest = ExternalFanAssignmentCreationRequest
74
+
75
+ class InternalFanAssignmentCreationResponse(google.protobuf.message.Message):
76
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
77
+ CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
78
+ CONDITION_DATA_FIELD_NUMBER: builtins.int
79
+ @property
80
+ def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
81
+ @property
82
+ def condition_data(self) -> global___InternalFanAssignmentDefinition: ...
83
+ def __init__(self,
84
+ *,
85
+ condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
86
+ condition_data : typing.Optional[global___InternalFanAssignmentDefinition] = ...,
87
+ ) -> None: ...
88
+ def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
89
+ def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
90
+ global___InternalFanAssignmentCreationResponse = InternalFanAssignmentCreationResponse
91
+
92
+ class ExternalFanAssignmentCreationResponse(google.protobuf.message.Message):
93
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
94
+ CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
95
+ CONDITION_DATA_FIELD_NUMBER: builtins.int
96
+ @property
97
+ def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
98
+ @property
99
+ def condition_data(self) -> global___ExternalFanAssignmentDefinition: ...
100
+ def __init__(self,
101
+ *,
102
+ condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
103
+ condition_data : typing.Optional[global___ExternalFanAssignmentDefinition] = ...,
104
+ ) -> None: ...
105
+ def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
106
+ def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
107
+ global___ExternalFanAssignmentCreationResponse = ExternalFanAssignmentCreationResponse
108
+
109
+ class ChangeExternalFanSpecificationRequest(google.protobuf.message.Message):
110
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
111
+ OBJECT_ID_FIELD_NUMBER: builtins.int
112
+ SPECIFICATION_FIELD_NUMBER: builtins.int
113
+ @property
114
+ def object_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
115
+ specification: global___ExternalFanSpecification.ValueType = ...
116
+ def __init__(self,
117
+ *,
118
+ object_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
119
+ specification : global___ExternalFanSpecification.ValueType = ...,
120
+ ) -> None: ...
121
+ def HasField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> builtins.bool: ...
122
+ def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id","specification",b"specification"]) -> None: ...
123
+ global___ChangeExternalFanSpecificationRequest = ChangeExternalFanSpecificationRequest
124
+
125
+ class ExternalFanAssignmentProperties(google.protobuf.message.Message):
126
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
127
+ SPECIFICATION_FIELD_NUMBER: builtins.int
128
+ GAUGE_PRESSURE_FIELD_NUMBER: builtins.int
129
+ IS_SWIRLING_FIELD_NUMBER: builtins.int
130
+ specification: global___ExternalFanSpecification.ValueType = ...
131
+ @property
132
+ def gauge_pressure(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
133
+ is_swirling: builtins.bool = ...
134
+ def __init__(self,
135
+ *,
136
+ specification : global___ExternalFanSpecification.ValueType = ...,
137
+ gauge_pressure : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
138
+ is_swirling : builtins.bool = ...,
139
+ ) -> None: ...
140
+ def HasField(self, field_name: typing_extensions.Literal["gauge_pressure",b"gauge_pressure"]) -> builtins.bool: ...
141
+ def ClearField(self, field_name: typing_extensions.Literal["gauge_pressure",b"gauge_pressure","is_swirling",b"is_swirling","specification",b"specification"]) -> None: ...
142
+ global___ExternalFanAssignmentProperties = ExternalFanAssignmentProperties
143
+
144
+ class InternalFanAssignmentProperties(google.protobuf.message.Message):
145
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
146
+ IS_SHROUDED_FIELD_NUMBER: builtins.int
147
+ SPECIFY_TOTAL_HEAT_FIELD_NUMBER: builtins.int
148
+ HUB_RADIUS_FIELD_NUMBER: builtins.int
149
+ TIP_RADIUS_FIELD_NUMBER: builtins.int
150
+ IS_SWIRLING_FIELD_NUMBER: builtins.int
151
+ is_shrouded: builtins.bool = ...
152
+ @property
153
+ def specify_total_heat(self) -> ansys.api.discovery.v0.discoverymodels_pb2.OptionalQuantity: ...
154
+ @property
155
+ def hub_radius(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
156
+ @property
157
+ def tip_radius(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
158
+ is_swirling: builtins.bool = ...
159
+ def __init__(self,
160
+ *,
161
+ is_shrouded : builtins.bool = ...,
162
+ specify_total_heat : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.OptionalQuantity] = ...,
163
+ hub_radius : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
164
+ tip_radius : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
165
+ is_swirling : builtins.bool = ...,
166
+ ) -> None: ...
167
+ def HasField(self, field_name: typing_extensions.Literal["hub_radius",b"hub_radius","specify_total_heat",b"specify_total_heat","tip_radius",b"tip_radius"]) -> builtins.bool: ...
168
+ def ClearField(self, field_name: typing_extensions.Literal["hub_radius",b"hub_radius","is_shrouded",b"is_shrouded","is_swirling",b"is_swirling","specify_total_heat",b"specify_total_heat","tip_radius",b"tip_radius"]) -> None: ...
169
+ global___InternalFanAssignmentProperties = InternalFanAssignmentProperties
170
+
171
+ class InternalFanAssignmentDefinition(google.protobuf.message.Message):
172
+ """Return definitions"""
173
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
174
+ ID_FIELD_NUMBER: builtins.int
175
+ PARENT_ID_FIELD_NUMBER: builtins.int
176
+ LABEL_FIELD_NUMBER: builtins.int
177
+ LOCATIONS_FIELD_NUMBER: builtins.int
178
+ SUPPRESSED_FIELD_NUMBER: builtins.int
179
+ ASSIGNMENT_PROPERTIES_FIELD_NUMBER: builtins.int
180
+ FAN_PROPERTIES_FIELD_NUMBER: builtins.int
181
+ @property
182
+ def id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
183
+ @property
184
+ def parent_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
185
+ label: typing.Text = ...
186
+ @property
187
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
188
+ suppressed: builtins.bool = ...
189
+ @property
190
+ def assignment_properties(self) -> global___ExternalFanAssignmentProperties: ...
191
+ @property
192
+ def fan_properties(self) -> ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanDataProperties: ...
193
+ def __init__(self,
194
+ *,
195
+ id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
196
+ parent_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
197
+ label : typing.Text = ...,
198
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
199
+ suppressed : builtins.bool = ...,
200
+ assignment_properties : typing.Optional[global___ExternalFanAssignmentProperties] = ...,
201
+ fan_properties : typing.Optional[ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanDataProperties] = ...,
202
+ ) -> None: ...
203
+ def HasField(self, field_name: typing_extensions.Literal["assignment_properties",b"assignment_properties","fan_properties",b"fan_properties","id",b"id","parent_id",b"parent_id"]) -> builtins.bool: ...
204
+ def ClearField(self, field_name: typing_extensions.Literal["assignment_properties",b"assignment_properties","fan_properties",b"fan_properties","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
205
+ global___InternalFanAssignmentDefinition = InternalFanAssignmentDefinition
206
+
207
+ class ExternalFanAssignmentDefinition(google.protobuf.message.Message):
208
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
209
+ ID_FIELD_NUMBER: builtins.int
210
+ PARENT_ID_FIELD_NUMBER: builtins.int
211
+ LABEL_FIELD_NUMBER: builtins.int
212
+ LOCATIONS_FIELD_NUMBER: builtins.int
213
+ SUPPRESSED_FIELD_NUMBER: builtins.int
214
+ ASSIGNMENT_PROPERTIES_FIELD_NUMBER: builtins.int
215
+ FAN_PROPERTIES_FIELD_NUMBER: builtins.int
216
+ @property
217
+ def id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
218
+ @property
219
+ def parent_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
220
+ label: typing.Text = ...
221
+ @property
222
+ def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
223
+ suppressed: builtins.bool = ...
224
+ @property
225
+ def assignment_properties(self) -> global___InternalFanAssignmentProperties: ...
226
+ @property
227
+ def fan_properties(self) -> ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanDataProperties: ...
228
+ def __init__(self,
229
+ *,
230
+ id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
231
+ parent_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
232
+ label : typing.Text = ...,
233
+ locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
234
+ suppressed : builtins.bool = ...,
235
+ assignment_properties : typing.Optional[global___InternalFanAssignmentProperties] = ...,
236
+ fan_properties : typing.Optional[ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanDataProperties] = ...,
237
+ ) -> None: ...
238
+ def HasField(self, field_name: typing_extensions.Literal["assignment_properties",b"assignment_properties","fan_properties",b"fan_properties","id",b"id","parent_id",b"parent_id"]) -> builtins.bool: ...
239
+ def ClearField(self, field_name: typing_extensions.Literal["assignment_properties",b"assignment_properties","fan_properties",b"fan_properties","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
240
+ global___ExternalFanAssignmentDefinition = ExternalFanAssignmentDefinition