ansys-api-discovery 0.5.2__py3-none-any.whl → 0.6.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-api-discovery might be problematic. Click here for more details.
- ansys/api/discovery/VERSION +1 -1
- ansys/api/discovery/v0/conditions.proto +11 -46
- ansys/api/discovery/v0/conditions_pb2.py +12 -70
- ansys/api/discovery/v0/conditions_pb2.pyi +16 -88
- ansys/api/discovery/v0/conditions_pb2_grpc.py +40 -139
- ansys/api/discovery/v0/conditions_pb2_grpc.pyi +20 -50
- ansys/api/discovery/v0/conditionsfluid.proto +246 -0
- ansys/api/discovery/v0/conditionsfluid_pb2.py +85 -0
- ansys/api/discovery/v0/conditionsfluid_pb2.pyi +590 -0
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py +662 -0
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi +208 -0
- ansys/api/discovery/v0/conditionsstructural.proto +407 -0
- ansys/api/discovery/v0/conditionsstructural_pb2.py +113 -0
- ansys/api/discovery/v0/conditionsstructural_pb2.pyi +839 -0
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +2746 -0
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +854 -0
- ansys/api/discovery/v0/conditionsthermal.proto +179 -0
- ansys/api/discovery/v0/conditionsthermal_pb2.py +63 -0
- ansys/api/discovery/v0/conditionsthermal_pb2.pyi +399 -0
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py +665 -0
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi +217 -0
- ansys/api/discovery/v0/definedvariationstable.proto +12 -0
- ansys/api/discovery/v0/definedvariationstable_pb2.py +12 -116
- ansys/api/discovery/v0/definedvariationstable_pb2.pyi +16 -0
- ansys/api/discovery/v0/definedvariationstable_pb2_grpc.py +68 -0
- ansys/api/discovery/v0/definedvariationstable_pb2_grpc.pyi +26 -0
- ansys/api/discovery/v0/discoverymodels.proto +91 -25
- ansys/api/discovery/v0/discoverymodels_pb2.py +59 -211
- ansys/api/discovery/v0/discoverymodels_pb2.pyi +264 -50
- ansys/api/discovery/v0/historytrackparameters_pb2.py +3 -50
- ansys/api/discovery/v0/messaging.proto +0 -2
- ansys/api/discovery/v0/messaging_pb2.py +8 -20
- ansys/api/discovery/v0/monitors.proto +137 -0
- ansys/api/discovery/v0/monitors_pb2.py +42 -0
- ansys/api/discovery/v0/monitors_pb2.pyi +307 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.py +67 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.pyi +27 -0
- ansys/api/discovery/v0/scriptparameters_pb2.py +3 -37
- ansys/api/discovery/v0/simulations.proto +0 -1
- ansys/api/discovery/v0/simulations_pb2.py +8 -19
- ansys/api/discovery/v0/solution.proto +19 -2
- ansys/api/discovery/v0/solution_pb2.py +18 -40
- ansys/api/discovery/v0/solution_pb2.pyi +53 -0
- ansys/api/discovery/v0/solution_pb2_grpc.py +33 -0
- ansys/api/discovery/v0/solution_pb2_grpc.pyi +10 -0
- ansys/api/discovery/v0/units_pb2.py +3 -1232
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/METADATA +8 -8
- ansys_api_discovery-0.6.1.dist-info/RECORD +75 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/WHEEL +1 -1
- ansys_api_discovery-0.5.2.dist-info/RECORD +0 -55
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/LICENSE +0 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/entry_points.txt +0 -0
- {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
// Copyright 2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
|
|
2
|
+
syntax = "proto3";
|
|
3
|
+
package ansys.api.discovery.v0.conditions.conditionsthermal;
|
|
4
|
+
|
|
5
|
+
import "ansys/api/discovery/v0/discoverymodels.proto";
|
|
6
|
+
|
|
7
|
+
option csharp_namespace = "Ansys.Api.Discovery.V0.Conditions.ConditionsThermal";
|
|
8
|
+
|
|
9
|
+
service ConditionsThermal
|
|
10
|
+
{
|
|
11
|
+
//Heat condition methods
|
|
12
|
+
rpc CreateHeatVolumetricTotal(HeatCreationRequest) returns (HeatTotalCreationResponse);
|
|
13
|
+
|
|
14
|
+
rpc CreateHeatVolumetricDistributed(HeatCreationRequest) returns (HeatVolumetricDistributedCreationResponse);
|
|
15
|
+
|
|
16
|
+
rpc CreateHeatSurfaceTotal(HeatCreationRequest) returns (HeatTotalCreationResponse);
|
|
17
|
+
|
|
18
|
+
rpc CreateHeatSurfaceDistributed(HeatCreationRequest) returns (HeatSurfaceDistributedCreationResponse);
|
|
19
|
+
|
|
20
|
+
rpc ChangeHeatLocation(ChangeLocationExtendedRequest) returns(ChangeResponse);
|
|
21
|
+
|
|
22
|
+
rpc ChangeTotalHeat(ChangeQuantityRequest) returns(ChangeResponse);
|
|
23
|
+
|
|
24
|
+
rpc ChangeHeatPerUnitVolume(ChangeQuantityRequest) returns(ChangeResponse);
|
|
25
|
+
|
|
26
|
+
rpc ChangeHeatPerUnitArea(ChangeQuantityRequest) returns(ChangeResponse);
|
|
27
|
+
|
|
28
|
+
rpc ChangeHeatSpecification(ChangeHeatSpecificationRequest) returns(ChangeResponse);
|
|
29
|
+
|
|
30
|
+
//Temperature condition methods
|
|
31
|
+
rpc CreateTemperatureVolumetric(TemperatureCreationRequest) returns (TemperatureCreationResponse);
|
|
32
|
+
|
|
33
|
+
rpc CreateTemperatureSurface(TemperatureCreationRequest) returns (TemperatureCreationResponse);
|
|
34
|
+
|
|
35
|
+
rpc ChangeTemperatureLocation(ChangeLocationExtendedRequest) returns(ChangeResponse);
|
|
36
|
+
|
|
37
|
+
rpc ChangeTemperatureMagnitude(ChangeQuantityRequest) returns(ChangeResponse);
|
|
38
|
+
|
|
39
|
+
//Insulated condition methods
|
|
40
|
+
rpc CreateInsulated(InsulatedCreationRequest) returns (InsulatedCreationResponse);
|
|
41
|
+
|
|
42
|
+
rpc ChangeInsulatedLocation(ChangeLocationRequest) returns(ChangeResponse);
|
|
43
|
+
|
|
44
|
+
// Convection condition methods
|
|
45
|
+
rpc CreateConvection(ConvectionCreationRequest) returns (ConvectionCreationResponse);
|
|
46
|
+
|
|
47
|
+
rpc ChangeConvectionLocation(ChangeLocationRequest) returns(ChangeResponse);
|
|
48
|
+
|
|
49
|
+
rpc ChangeConvectionCoefficientMagnitude(ChangeQuantityRequest) returns(ChangeResponse);
|
|
50
|
+
|
|
51
|
+
rpc ChangeConvectionTemperatureMagnitude(ChangeQuantityRequest) returns(ChangeResponse);
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// Command requests and responses
|
|
56
|
+
|
|
57
|
+
// Heat
|
|
58
|
+
message ChangeHeatSpecificationRequest{
|
|
59
|
+
string object_id = 1;
|
|
60
|
+
HeatSpecification heat_specification = 2;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message HeatCreationRequest{
|
|
64
|
+
ScopedCreationData creation_data = 1;
|
|
65
|
+
Quantity heat = 2;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
message HeatTotalCreationResponse{
|
|
69
|
+
CreationResponse condition_response = 1;
|
|
70
|
+
HeatTotalDefinition condition_data = 2;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message HeatVolumetricDistributedCreationResponse{
|
|
74
|
+
CreationResponse condition_response = 1;
|
|
75
|
+
HeatPerVolumeDefinition condition_data = 2;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message HeatSurfaceDistributedCreationResponse{
|
|
79
|
+
CreationResponse condition_response = 1;
|
|
80
|
+
HeatPerAreaDefinition condition_data = 2;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Temperature
|
|
84
|
+
message TemperatureCreationRequest{
|
|
85
|
+
ScopedCreationData creation_data = 1;
|
|
86
|
+
Quantity temperature = 2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message TemperatureCreationResponse{
|
|
90
|
+
CreationResponse condition_response = 1;
|
|
91
|
+
TemperatureDefinition condition_data = 2;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Insulated
|
|
95
|
+
message InsulatedCreationRequest{
|
|
96
|
+
ScopedCreationData creation_data = 1;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
message InsulatedCreationResponse{
|
|
100
|
+
CreationResponse condition_response = 1;
|
|
101
|
+
InsulatedDefinition condition_data = 2;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Convection
|
|
105
|
+
message ConvectionCreationRequest{
|
|
106
|
+
ScopedCreationData creation_data = 1;
|
|
107
|
+
Quantity coefficient = 2;
|
|
108
|
+
Quantity temperature = 3;
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message ConvectionCreationResponse{
|
|
113
|
+
CreationResponse condition_response = 1;
|
|
114
|
+
ConvectionDefinition condition_data = 2;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
// Thermal enumerations
|
|
119
|
+
|
|
120
|
+
enum HeatSpecification {
|
|
121
|
+
TOTALHEAT = 0;
|
|
122
|
+
HEATPERUNITVOLUMEORAREA = 1;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// Thermal condition definitions
|
|
126
|
+
|
|
127
|
+
message HeatTotalDefinition {
|
|
128
|
+
string id = 1;
|
|
129
|
+
string parent_id = 2;
|
|
130
|
+
string label = 3;
|
|
131
|
+
repeated string locations = 4;
|
|
132
|
+
bool suppressed = 5;
|
|
133
|
+
Quantity total_heat = 7;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
message HeatPerAreaDefinition {
|
|
137
|
+
string id = 1;
|
|
138
|
+
string parent_id = 2;
|
|
139
|
+
string label = 3;
|
|
140
|
+
repeated string locations = 4;
|
|
141
|
+
bool suppressed = 5;
|
|
142
|
+
Quantity heat_per_unitarea = 6;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
message HeatPerVolumeDefinition {
|
|
146
|
+
string id = 1;
|
|
147
|
+
string parent_id = 2;
|
|
148
|
+
string label = 3;
|
|
149
|
+
repeated string locations = 4;
|
|
150
|
+
bool suppressed = 5;
|
|
151
|
+
Quantity heat_per_unitvolume = 6;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
message TemperatureDefinition {
|
|
155
|
+
string id = 1;
|
|
156
|
+
string parent_id = 2;
|
|
157
|
+
string label = 3;
|
|
158
|
+
repeated string locations = 4;
|
|
159
|
+
bool suppressed = 5;
|
|
160
|
+
Quantity magnitude = 6;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
message InsulatedDefinition {
|
|
164
|
+
string id = 1;
|
|
165
|
+
string parent_id = 2;
|
|
166
|
+
string label = 3;
|
|
167
|
+
repeated string locations = 4;
|
|
168
|
+
bool suppressed = 5;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
message ConvectionDefinition {
|
|
172
|
+
string id = 1;
|
|
173
|
+
string parent_id = 2;
|
|
174
|
+
string label = 3;
|
|
175
|
+
repeated string locations = 4;
|
|
176
|
+
bool suppressed = 5;
|
|
177
|
+
Quantity coefficient = 6;
|
|
178
|
+
Quantity temperature = 7;
|
|
179
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: ansys/api/discovery/v0/conditionsthermal.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.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.ansys/api/discovery/v0/conditionsthermal.proto\x12\x33\x61nsys.api.discovery.v0.conditions.conditionsthermal\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\x97\x01\n\x1e\x43hangeHeatSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x62\n\x12heat_specification\x18\x02 \x01(\x0e\x32\x46.ansys.api.discovery.v0.conditions.conditionsthermal.HeatSpecification\"\x88\x01\n\x13HeatCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12.\n\x04heat\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc3\x01\n\x19HeatTotalCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12`\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsthermal.HeatTotalDefinition\"\xd7\x01\n)HeatVolumetricDistributedCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x64\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32L.ansys.api.discovery.v0.conditions.conditionsthermal.HeatPerVolumeDefinition\"\xd2\x01\n&HeatSurfaceDistributedCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x62\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsthermal.HeatPerAreaDefinition\"\x96\x01\n\x1aTemperatureCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12\x35\n\x0btemperature\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc7\x01\n\x1bTemperatureCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x62\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsthermal.TemperatureDefinition\"]\n\x18InsulatedCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\"\xc3\x01\n\x19InsulatedCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12`\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsthermal.InsulatedDefinition\"\xcc\x01\n\x19\x43onvectionCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12\x35\n\x0b\x63oefficient\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x35\n\x0btemperature\x18\x03 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc5\x01\n\x1a\x43onvectionCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x61\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32I.ansys.api.discovery.v0.conditions.conditionsthermal.ConvectionDefinition\"\xa0\x01\n\x13HeatTotalDefinition\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12\x34\n\ntotal_heat\x18\x07 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xa9\x01\n\x15HeatPerAreaDefinition\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12;\n\x11heat_per_unitarea\x18\x06 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xad\x01\n\x17HeatPerVolumeDefinition\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12=\n\x13heat_per_unitvolume\x18\x06 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xa1\x01\n\x15TemperatureDefinition\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12\x33\n\tmagnitude\x18\x06 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"j\n\x13InsulatedDefinition\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\"\xd9\x01\n\x14\x43onvectionDefinition\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\r\n\x05label\x18\x03 \x01(\t\x12\x11\n\tlocations\x18\x04 \x03(\t\x12\x12\n\nsuppressed\x18\x05 \x01(\x08\x12\x35\n\x0b\x63oefficient\x18\x06 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x35\n\x0btemperature\x18\x07 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity*?\n\x11HeatSpecification\x12\r\n\tTOTALHEAT\x10\x00\x12\x1b\n\x17HEATPERUNITVOLUMEORAREA\x10\x01\x32\xb0\x16\n\x11\x43onditionsThermal\x12\xb5\x01\n\x19\x43reateHeatVolumetricTotal\x12H.ansys.api.discovery.v0.conditions.conditionsthermal.HeatCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsthermal.HeatTotalCreationResponse\x12\xcb\x01\n\x1f\x43reateHeatVolumetricDistributed\x12H.ansys.api.discovery.v0.conditions.conditionsthermal.HeatCreationRequest\x1a^.ansys.api.discovery.v0.conditions.conditionsthermal.HeatVolumetricDistributedCreationResponse\x12\xb2\x01\n\x16\x43reateHeatSurfaceTotal\x12H.ansys.api.discovery.v0.conditions.conditionsthermal.HeatCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsthermal.HeatTotalCreationResponse\x12\xc5\x01\n\x1c\x43reateHeatSurfaceDistributed\x12H.ansys.api.discovery.v0.conditions.conditionsthermal.HeatCreationRequest\x1a[.ansys.api.discovery.v0.conditions.conditionsthermal.HeatSurfaceDistributedCreationResponse\x12s\n\x12\x43hangeHeatLocation\x12\x35.ansys.api.discovery.v0.ChangeLocationExtendedRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12h\n\x0f\x43hangeTotalHeat\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12p\n\x17\x43hangeHeatPerUnitVolume\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12n\n\x15\x43hangeHeatPerUnitArea\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x96\x01\n\x17\x43hangeHeatSpecification\x12S.ansys.api.discovery.v0.conditions.conditionsthermal.ChangeHeatSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xc0\x01\n\x1b\x43reateTemperatureVolumetric\x12O.ansys.api.discovery.v0.conditions.conditionsthermal.TemperatureCreationRequest\x1aP.ansys.api.discovery.v0.conditions.conditionsthermal.TemperatureCreationResponse\x12\xbd\x01\n\x18\x43reateTemperatureSurface\x12O.ansys.api.discovery.v0.conditions.conditionsthermal.TemperatureCreationRequest\x1aP.ansys.api.discovery.v0.conditions.conditionsthermal.TemperatureCreationResponse\x12z\n\x19\x43hangeTemperatureLocation\x12\x35.ansys.api.discovery.v0.ChangeLocationExtendedRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeTemperatureMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb0\x01\n\x0f\x43reateInsulated\x12M.ansys.api.discovery.v0.conditions.conditionsthermal.InsulatedCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsthermal.InsulatedCreationResponse\x12p\n\x17\x43hangeInsulatedLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb3\x01\n\x10\x43reateConvection\x12N.ansys.api.discovery.v0.conditions.conditionsthermal.ConvectionCreationRequest\x1aO.ansys.api.discovery.v0.conditions.conditionsthermal.ConvectionCreationResponse\x12q\n\x18\x43hangeConvectionLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeConvectionCoefficientMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeConvectionTemperatureMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB6\xaa\x02\x33\x41nsys.Api.Discovery.V0.Conditions.ConditionsThermalb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.conditionsthermal_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'\252\0023Ansys.Api.Discovery.V0.Conditions.ConditionsThermal'
|
|
25
|
+
_HEATSPECIFICATION._serialized_start=3129
|
|
26
|
+
_HEATSPECIFICATION._serialized_end=3192
|
|
27
|
+
_CHANGEHEATSPECIFICATIONREQUEST._serialized_start=150
|
|
28
|
+
_CHANGEHEATSPECIFICATIONREQUEST._serialized_end=301
|
|
29
|
+
_HEATCREATIONREQUEST._serialized_start=304
|
|
30
|
+
_HEATCREATIONREQUEST._serialized_end=440
|
|
31
|
+
_HEATTOTALCREATIONRESPONSE._serialized_start=443
|
|
32
|
+
_HEATTOTALCREATIONRESPONSE._serialized_end=638
|
|
33
|
+
_HEATVOLUMETRICDISTRIBUTEDCREATIONRESPONSE._serialized_start=641
|
|
34
|
+
_HEATVOLUMETRICDISTRIBUTEDCREATIONRESPONSE._serialized_end=856
|
|
35
|
+
_HEATSURFACEDISTRIBUTEDCREATIONRESPONSE._serialized_start=859
|
|
36
|
+
_HEATSURFACEDISTRIBUTEDCREATIONRESPONSE._serialized_end=1069
|
|
37
|
+
_TEMPERATURECREATIONREQUEST._serialized_start=1072
|
|
38
|
+
_TEMPERATURECREATIONREQUEST._serialized_end=1222
|
|
39
|
+
_TEMPERATURECREATIONRESPONSE._serialized_start=1225
|
|
40
|
+
_TEMPERATURECREATIONRESPONSE._serialized_end=1424
|
|
41
|
+
_INSULATEDCREATIONREQUEST._serialized_start=1426
|
|
42
|
+
_INSULATEDCREATIONREQUEST._serialized_end=1519
|
|
43
|
+
_INSULATEDCREATIONRESPONSE._serialized_start=1522
|
|
44
|
+
_INSULATEDCREATIONRESPONSE._serialized_end=1717
|
|
45
|
+
_CONVECTIONCREATIONREQUEST._serialized_start=1720
|
|
46
|
+
_CONVECTIONCREATIONREQUEST._serialized_end=1924
|
|
47
|
+
_CONVECTIONCREATIONRESPONSE._serialized_start=1927
|
|
48
|
+
_CONVECTIONCREATIONRESPONSE._serialized_end=2124
|
|
49
|
+
_HEATTOTALDEFINITION._serialized_start=2127
|
|
50
|
+
_HEATTOTALDEFINITION._serialized_end=2287
|
|
51
|
+
_HEATPERAREADEFINITION._serialized_start=2290
|
|
52
|
+
_HEATPERAREADEFINITION._serialized_end=2459
|
|
53
|
+
_HEATPERVOLUMEDEFINITION._serialized_start=2462
|
|
54
|
+
_HEATPERVOLUMEDEFINITION._serialized_end=2635
|
|
55
|
+
_TEMPERATUREDEFINITION._serialized_start=2638
|
|
56
|
+
_TEMPERATUREDEFINITION._serialized_end=2799
|
|
57
|
+
_INSULATEDDEFINITION._serialized_start=2801
|
|
58
|
+
_INSULATEDDEFINITION._serialized_end=2907
|
|
59
|
+
_CONVECTIONDEFINITION._serialized_start=2910
|
|
60
|
+
_CONVECTIONDEFINITION._serialized_end=3127
|
|
61
|
+
_CONDITIONSTHERMAL._serialized_start=3195
|
|
62
|
+
_CONDITIONSTHERMAL._serialized_end=6059
|
|
63
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import ansys.api.discovery.v0.discoverymodels_pb2
|
|
6
|
+
import builtins
|
|
7
|
+
import google.protobuf.descriptor
|
|
8
|
+
import google.protobuf.internal.containers
|
|
9
|
+
import google.protobuf.internal.enum_type_wrapper
|
|
10
|
+
import google.protobuf.message
|
|
11
|
+
import typing
|
|
12
|
+
import typing_extensions
|
|
13
|
+
|
|
14
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
|
|
15
|
+
|
|
16
|
+
class _HeatSpecification:
|
|
17
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
18
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
19
|
+
class _HeatSpecificationEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_HeatSpecification.ValueType], builtins.type):
|
|
20
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
21
|
+
TOTALHEAT: HeatSpecification.ValueType = ... # 0
|
|
22
|
+
HEATPERUNITVOLUMEORAREA: HeatSpecification.ValueType = ... # 1
|
|
23
|
+
class HeatSpecification(_HeatSpecification, metaclass=_HeatSpecificationEnumTypeWrapper):
|
|
24
|
+
"""Thermal enumerations
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
TOTALHEAT: HeatSpecification.ValueType = ... # 0
|
|
30
|
+
HEATPERUNITVOLUMEORAREA: HeatSpecification.ValueType = ... # 1
|
|
31
|
+
global___HeatSpecification = HeatSpecification
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class ChangeHeatSpecificationRequest(google.protobuf.message.Message):
|
|
35
|
+
"""Command requests and responses
|
|
36
|
+
|
|
37
|
+
Heat
|
|
38
|
+
"""
|
|
39
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
40
|
+
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
41
|
+
HEAT_SPECIFICATION_FIELD_NUMBER: builtins.int
|
|
42
|
+
object_id: typing.Text = ...
|
|
43
|
+
heat_specification: global___HeatSpecification.ValueType = ...
|
|
44
|
+
def __init__(self,
|
|
45
|
+
*,
|
|
46
|
+
object_id : typing.Text = ...,
|
|
47
|
+
heat_specification : global___HeatSpecification.ValueType = ...,
|
|
48
|
+
) -> None: ...
|
|
49
|
+
def ClearField(self, field_name: typing_extensions.Literal["heat_specification",b"heat_specification","object_id",b"object_id"]) -> None: ...
|
|
50
|
+
global___ChangeHeatSpecificationRequest = ChangeHeatSpecificationRequest
|
|
51
|
+
|
|
52
|
+
class HeatCreationRequest(google.protobuf.message.Message):
|
|
53
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
54
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
55
|
+
HEAT_FIELD_NUMBER: builtins.int
|
|
56
|
+
@property
|
|
57
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
58
|
+
@property
|
|
59
|
+
def heat(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
60
|
+
def __init__(self,
|
|
61
|
+
*,
|
|
62
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
63
|
+
heat : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
64
|
+
) -> None: ...
|
|
65
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","heat",b"heat"]) -> builtins.bool: ...
|
|
66
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","heat",b"heat"]) -> None: ...
|
|
67
|
+
global___HeatCreationRequest = HeatCreationRequest
|
|
68
|
+
|
|
69
|
+
class HeatTotalCreationResponse(google.protobuf.message.Message):
|
|
70
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
71
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
72
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
73
|
+
@property
|
|
74
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
75
|
+
@property
|
|
76
|
+
def condition_data(self) -> global___HeatTotalDefinition: ...
|
|
77
|
+
def __init__(self,
|
|
78
|
+
*,
|
|
79
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
80
|
+
condition_data : typing.Optional[global___HeatTotalDefinition] = ...,
|
|
81
|
+
) -> None: ...
|
|
82
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
83
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
84
|
+
global___HeatTotalCreationResponse = HeatTotalCreationResponse
|
|
85
|
+
|
|
86
|
+
class HeatVolumetricDistributedCreationResponse(google.protobuf.message.Message):
|
|
87
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
88
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
89
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
90
|
+
@property
|
|
91
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
92
|
+
@property
|
|
93
|
+
def condition_data(self) -> global___HeatPerVolumeDefinition: ...
|
|
94
|
+
def __init__(self,
|
|
95
|
+
*,
|
|
96
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
97
|
+
condition_data : typing.Optional[global___HeatPerVolumeDefinition] = ...,
|
|
98
|
+
) -> None: ...
|
|
99
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
100
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
101
|
+
global___HeatVolumetricDistributedCreationResponse = HeatVolumetricDistributedCreationResponse
|
|
102
|
+
|
|
103
|
+
class HeatSurfaceDistributedCreationResponse(google.protobuf.message.Message):
|
|
104
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
105
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
106
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
107
|
+
@property
|
|
108
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
109
|
+
@property
|
|
110
|
+
def condition_data(self) -> global___HeatPerAreaDefinition: ...
|
|
111
|
+
def __init__(self,
|
|
112
|
+
*,
|
|
113
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
114
|
+
condition_data : typing.Optional[global___HeatPerAreaDefinition] = ...,
|
|
115
|
+
) -> None: ...
|
|
116
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
117
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
118
|
+
global___HeatSurfaceDistributedCreationResponse = HeatSurfaceDistributedCreationResponse
|
|
119
|
+
|
|
120
|
+
class TemperatureCreationRequest(google.protobuf.message.Message):
|
|
121
|
+
"""Temperature"""
|
|
122
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
123
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
124
|
+
TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
125
|
+
@property
|
|
126
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
127
|
+
@property
|
|
128
|
+
def temperature(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
129
|
+
def __init__(self,
|
|
130
|
+
*,
|
|
131
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
132
|
+
temperature : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
133
|
+
) -> None: ...
|
|
134
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","temperature",b"temperature"]) -> builtins.bool: ...
|
|
135
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data","temperature",b"temperature"]) -> None: ...
|
|
136
|
+
global___TemperatureCreationRequest = TemperatureCreationRequest
|
|
137
|
+
|
|
138
|
+
class TemperatureCreationResponse(google.protobuf.message.Message):
|
|
139
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
140
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
141
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
142
|
+
@property
|
|
143
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
144
|
+
@property
|
|
145
|
+
def condition_data(self) -> global___TemperatureDefinition: ...
|
|
146
|
+
def __init__(self,
|
|
147
|
+
*,
|
|
148
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
149
|
+
condition_data : typing.Optional[global___TemperatureDefinition] = ...,
|
|
150
|
+
) -> None: ...
|
|
151
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
152
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
153
|
+
global___TemperatureCreationResponse = TemperatureCreationResponse
|
|
154
|
+
|
|
155
|
+
class InsulatedCreationRequest(google.protobuf.message.Message):
|
|
156
|
+
"""Insulated"""
|
|
157
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
158
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
159
|
+
@property
|
|
160
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
161
|
+
def __init__(self,
|
|
162
|
+
*,
|
|
163
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
164
|
+
) -> None: ...
|
|
165
|
+
def HasField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data"]) -> builtins.bool: ...
|
|
166
|
+
def ClearField(self, field_name: typing_extensions.Literal["creation_data",b"creation_data"]) -> None: ...
|
|
167
|
+
global___InsulatedCreationRequest = InsulatedCreationRequest
|
|
168
|
+
|
|
169
|
+
class InsulatedCreationResponse(google.protobuf.message.Message):
|
|
170
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
171
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
172
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
173
|
+
@property
|
|
174
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
175
|
+
@property
|
|
176
|
+
def condition_data(self) -> global___InsulatedDefinition: ...
|
|
177
|
+
def __init__(self,
|
|
178
|
+
*,
|
|
179
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
180
|
+
condition_data : typing.Optional[global___InsulatedDefinition] = ...,
|
|
181
|
+
) -> None: ...
|
|
182
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
183
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
184
|
+
global___InsulatedCreationResponse = InsulatedCreationResponse
|
|
185
|
+
|
|
186
|
+
class ConvectionCreationRequest(google.protobuf.message.Message):
|
|
187
|
+
"""Convection"""
|
|
188
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
189
|
+
CREATION_DATA_FIELD_NUMBER: builtins.int
|
|
190
|
+
COEFFICIENT_FIELD_NUMBER: builtins.int
|
|
191
|
+
TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
192
|
+
@property
|
|
193
|
+
def creation_data(self) -> ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData: ...
|
|
194
|
+
@property
|
|
195
|
+
def coefficient(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
196
|
+
@property
|
|
197
|
+
def temperature(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
198
|
+
def __init__(self,
|
|
199
|
+
*,
|
|
200
|
+
creation_data : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.ScopedCreationData] = ...,
|
|
201
|
+
coefficient : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
202
|
+
temperature : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
203
|
+
) -> None: ...
|
|
204
|
+
def HasField(self, field_name: typing_extensions.Literal["coefficient",b"coefficient","creation_data",b"creation_data","temperature",b"temperature"]) -> builtins.bool: ...
|
|
205
|
+
def ClearField(self, field_name: typing_extensions.Literal["coefficient",b"coefficient","creation_data",b"creation_data","temperature",b"temperature"]) -> None: ...
|
|
206
|
+
global___ConvectionCreationRequest = ConvectionCreationRequest
|
|
207
|
+
|
|
208
|
+
class ConvectionCreationResponse(google.protobuf.message.Message):
|
|
209
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
210
|
+
CONDITION_RESPONSE_FIELD_NUMBER: builtins.int
|
|
211
|
+
CONDITION_DATA_FIELD_NUMBER: builtins.int
|
|
212
|
+
@property
|
|
213
|
+
def condition_response(self) -> ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse: ...
|
|
214
|
+
@property
|
|
215
|
+
def condition_data(self) -> global___ConvectionDefinition: ...
|
|
216
|
+
def __init__(self,
|
|
217
|
+
*,
|
|
218
|
+
condition_response : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.CreationResponse] = ...,
|
|
219
|
+
condition_data : typing.Optional[global___ConvectionDefinition] = ...,
|
|
220
|
+
) -> None: ...
|
|
221
|
+
def HasField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> builtins.bool: ...
|
|
222
|
+
def ClearField(self, field_name: typing_extensions.Literal["condition_data",b"condition_data","condition_response",b"condition_response"]) -> None: ...
|
|
223
|
+
global___ConvectionCreationResponse = ConvectionCreationResponse
|
|
224
|
+
|
|
225
|
+
class HeatTotalDefinition(google.protobuf.message.Message):
|
|
226
|
+
"""Thermal condition definitions
|
|
227
|
+
|
|
228
|
+
"""
|
|
229
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
230
|
+
ID_FIELD_NUMBER: builtins.int
|
|
231
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
232
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
233
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
234
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
235
|
+
TOTAL_HEAT_FIELD_NUMBER: builtins.int
|
|
236
|
+
id: typing.Text = ...
|
|
237
|
+
parent_id: typing.Text = ...
|
|
238
|
+
label: typing.Text = ...
|
|
239
|
+
@property
|
|
240
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
241
|
+
suppressed: builtins.bool = ...
|
|
242
|
+
@property
|
|
243
|
+
def total_heat(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
244
|
+
def __init__(self,
|
|
245
|
+
*,
|
|
246
|
+
id : typing.Text = ...,
|
|
247
|
+
parent_id : typing.Text = ...,
|
|
248
|
+
label : typing.Text = ...,
|
|
249
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
250
|
+
suppressed : builtins.bool = ...,
|
|
251
|
+
total_heat : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
252
|
+
) -> None: ...
|
|
253
|
+
def HasField(self, field_name: typing_extensions.Literal["total_heat",b"total_heat"]) -> builtins.bool: ...
|
|
254
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed","total_heat",b"total_heat"]) -> None: ...
|
|
255
|
+
global___HeatTotalDefinition = HeatTotalDefinition
|
|
256
|
+
|
|
257
|
+
class HeatPerAreaDefinition(google.protobuf.message.Message):
|
|
258
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
259
|
+
ID_FIELD_NUMBER: builtins.int
|
|
260
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
261
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
262
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
263
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
264
|
+
HEAT_PER_UNITAREA_FIELD_NUMBER: builtins.int
|
|
265
|
+
id: typing.Text = ...
|
|
266
|
+
parent_id: typing.Text = ...
|
|
267
|
+
label: typing.Text = ...
|
|
268
|
+
@property
|
|
269
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
270
|
+
suppressed: builtins.bool = ...
|
|
271
|
+
@property
|
|
272
|
+
def heat_per_unitarea(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
273
|
+
def __init__(self,
|
|
274
|
+
*,
|
|
275
|
+
id : typing.Text = ...,
|
|
276
|
+
parent_id : typing.Text = ...,
|
|
277
|
+
label : typing.Text = ...,
|
|
278
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
279
|
+
suppressed : builtins.bool = ...,
|
|
280
|
+
heat_per_unitarea : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
281
|
+
) -> None: ...
|
|
282
|
+
def HasField(self, field_name: typing_extensions.Literal["heat_per_unitarea",b"heat_per_unitarea"]) -> builtins.bool: ...
|
|
283
|
+
def ClearField(self, field_name: typing_extensions.Literal["heat_per_unitarea",b"heat_per_unitarea","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
284
|
+
global___HeatPerAreaDefinition = HeatPerAreaDefinition
|
|
285
|
+
|
|
286
|
+
class HeatPerVolumeDefinition(google.protobuf.message.Message):
|
|
287
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
288
|
+
ID_FIELD_NUMBER: builtins.int
|
|
289
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
290
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
291
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
292
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
293
|
+
HEAT_PER_UNITVOLUME_FIELD_NUMBER: builtins.int
|
|
294
|
+
id: typing.Text = ...
|
|
295
|
+
parent_id: typing.Text = ...
|
|
296
|
+
label: typing.Text = ...
|
|
297
|
+
@property
|
|
298
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
299
|
+
suppressed: builtins.bool = ...
|
|
300
|
+
@property
|
|
301
|
+
def heat_per_unitvolume(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
302
|
+
def __init__(self,
|
|
303
|
+
*,
|
|
304
|
+
id : typing.Text = ...,
|
|
305
|
+
parent_id : typing.Text = ...,
|
|
306
|
+
label : typing.Text = ...,
|
|
307
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
308
|
+
suppressed : builtins.bool = ...,
|
|
309
|
+
heat_per_unitvolume : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
310
|
+
) -> None: ...
|
|
311
|
+
def HasField(self, field_name: typing_extensions.Literal["heat_per_unitvolume",b"heat_per_unitvolume"]) -> builtins.bool: ...
|
|
312
|
+
def ClearField(self, field_name: typing_extensions.Literal["heat_per_unitvolume",b"heat_per_unitvolume","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
313
|
+
global___HeatPerVolumeDefinition = HeatPerVolumeDefinition
|
|
314
|
+
|
|
315
|
+
class TemperatureDefinition(google.protobuf.message.Message):
|
|
316
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
317
|
+
ID_FIELD_NUMBER: builtins.int
|
|
318
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
319
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
320
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
321
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
322
|
+
MAGNITUDE_FIELD_NUMBER: builtins.int
|
|
323
|
+
id: typing.Text = ...
|
|
324
|
+
parent_id: typing.Text = ...
|
|
325
|
+
label: typing.Text = ...
|
|
326
|
+
@property
|
|
327
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
328
|
+
suppressed: builtins.bool = ...
|
|
329
|
+
@property
|
|
330
|
+
def magnitude(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
331
|
+
def __init__(self,
|
|
332
|
+
*,
|
|
333
|
+
id : typing.Text = ...,
|
|
334
|
+
parent_id : typing.Text = ...,
|
|
335
|
+
label : typing.Text = ...,
|
|
336
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
337
|
+
suppressed : builtins.bool = ...,
|
|
338
|
+
magnitude : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
339
|
+
) -> None: ...
|
|
340
|
+
def HasField(self, field_name: typing_extensions.Literal["magnitude",b"magnitude"]) -> builtins.bool: ...
|
|
341
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","magnitude",b"magnitude","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
342
|
+
global___TemperatureDefinition = TemperatureDefinition
|
|
343
|
+
|
|
344
|
+
class InsulatedDefinition(google.protobuf.message.Message):
|
|
345
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
346
|
+
ID_FIELD_NUMBER: builtins.int
|
|
347
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
348
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
349
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
350
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
351
|
+
id: typing.Text = ...
|
|
352
|
+
parent_id: typing.Text = ...
|
|
353
|
+
label: typing.Text = ...
|
|
354
|
+
@property
|
|
355
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
356
|
+
suppressed: builtins.bool = ...
|
|
357
|
+
def __init__(self,
|
|
358
|
+
*,
|
|
359
|
+
id : typing.Text = ...,
|
|
360
|
+
parent_id : typing.Text = ...,
|
|
361
|
+
label : typing.Text = ...,
|
|
362
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
363
|
+
suppressed : builtins.bool = ...,
|
|
364
|
+
) -> None: ...
|
|
365
|
+
def ClearField(self, field_name: typing_extensions.Literal["id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed"]) -> None: ...
|
|
366
|
+
global___InsulatedDefinition = InsulatedDefinition
|
|
367
|
+
|
|
368
|
+
class ConvectionDefinition(google.protobuf.message.Message):
|
|
369
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
370
|
+
ID_FIELD_NUMBER: builtins.int
|
|
371
|
+
PARENT_ID_FIELD_NUMBER: builtins.int
|
|
372
|
+
LABEL_FIELD_NUMBER: builtins.int
|
|
373
|
+
LOCATIONS_FIELD_NUMBER: builtins.int
|
|
374
|
+
SUPPRESSED_FIELD_NUMBER: builtins.int
|
|
375
|
+
COEFFICIENT_FIELD_NUMBER: builtins.int
|
|
376
|
+
TEMPERATURE_FIELD_NUMBER: builtins.int
|
|
377
|
+
id: typing.Text = ...
|
|
378
|
+
parent_id: typing.Text = ...
|
|
379
|
+
label: typing.Text = ...
|
|
380
|
+
@property
|
|
381
|
+
def locations(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
382
|
+
suppressed: builtins.bool = ...
|
|
383
|
+
@property
|
|
384
|
+
def coefficient(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
385
|
+
@property
|
|
386
|
+
def temperature(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Quantity: ...
|
|
387
|
+
def __init__(self,
|
|
388
|
+
*,
|
|
389
|
+
id : typing.Text = ...,
|
|
390
|
+
parent_id : typing.Text = ...,
|
|
391
|
+
label : typing.Text = ...,
|
|
392
|
+
locations : typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
393
|
+
suppressed : builtins.bool = ...,
|
|
394
|
+
coefficient : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
395
|
+
temperature : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Quantity] = ...,
|
|
396
|
+
) -> None: ...
|
|
397
|
+
def HasField(self, field_name: typing_extensions.Literal["coefficient",b"coefficient","temperature",b"temperature"]) -> builtins.bool: ...
|
|
398
|
+
def ClearField(self, field_name: typing_extensions.Literal["coefficient",b"coefficient","id",b"id","label",b"label","locations",b"locations","parent_id",b"parent_id","suppressed",b"suppressed","temperature",b"temperature"]) -> None: ...
|
|
399
|
+
global___ConvectionDefinition = ConvectionDefinition
|