ansys-api-discovery 0.6.9__py3-none-any.whl → 0.6.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-api-discovery might be problematic. Click here for more details.
- ansys/api/discovery/VERSION +1 -1
- ansys/api/discovery/v0/assignments/fan.proto +104 -0
- ansys/api/discovery/v0/assignments/fan_pb2.py +49 -0
- ansys/api/discovery/v0/assignments/fan_pb2.pyi +240 -0
- ansys/api/discovery/v0/assignments/fan_pb2_grpc.py +430 -0
- ansys/api/discovery/v0/assignments/fan_pb2_grpc.pyi +135 -0
- ansys/api/discovery/v0/conditions/operatingpressure.proto +12 -0
- ansys/api/discovery/v0/conditions/operatingpressure_pb2.py +27 -0
- ansys/api/discovery/v0/conditions/operatingpressure_pb2.pyi +7 -0
- ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.py +66 -0
- ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.pyi +24 -0
- ansys/api/discovery/v0/connections/fluidinterface.proto +62 -0
- ansys/api/discovery/v0/connections/fluidinterface_pb2.py +42 -0
- ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi +113 -0
- ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py +397 -0
- ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi +125 -0
- ansys/api/discovery/v0/discoverymodels.proto +37 -0
- ansys/api/discovery/v0/discoverymodels_pb2.py +66 -52
- ansys/api/discovery/v0/discoverymodels_pb2.pyi +121 -1
- ansys/api/discovery/v0/engineeringdata/fandata.proto +72 -0
- ansys/api/discovery/v0/engineeringdata/fandata_pb2.py +40 -0
- ansys/api/discovery/v0/engineeringdata/fandata_pb2.pyi +142 -0
- ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.py +67 -0
- ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.pyi +27 -0
- {ansys_api_discovery-0.6.9.dist-info → ansys_api_discovery-0.6.11.dist-info}/METADATA +4 -5
- {ansys_api_discovery-0.6.9.dist-info → ansys_api_discovery-0.6.11.dist-info}/RECORD +30 -10
- {ansys_api_discovery-0.6.9.dist-info → ansys_api_discovery-0.6.11.dist-info}/WHEEL +1 -1
- {ansys_api_discovery-0.6.9.dist-info/licenses → ansys_api_discovery-0.6.11.dist-info}/LICENSE +0 -0
- {ansys_api_discovery-0.6.9.dist-info → ansys_api_discovery-0.6.11.dist-info}/entry_points.txt +0 -0
- {ansys_api_discovery-0.6.9.dist-info → ansys_api_discovery-0.6.11.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class OperatingPressureStub(object):
|
|
9
|
+
"""Missing associated documentation comment in .proto file."""
|
|
10
|
+
|
|
11
|
+
def __init__(self, channel):
|
|
12
|
+
"""Constructor.
|
|
13
|
+
|
|
14
|
+
Args:
|
|
15
|
+
channel: A grpc.Channel.
|
|
16
|
+
"""
|
|
17
|
+
self.ChangePressureMagnitude = channel.unary_unary(
|
|
18
|
+
'/ansys.api.discovery.v0.conditions.operatingpressure.OperatingPressure/ChangePressureMagnitude',
|
|
19
|
+
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
20
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class OperatingPressureServicer(object):
|
|
25
|
+
"""Missing associated documentation comment in .proto file."""
|
|
26
|
+
|
|
27
|
+
def ChangePressureMagnitude(self, request, context):
|
|
28
|
+
"""Missing associated documentation comment in .proto file."""
|
|
29
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
30
|
+
context.set_details('Method not implemented!')
|
|
31
|
+
raise NotImplementedError('Method not implemented!')
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def add_OperatingPressureServicer_to_server(servicer, server):
|
|
35
|
+
rpc_method_handlers = {
|
|
36
|
+
'ChangePressureMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
37
|
+
servicer.ChangePressureMagnitude,
|
|
38
|
+
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
39
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
40
|
+
),
|
|
41
|
+
}
|
|
42
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
43
|
+
'ansys.api.discovery.v0.conditions.operatingpressure.OperatingPressure', rpc_method_handlers)
|
|
44
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# This class is part of an EXPERIMENTAL API.
|
|
48
|
+
class OperatingPressure(object):
|
|
49
|
+
"""Missing associated documentation comment in .proto file."""
|
|
50
|
+
|
|
51
|
+
@staticmethod
|
|
52
|
+
def ChangePressureMagnitude(request,
|
|
53
|
+
target,
|
|
54
|
+
options=(),
|
|
55
|
+
channel_credentials=None,
|
|
56
|
+
call_credentials=None,
|
|
57
|
+
insecure=False,
|
|
58
|
+
compression=None,
|
|
59
|
+
wait_for_ready=None,
|
|
60
|
+
timeout=None,
|
|
61
|
+
metadata=None):
|
|
62
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.operatingpressure.OperatingPressure/ChangePressureMagnitude',
|
|
63
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
64
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
65
|
+
options, channel_credentials,
|
|
66
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import abc
|
|
6
|
+
import ansys.api.discovery.v0.discoverymodels_pb2
|
|
7
|
+
import grpc
|
|
8
|
+
|
|
9
|
+
class OperatingPressureStub:
|
|
10
|
+
def __init__(self, channel: grpc.Channel) -> None: ...
|
|
11
|
+
ChangePressureMagnitude: grpc.UnaryUnaryMultiCallable[
|
|
12
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
13
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class OperatingPressureServicer(metaclass=abc.ABCMeta):
|
|
17
|
+
@abc.abstractmethod
|
|
18
|
+
def ChangePressureMagnitude(self,
|
|
19
|
+
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
20
|
+
context: grpc.ServicerContext,
|
|
21
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def add_OperatingPressureServicer_to_server(servicer: OperatingPressureServicer, server: grpc.Server) -> None: ...
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
// Copyright 2025, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
|
|
2
|
+
syntax = "proto3";
|
|
3
|
+
package ansys.api.discovery.v0.connections.fluidinterface;
|
|
4
|
+
|
|
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
|
+
import "ansys/api/discovery/v0/discoverymodels.proto";
|
|
9
|
+
|
|
10
|
+
option csharp_namespace = "Ansys.Api.Discovery.V0.Connections";
|
|
11
|
+
|
|
12
|
+
service FluidInterface
|
|
13
|
+
{
|
|
14
|
+
rpc ChangeFSInterfaceType(ChangeFSInterfaceTypeRequest) returns (ChangeResponse);
|
|
15
|
+
rpc ChangeFSInterfaceFaceGroupingMethod(ChangeFSInterfaceFaceGroupingMethodRequest) returns (ChangeResponse);
|
|
16
|
+
rpc ChangeFSInterfaceSpecifyConductanceMethod(ChangeFSInterfaceConductanceMethod) returns (ChangeResponse);
|
|
17
|
+
|
|
18
|
+
rpc ChangeFSInterfaceThermalMaterialAssignment(ChangeAssignmentRequest) returns (ChangeResponse);
|
|
19
|
+
rpc ChangeFSInterfaceThermalConductance(ChangeQuantityRequest) returns (ChangeResponse);
|
|
20
|
+
rpc ChangeFSInterfaceThermalConductivity(ChangeQuantityRequest) returns (ChangeResponse);
|
|
21
|
+
rpc ChangeFSInterfaceThermalThickness(ChangeQuantityRequest) returns (ChangeResponse);
|
|
22
|
+
|
|
23
|
+
rpc ChangeFSInterfaceDetectionDistanceHigh(ChangeQuantityRequest) returns (ChangeResponse);
|
|
24
|
+
rpc ChangeFSInterfaceFaceOverlapAllowance(ChangeQuantityRequest) returns (ChangeResponse);
|
|
25
|
+
|
|
26
|
+
rpc ChangeFSInterfaceInternalRadiationInputEnabled(ChangeBooleanRequest) returns (ChangeResponse);
|
|
27
|
+
rpc ChangeFSInterfaceInternalEmissivity(ChangeQuantityRequest) returns (ChangeResponse);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message ChangeFSInterfaceTypeRequest{
|
|
31
|
+
ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
|
|
32
|
+
FluidSolidInterfaceType interface_type = 2;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Contact group condition definitions
|
|
36
|
+
enum FluidSolidInterfaceType {
|
|
37
|
+
CONDUCTING = 0;
|
|
38
|
+
EXCLUDE = 1;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
message ChangeFSInterfaceFaceGroupingMethodRequest{
|
|
42
|
+
ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
|
|
43
|
+
FluidInterfaceFaceGroupingMethod face_grouping_method = 2;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
enum FluidInterfaceFaceGroupingMethod {
|
|
47
|
+
GROUPBYBODY = 0;
|
|
48
|
+
GROUPTANGENTFACES = 1;
|
|
49
|
+
NOGROUPING = 2;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
message ChangeFSInterfaceConductanceMethod{
|
|
53
|
+
ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
|
|
54
|
+
FluidInterfaceFaceThermalConductanceMethod thermal_conductivity_method = 2;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
enum FluidInterfaceFaceThermalConductanceMethod {
|
|
58
|
+
INSULATED = 0;
|
|
59
|
+
THERMALCONDUCTANCE = 1;
|
|
60
|
+
THICKNESSANDCONDUCTIVITY = 2;
|
|
61
|
+
THICKNESSANDMATERIAL = 3;
|
|
62
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: ansys/api/discovery/v0/connections/fluidinterface.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.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
|
+
from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
|
|
18
|
+
|
|
19
|
+
|
|
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\"\xc0\x01\n\x1c\x43hangeFSInterfaceTypeRequest\x12<\n\tobject_id\x18\x01 \x01(\x0b\x32).ansys.api.dbu.v0.PhysicsEntityIdentifier\x12\x62\n\x0einterface_type\x18\x02 \x01(\x0e\x32J.ansys.api.discovery.v0.connections.fluidinterface.FluidSolidInterfaceType\"\xdd\x01\n*ChangeFSInterfaceFaceGroupingMethodRequest\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\"\xe7\x01\n\"ChangeFSInterfaceConductanceMethod\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*6\n\x17\x46luidSolidInterfaceType\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\x88\x0c\n\x0e\x46luidInterface\x12\x90\x01\n\x15\x43hangeFSInterfaceType\x12O.ansys.api.discovery.v0.connections.fluidinterface.ChangeFSInterfaceTypeRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xac\x01\n#ChangeFSInterfaceFaceGroupingMethod\x12].ansys.api.discovery.v0.connections.fluidinterface.ChangeFSInterfaceFaceGroupingMethodRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xaa\x01\n)ChangeFSInterfaceSpecifyConductanceMethod\x12U.ansys.api.discovery.v0.connections.fluidinterface.ChangeFSInterfaceConductanceMethod\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n*ChangeFSInterfaceThermalMaterialAssignment\x12/.ansys.api.discovery.v0.ChangeAssignmentRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n#ChangeFSInterfaceThermalConductance\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeFSInterfaceThermalConductivity\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12z\n!ChangeFSInterfaceThermalThickness\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x7f\n&ChangeFSInterfaceDetectionDistanceHigh\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeFSInterfaceFaceOverlapAllowance\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
|
+
|
|
22
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
23
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.connections.fluidinterface_pb2', globals())
|
|
24
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
25
|
+
|
|
26
|
+
DESCRIPTOR._options = None
|
|
27
|
+
DESCRIPTOR._serialized_options = b'\252\002\"Ansys.Api.Discovery.V0.Connections'
|
|
28
|
+
_FLUIDSOLIDINTERFACETYPE._serialized_start=944
|
|
29
|
+
_FLUIDSOLIDINTERFACETYPE._serialized_end=998
|
|
30
|
+
_FLUIDINTERFACEFACEGROUPINGMETHOD._serialized_start=1000
|
|
31
|
+
_FLUIDINTERFACEFACEGROUPINGMETHOD._serialized_end=1090
|
|
32
|
+
_FLUIDINTERFACEFACETHERMALCONDUCTANCEMETHOD._serialized_start=1093
|
|
33
|
+
_FLUIDINTERFACEFACETHERMALCONDUCTANCEMETHOD._serialized_end=1232
|
|
34
|
+
_CHANGEFSINTERFACETYPEREQUEST._serialized_start=292
|
|
35
|
+
_CHANGEFSINTERFACETYPEREQUEST._serialized_end=484
|
|
36
|
+
_CHANGEFSINTERFACEFACEGROUPINGMETHODREQUEST._serialized_start=487
|
|
37
|
+
_CHANGEFSINTERFACEFACEGROUPINGMETHODREQUEST._serialized_end=708
|
|
38
|
+
_CHANGEFSINTERFACECONDUCTANCEMETHOD._serialized_start=711
|
|
39
|
+
_CHANGEFSINTERFACECONDUCTANCEMETHOD._serialized_end=942
|
|
40
|
+
_FLUIDINTERFACE._serialized_start=1235
|
|
41
|
+
_FLUIDINTERFACE._serialized_end=2779
|
|
42
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,113 @@
|
|
|
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 builtins
|
|
7
|
+
import google.protobuf.descriptor
|
|
8
|
+
import google.protobuf.internal.enum_type_wrapper
|
|
9
|
+
import google.protobuf.message
|
|
10
|
+
import typing
|
|
11
|
+
import typing_extensions
|
|
12
|
+
|
|
13
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
|
|
14
|
+
|
|
15
|
+
class _FluidSolidInterfaceType:
|
|
16
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
17
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
18
|
+
class _FluidSolidInterfaceTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_FluidSolidInterfaceType.ValueType], builtins.type):
|
|
19
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
20
|
+
CONDUCTING: FluidSolidInterfaceType.ValueType = ... # 0
|
|
21
|
+
EXCLUDE: FluidSolidInterfaceType.ValueType = ... # 1
|
|
22
|
+
class FluidSolidInterfaceType(_FluidSolidInterfaceType, metaclass=_FluidSolidInterfaceTypeEnumTypeWrapper):
|
|
23
|
+
"""Contact group condition definitions"""
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
CONDUCTING: FluidSolidInterfaceType.ValueType = ... # 0
|
|
27
|
+
EXCLUDE: FluidSolidInterfaceType.ValueType = ... # 1
|
|
28
|
+
global___FluidSolidInterfaceType = FluidSolidInterfaceType
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class _FluidInterfaceFaceGroupingMethod:
|
|
32
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
33
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
34
|
+
class _FluidInterfaceFaceGroupingMethodEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_FluidInterfaceFaceGroupingMethod.ValueType], builtins.type):
|
|
35
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
36
|
+
GROUPBYBODY: FluidInterfaceFaceGroupingMethod.ValueType = ... # 0
|
|
37
|
+
GROUPTANGENTFACES: FluidInterfaceFaceGroupingMethod.ValueType = ... # 1
|
|
38
|
+
NOGROUPING: FluidInterfaceFaceGroupingMethod.ValueType = ... # 2
|
|
39
|
+
class FluidInterfaceFaceGroupingMethod(_FluidInterfaceFaceGroupingMethod, metaclass=_FluidInterfaceFaceGroupingMethodEnumTypeWrapper):
|
|
40
|
+
pass
|
|
41
|
+
|
|
42
|
+
GROUPBYBODY: FluidInterfaceFaceGroupingMethod.ValueType = ... # 0
|
|
43
|
+
GROUPTANGENTFACES: FluidInterfaceFaceGroupingMethod.ValueType = ... # 1
|
|
44
|
+
NOGROUPING: FluidInterfaceFaceGroupingMethod.ValueType = ... # 2
|
|
45
|
+
global___FluidInterfaceFaceGroupingMethod = FluidInterfaceFaceGroupingMethod
|
|
46
|
+
|
|
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
|
+
class ChangeFSInterfaceTypeRequest(google.protobuf.message.Message):
|
|
68
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
69
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
70
|
+
INTERFACE_TYPE_FIELD_NUMBER: builtins.int
|
|
71
|
+
@property
|
|
72
|
+
def object_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
|
|
73
|
+
interface_type: global___FluidSolidInterfaceType.ValueType = ...
|
|
74
|
+
def __init__(self,
|
|
75
|
+
*,
|
|
76
|
+
object_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
|
|
77
|
+
interface_type : global___FluidSolidInterfaceType.ValueType = ...,
|
|
78
|
+
) -> None: ...
|
|
79
|
+
def HasField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> builtins.bool: ...
|
|
80
|
+
def ClearField(self, field_name: typing_extensions.Literal["interface_type",b"interface_type","object_id",b"object_id"]) -> None: ...
|
|
81
|
+
global___ChangeFSInterfaceTypeRequest = ChangeFSInterfaceTypeRequest
|
|
82
|
+
|
|
83
|
+
class ChangeFSInterfaceFaceGroupingMethodRequest(google.protobuf.message.Message):
|
|
84
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
85
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
86
|
+
FACE_GROUPING_METHOD_FIELD_NUMBER: builtins.int
|
|
87
|
+
@property
|
|
88
|
+
def object_id(self) -> ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier: ...
|
|
89
|
+
face_grouping_method: global___FluidInterfaceFaceGroupingMethod.ValueType = ...
|
|
90
|
+
def __init__(self,
|
|
91
|
+
*,
|
|
92
|
+
object_id : typing.Optional[ansys.api.dbu.v0.dbumodels_pb2.PhysicsEntityIdentifier] = ...,
|
|
93
|
+
face_grouping_method : global___FluidInterfaceFaceGroupingMethod.ValueType = ...,
|
|
94
|
+
) -> None: ...
|
|
95
|
+
def HasField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> builtins.bool: ...
|
|
96
|
+
def ClearField(self, field_name: typing_extensions.Literal["face_grouping_method",b"face_grouping_method","object_id",b"object_id"]) -> None: ...
|
|
97
|
+
global___ChangeFSInterfaceFaceGroupingMethodRequest = ChangeFSInterfaceFaceGroupingMethodRequest
|
|
98
|
+
|
|
99
|
+
class ChangeFSInterfaceConductanceMethod(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___ChangeFSInterfaceConductanceMethod = ChangeFSInterfaceConductanceMethod
|