ansys-api-discovery 0.5.2__py3-none-any.whl → 0.6.0__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 (48) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/conditions.proto +11 -46
  3. ansys/api/discovery/v0/conditions_pb2.py +12 -70
  4. ansys/api/discovery/v0/conditions_pb2.pyi +16 -88
  5. ansys/api/discovery/v0/conditions_pb2_grpc.py +40 -139
  6. ansys/api/discovery/v0/conditions_pb2_grpc.pyi +20 -50
  7. ansys/api/discovery/v0/conditionsfluid.proto +246 -0
  8. ansys/api/discovery/v0/conditionsfluid_pb2.py +85 -0
  9. ansys/api/discovery/v0/conditionsfluid_pb2.pyi +590 -0
  10. ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py +662 -0
  11. ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi +208 -0
  12. ansys/api/discovery/v0/conditionsstructural.proto +407 -0
  13. ansys/api/discovery/v0/conditionsstructural_pb2.py +113 -0
  14. ansys/api/discovery/v0/conditionsstructural_pb2.pyi +839 -0
  15. ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +2746 -0
  16. ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +854 -0
  17. ansys/api/discovery/v0/conditionsthermal.proto +179 -0
  18. ansys/api/discovery/v0/conditionsthermal_pb2.py +63 -0
  19. ansys/api/discovery/v0/conditionsthermal_pb2.pyi +399 -0
  20. ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py +665 -0
  21. ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi +217 -0
  22. ansys/api/discovery/v0/definedvariationstable.proto +12 -0
  23. ansys/api/discovery/v0/definedvariationstable_pb2.py +12 -116
  24. ansys/api/discovery/v0/definedvariationstable_pb2.pyi +16 -0
  25. ansys/api/discovery/v0/definedvariationstable_pb2_grpc.py +68 -0
  26. ansys/api/discovery/v0/definedvariationstable_pb2_grpc.pyi +26 -0
  27. ansys/api/discovery/v0/discoverymodels.proto +91 -25
  28. ansys/api/discovery/v0/discoverymodels_pb2.py +59 -211
  29. ansys/api/discovery/v0/discoverymodels_pb2.pyi +264 -50
  30. ansys/api/discovery/v0/historytrackparameters_pb2.py +3 -50
  31. ansys/api/discovery/v0/messaging.proto +0 -2
  32. ansys/api/discovery/v0/messaging_pb2.py +8 -20
  33. ansys/api/discovery/v0/scriptparameters_pb2.py +3 -37
  34. ansys/api/discovery/v0/simulations.proto +0 -1
  35. ansys/api/discovery/v0/simulations_pb2.py +8 -19
  36. ansys/api/discovery/v0/solution.proto +18 -2
  37. ansys/api/discovery/v0/solution_pb2.py +18 -40
  38. ansys/api/discovery/v0/solution_pb2.pyi +48 -0
  39. ansys/api/discovery/v0/solution_pb2_grpc.py +33 -0
  40. ansys/api/discovery/v0/solution_pb2_grpc.pyi +10 -0
  41. ansys/api/discovery/v0/units_pb2.py +3 -1232
  42. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/METADATA +8 -8
  43. ansys_api_discovery-0.6.0.dist-info/RECORD +70 -0
  44. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/WHEEL +1 -1
  45. ansys_api_discovery-0.5.2.dist-info/RECORD +0 -55
  46. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/LICENSE +0 -0
  47. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/entry_points.txt +0 -0
  48. {ansys_api_discovery-0.5.2.dist-info → ansys_api_discovery-0.6.0.dist-info}/top_level.txt +0 -0
@@ -3,6 +3,7 @@ syntax = "proto3";
3
3
  package ansys.api.discovery.v0;
4
4
 
5
5
  import "ansys/api/dbu/v0/dbumodels.proto";
6
+ import "ansys/api/geometry/v0/models.proto";
6
7
 
7
8
  option csharp_namespace = "Ansys.Api.Discovery.V0";
8
9
 
@@ -91,45 +92,109 @@ message Simulation {
91
92
  string id = 1;
92
93
  string label = 2;
93
94
  }
94
- //
95
- // CONDITIONS PROTOS
96
- //
97
95
 
98
- // Heat
99
- //
96
+ // General Requests
97
+
98
+ message ChangeLocationRequest{
99
+ string object_id = 1;
100
+ repeated string locations = 2;
101
+ }
102
+
103
+ //enables the type of location to be changed as well as the scope. Only supported for specific condition types
104
+ message ChangeLocationExtendedRequest
105
+ {
106
+ ChangeLocationRequest change_location_request = 1;
107
+ LocationSpecification location_specification = 2;
108
+ }
109
+
110
+ message ChangeQuantityRequest{
111
+ string object_id = 1;
112
+ Quantity quantity = 2;
113
+ }
114
+
115
+ message ChangeBooleanRequest{
116
+ string object_id = 1;
117
+ bool boolean_value = 2;
118
+ }
119
+
120
+ message ChangeDirectionRequest{
121
+ string object_id = 1;
122
+ ansys.api.geometry.v0.Direction direction = 2;
123
+ }
124
+
125
+ message ChangeCommandRequest{
126
+ string object_id = 1;
127
+ }
128
+
129
+ message ScopedConditionCreationData{
130
+ optional string object_id = 1;
131
+ string simulation_id = 2;
132
+ repeated string locations = 3;
133
+ }
134
+
135
+ // General Responses
100
136
 
101
- // Defines how heat is specified
102
- enum HeatSpecification {
103
- TOTALHEAT = 0;
104
- HEATPERUNITVOLUMEORAREA = 1;
137
+ message ConditionChangedResponse{
138
+ bool success = 1;
139
+ string message = 2;
105
140
  }
106
141
 
107
- // Defines whether heat is applied to body or face
142
+ message ConditionCreationResponse{
143
+ bool success = 1;
144
+ string message = 2;
145
+ }
146
+
147
+ message MessageResponse{
148
+ string message = 1;
149
+ }
150
+
151
+ // Defines the type of location, some conditions support application to either bodies and faces
108
152
  enum LocationSpecification {
109
153
  FACELOCATIONS = 0;
110
154
  BODYLOCATIONS = 1;
111
155
  }
112
156
 
113
- // Heat definition
114
- message Heat {
115
- string id = 1;
116
- string parentid = 2;
117
- string label = 3;
118
- repeated string locations = 4;
119
- bool suppressed = 5;
120
- HeatSpecification heat_specifcation = 6;
121
- Quantity total_heat = 7;
122
- Quantity heat_per_unitvolume = 8;
123
- Quantity heat_per_unitarea = 9;
124
- }
125
-
157
+ // Quantity Data
126
158
  message Quantity {
127
- QuantityType quantity_type = 1;
159
+ QuantityType quantity_type = 1; //not required in cases where the usage context defines the quantity type
128
160
  double quantity_value = 2;
129
161
  int32 unit = 3;
130
- string unit_abbreviation = 4;
162
+ string unit_abbreviation = 4; //not required in cases where the usage context defines the abbreviation
163
+ string as_string = 5; //Optional, but if not empty, all other properties will be defaulted from it.
164
+ }
165
+
166
+ message QuantityVector {
167
+ Quantity x = 1;
168
+ Quantity y = 2;
169
+ Quantity z = 3;
131
170
  }
132
171
 
172
+ message OptionalVector {
173
+ bool is_defined = 1;
174
+ QuantityVector vector = 2;
175
+ }
176
+
177
+ message OptionalQuantity{
178
+ bool is_defined = 1;
179
+ Quantity quantity = 2;
180
+ }
181
+
182
+ message TensorOfOptionalQuantities{
183
+ OptionalQuantity dx = 1;
184
+ OptionalQuantity dy = 2;
185
+ OptionalQuantity dz = 3;
186
+ OptionalQuantity rx = 4;
187
+ OptionalQuantity ry = 5;
188
+ OptionalQuantity rz = 6;
189
+ }
190
+
191
+ message VectorOfOptionalQuantities{
192
+ OptionalQuantity x = 1;
193
+ OptionalQuantity y = 2;
194
+ OptionalQuantity z = 3;
195
+ }
196
+
197
+
133
198
  // Represents the quantity type for a physics parameter.
134
199
  enum QuantityType {
135
200
  QUANTITY_TYPE_ACCELERATION=0;
@@ -213,4 +278,5 @@ enum QuantityType {
213
278
  QUANTITY_TYPE_VOLUME_PER_LENGTH=78;
214
279
  QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA=79;
215
280
  QUANTITY_TYPE_NONE=80;
281
+ QUANTITY_TYPE_UNKNOWN = 81;
216
282
  }
@@ -2,11 +2,9 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # source: ansys/api/discovery/v0/discoverymodels.proto
4
4
  """Generated protocol buffer code."""
5
- from google.protobuf.internal import enum_type_wrapper
5
+ from google.protobuf.internal import builder as _builder
6
6
  from google.protobuf import descriptor as _descriptor
7
7
  from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import message as _message
9
- from google.protobuf import reflection as _reflection
10
8
  from google.protobuf import symbol_database as _symbol_database
11
9
  # @@protoc_insertion_point(imports)
12
10
 
@@ -14,219 +12,69 @@ _sym_db = _symbol_database.Default()
14
12
 
15
13
 
16
14
  from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_dbumodels__pb2
15
+ from ansys.api.geometry.v0 import models_pb2 as ansys_dot_api_dot_geometry_dot_v0_dot_models__pb2
17
16
 
18
17
 
19
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,ansys/api/discovery/v0/discoverymodels.proto\x12\x16\x61nsys.api.discovery.v0\x1a ansys/api/dbu/v0/dbumodels.proto\"\xa8\x01\n\tVariation\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07starred\x18\x03 \x01(\x08\x12\x36\n\x06inputs\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\x12\x38\n\x07outputs\x18\x05 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"|\n\x0bInputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x44\n\x14parameter_variations\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\"~\n\x0cOutputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x45\n\x14parameter_variations\x18\x04 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"\x83\x01\n\x15HistoryTrackParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\x95\x02\n\x0eInputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\x12>\n\ninput_type\x18\x08 \x01(\x0e\x32*.ansys.api.discovery.v0.InputParameterType\x12\x18\n\x10parent_object_id\x18\t \x01(\t\"\xbc\x01\n\x0fOutputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\"}\n\x0fScriptParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\'\n\nSimulation\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\"\xd2\x02\n\x04Heat\x12\n\n\x02id\x18\x01 \x01(\t\x12\x10\n\x08parentid\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\x44\n\x11heat_specifcation\x18\x06 \x01(\x0e\x32).ansys.api.discovery.v0.HeatSpecification\x12\x34\n\ntotal_heat\x18\x07 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12=\n\x13heat_per_unitvolume\x18\x08 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12;\n\x11heat_per_unitarea\x18\t \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\x88\x01\n\x08Quantity\x12;\n\rquantity_type\x18\x01 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x02 \x01(\x01\x12\x0c\n\x04unit\x18\x03 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x04 \x01(\t*X\n\x12InputParameterType\x12\x0b\n\x07PHYSICS\x10\x00\x12\x15\n\x11\x44RIVING_DIMENSION\x10\x01\x12\x11\n\rHISTORY_TRACK\x10\x02\x12\x0b\n\x07UNKNOWN\x10\x03*?\n\x11HeatSpecification\x12\r\n\tTOTALHEAT\x10\x00\x12\x1b\n\x17HEATPERUNITVOLUMEORAREA\x10\x01*=\n\x15LocationSpecification\x12\x11\n\rFACELOCATIONS\x10\x00\x12\x11\n\rBODYLOCATIONS\x10\x01*\x9a\x16\n\x0cQuantityType\x12\x1e\n\x1aQUANTITY_TYPE_ACCELERATION\x10\x00\x12\x17\n\x13QUANTITY_TYPE_ANGLE\x10\x01\x12\x16\n\x12QUANTITY_TYPE_AREA\x10\x02\x12\x1e\n\x1aQUANTITY_TYPE_AREA_DENSITY\x10\x03\x12(\n$QUANTITY_TYPE_AREA_MOMENT_OF_INERTIA\x10\x04\x12\x1d\n\x19QUANTITY_TYPE_CAPACITANCE\x10\x05\x12\x32\n.QUANTITY_TYPE_COEFFICIENT_OF_THERMAL_EXPANSION\x10\x06\x12\x19\n\x15QUANTITY_TYPE_DENSITY\x10\x07\x12#\n\x1fQUANTITY_TYPE_DYNAMIC_VISCOSITY\x10\x08\x12%\n!QUANTITY_TYPE_ELECTRIC_ADMITTANCE\x10\t\x12!\n\x1dQUANTITY_TYPE_ELECTRIC_CHARGE\x10\n\x12)\n%QUANTITY_TYPE_ELECTRIC_CHARGE_DENSITY\x10\x0b\x12&\n\"QUANTITY_TYPE_ELECTRIC_CONDUCTANCE\x10\x0c\x12\'\n#QUANTITY_TYPE_ELECTRIC_CONDUCTIVITY\x10\r\x12\"\n\x1eQUANTITY_TYPE_ELECTRIC_CURRENT\x10\x0e\x12*\n&QUANTITY_TYPE_ELECTRIC_CURRENT_DENSITY\x10\x0f\x12+\n\'QUANTITY_TYPE_ELECTRIC_CURRENT_GRADIENT\x10\x10\x12 \n\x1cQUANTITY_TYPE_ELECTRIC_FIELD\x10\x11\x12%\n!QUANTITY_TYPE_ELECTRIC_INDUCTANCE\x10\x12\x12$\n QUANTITY_TYPE_ELECTRIC_POTENTIAL\x10\x13\x12\'\n#QUANTITY_TYPE_ELECTRIC_POTENTIAL_AC\x10\x14\x12\x30\n,QUANTITY_TYPE_ELECTRIC_POTENTIAL_CHANGE_RATE\x10\x15\x12\'\n#QUANTITY_TYPE_ELECTRIC_POTENTIAL_DC\x10\x16\x12%\n!QUANTITY_TYPE_ELECTRIC_RESISTANCE\x10\x17\x12&\n\"QUANTITY_TYPE_ELECTRIC_RESISTIVITY\x10\x18\x12\x31\n-QUANTITY_TYPE_ELECTRIC_SURFACE_CHARGE_DENSITY\x10\x19\x12\x18\n\x14QUANTITY_TYPE_ENERGY\x10\x1a\x12\x19\n\x15QUANTITY_TYPE_ENTROPY\x10\x1b\x12\x17\n\x13QUANTITY_TYPE_FORCE\x10\x1c\x12#\n\x1fQUANTITY_TYPE_FORCE_CHANGE_RATE\x10\x1d\x12\"\n\x1eQUANTITY_TYPE_FORCE_PER_LENGTH\x10\x1e\x12\x1b\n\x17QUANTITY_TYPE_FREQUENCY\x10\x1f\x12\x1b\n\x17QUANTITY_TYPE_HEAT_FLUX\x10 \x12+\n\'QUANTITY_TYPE_HEAT_TRANSFER_COEFFICIENT\x10!\x12\x1e\n\x1aQUANTITY_TYPE_INVERSE_AREA\x10\"\x12 \n\x1cQUANTITY_TYPE_INVERSE_LENGTH\x10#\x12%\n!QUANTITY_TYPE_KINEMATIC_VISCOSITY\x10$\x12\x18\n\x14QUANTITY_TYPE_LENGTH\x10%\x12 \n\x1cQUANTITY_TYPE_MAGNETIC_FIELD\x10&\x12\x16\n\x12QUANTITY_TYPE_MASS\x10\'\x12$\n QUANTITY_TYPE_MASS_CONCENTRATION\x10(\x12\x1b\n\x17QUANTITY_TYPE_MASS_FLOW\x10)\x12\x1b\n\x17QUANTITY_TYPE_MASS_FLUX\x10*\x12\x1f\n\x1bQUANTITY_TYPE_MASS_FRACTION\x10+\x12(\n$QUANTITY_TYPE_MASS_MOMENT_OF_INERTIA\x10,\x12\x1a\n\x16QUANTITY_TYPE_MOLARITY\x10-\x12\x1c\n\x18QUANTITY_TYPE_MOLAR_MASS\x10.\x12\x1e\n\x1aQUANTITY_TYPE_PERMEABILITY\x10/\x12\x1e\n\x1aQUANTITY_TYPE_PERMITTIVITY\x10\x30\x12\x17\n\x13QUANTITY_TYPE_POWER\x10\x31\x12\x1f\n\x1bQUANTITY_TYPE_POWER_DENSITY\x10\x32\x12\x1d\n\x19QUANTITY_TYPE_POWER_RATIO\x10\x33\x12\x1a\n\x16QUANTITY_TYPE_PRESSURE\x10\x34\x12\x17\n\x13QUANTITY_TYPE_RATIO\x10\x35\x12#\n\x1fQUANTITY_TYPE_RATIO_CHANGE_RATE\x10\x36\x12!\n\x1dQUANTITY_TYPE_REACTIVE_ENERGY\x10\x37\x12 \n\x1cQUANTITY_TYPE_REACTIVE_POWER\x10\x38\x12)\n%QUANTITY_TYPE_ROTATIONAL_ACCELERATION\x10\x39\x12\"\n\x1eQUANTITY_TYPE_ROTATIONAL_SPEED\x10:\x12&\n\"QUANTITY_TYPE_ROTATIONAL_STIFFNESS\x10;\x12\x31\n-QUANTITY_TYPE_ROTATIONAL_STIFFNESS_PER_LENGTH\x10<\x12\x1d\n\x19QUANTITY_TYPE_SOLID_ANGLE\x10=\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_ENERGY\x10>\x12\"\n\x1eQUANTITY_TYPE_SPECIFIC_ENTROPY\x10?\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_VOLUME\x10@\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_WEIGHT\x10\x41\x12\x17\n\x13QUANTITY_TYPE_SPEED\x10\x42\x12\x1d\n\x19QUANTITY_TYPE_TEMPERATURE\x10\x43\x12)\n%QUANTITY_TYPE_TEMPERATURE_CHANGE_RATE\x10\x44\x12#\n\x1fQUANTITY_TYPE_TEMPERATURE_DELTA\x10\x45\x12&\n\"QUANTITY_TYPE_THERMAL_CONDUCTIVITY\x10\x46\x12$\n QUANTITY_TYPE_THERMAL_RESISTANCE\x10G\x12\x16\n\x12QUANTITY_TYPE_TIME\x10H\x12\x18\n\x14QUANTITY_TYPE_TORQUE\x10I\x12#\n\x1fQUANTITY_TYPE_TORQUE_PER_LENGTH\x10J\x12\x18\n\x14QUANTITY_TYPE_VOLUME\x10K\x12&\n\"QUANTITY_TYPE_VOLUME_CONCENTRATION\x10L\x12\x1d\n\x19QUANTITY_TYPE_VOLUME_FLOW\x10M\x12#\n\x1fQUANTITY_TYPE_VOLUME_PER_LENGTH\x10N\x12+\n\'QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA\x10O\x12\x16\n\x12QUANTITY_TYPE_NONE\x10PB\x19\xaa\x02\x16\x41nsys.Api.Discovery.V0b\x06proto3')
20
-
21
- _INPUTPARAMETERTYPE = DESCRIPTOR.enum_types_by_name['InputParameterType']
22
- InputParameterType = enum_type_wrapper.EnumTypeWrapper(_INPUTPARAMETERTYPE)
23
- _HEATSPECIFICATION = DESCRIPTOR.enum_types_by_name['HeatSpecification']
24
- HeatSpecification = enum_type_wrapper.EnumTypeWrapper(_HEATSPECIFICATION)
25
- _LOCATIONSPECIFICATION = DESCRIPTOR.enum_types_by_name['LocationSpecification']
26
- LocationSpecification = enum_type_wrapper.EnumTypeWrapper(_LOCATIONSPECIFICATION)
27
- _QUANTITYTYPE = DESCRIPTOR.enum_types_by_name['QuantityType']
28
- QuantityType = enum_type_wrapper.EnumTypeWrapper(_QUANTITYTYPE)
29
- PHYSICS = 0
30
- DRIVING_DIMENSION = 1
31
- HISTORY_TRACK = 2
32
- UNKNOWN = 3
33
- TOTALHEAT = 0
34
- HEATPERUNITVOLUMEORAREA = 1
35
- FACELOCATIONS = 0
36
- BODYLOCATIONS = 1
37
- QUANTITY_TYPE_ACCELERATION = 0
38
- QUANTITY_TYPE_ANGLE = 1
39
- QUANTITY_TYPE_AREA = 2
40
- QUANTITY_TYPE_AREA_DENSITY = 3
41
- QUANTITY_TYPE_AREA_MOMENT_OF_INERTIA = 4
42
- QUANTITY_TYPE_CAPACITANCE = 5
43
- QUANTITY_TYPE_COEFFICIENT_OF_THERMAL_EXPANSION = 6
44
- QUANTITY_TYPE_DENSITY = 7
45
- QUANTITY_TYPE_DYNAMIC_VISCOSITY = 8
46
- QUANTITY_TYPE_ELECTRIC_ADMITTANCE = 9
47
- QUANTITY_TYPE_ELECTRIC_CHARGE = 10
48
- QUANTITY_TYPE_ELECTRIC_CHARGE_DENSITY = 11
49
- QUANTITY_TYPE_ELECTRIC_CONDUCTANCE = 12
50
- QUANTITY_TYPE_ELECTRIC_CONDUCTIVITY = 13
51
- QUANTITY_TYPE_ELECTRIC_CURRENT = 14
52
- QUANTITY_TYPE_ELECTRIC_CURRENT_DENSITY = 15
53
- QUANTITY_TYPE_ELECTRIC_CURRENT_GRADIENT = 16
54
- QUANTITY_TYPE_ELECTRIC_FIELD = 17
55
- QUANTITY_TYPE_ELECTRIC_INDUCTANCE = 18
56
- QUANTITY_TYPE_ELECTRIC_POTENTIAL = 19
57
- QUANTITY_TYPE_ELECTRIC_POTENTIAL_AC = 20
58
- QUANTITY_TYPE_ELECTRIC_POTENTIAL_CHANGE_RATE = 21
59
- QUANTITY_TYPE_ELECTRIC_POTENTIAL_DC = 22
60
- QUANTITY_TYPE_ELECTRIC_RESISTANCE = 23
61
- QUANTITY_TYPE_ELECTRIC_RESISTIVITY = 24
62
- QUANTITY_TYPE_ELECTRIC_SURFACE_CHARGE_DENSITY = 25
63
- QUANTITY_TYPE_ENERGY = 26
64
- QUANTITY_TYPE_ENTROPY = 27
65
- QUANTITY_TYPE_FORCE = 28
66
- QUANTITY_TYPE_FORCE_CHANGE_RATE = 29
67
- QUANTITY_TYPE_FORCE_PER_LENGTH = 30
68
- QUANTITY_TYPE_FREQUENCY = 31
69
- QUANTITY_TYPE_HEAT_FLUX = 32
70
- QUANTITY_TYPE_HEAT_TRANSFER_COEFFICIENT = 33
71
- QUANTITY_TYPE_INVERSE_AREA = 34
72
- QUANTITY_TYPE_INVERSE_LENGTH = 35
73
- QUANTITY_TYPE_KINEMATIC_VISCOSITY = 36
74
- QUANTITY_TYPE_LENGTH = 37
75
- QUANTITY_TYPE_MAGNETIC_FIELD = 38
76
- QUANTITY_TYPE_MASS = 39
77
- QUANTITY_TYPE_MASS_CONCENTRATION = 40
78
- QUANTITY_TYPE_MASS_FLOW = 41
79
- QUANTITY_TYPE_MASS_FLUX = 42
80
- QUANTITY_TYPE_MASS_FRACTION = 43
81
- QUANTITY_TYPE_MASS_MOMENT_OF_INERTIA = 44
82
- QUANTITY_TYPE_MOLARITY = 45
83
- QUANTITY_TYPE_MOLAR_MASS = 46
84
- QUANTITY_TYPE_PERMEABILITY = 47
85
- QUANTITY_TYPE_PERMITTIVITY = 48
86
- QUANTITY_TYPE_POWER = 49
87
- QUANTITY_TYPE_POWER_DENSITY = 50
88
- QUANTITY_TYPE_POWER_RATIO = 51
89
- QUANTITY_TYPE_PRESSURE = 52
90
- QUANTITY_TYPE_RATIO = 53
91
- QUANTITY_TYPE_RATIO_CHANGE_RATE = 54
92
- QUANTITY_TYPE_REACTIVE_ENERGY = 55
93
- QUANTITY_TYPE_REACTIVE_POWER = 56
94
- QUANTITY_TYPE_ROTATIONAL_ACCELERATION = 57
95
- QUANTITY_TYPE_ROTATIONAL_SPEED = 58
96
- QUANTITY_TYPE_ROTATIONAL_STIFFNESS = 59
97
- QUANTITY_TYPE_ROTATIONAL_STIFFNESS_PER_LENGTH = 60
98
- QUANTITY_TYPE_SOLID_ANGLE = 61
99
- QUANTITY_TYPE_SPECIFIC_ENERGY = 62
100
- QUANTITY_TYPE_SPECIFIC_ENTROPY = 63
101
- QUANTITY_TYPE_SPECIFIC_VOLUME = 64
102
- QUANTITY_TYPE_SPECIFIC_WEIGHT = 65
103
- QUANTITY_TYPE_SPEED = 66
104
- QUANTITY_TYPE_TEMPERATURE = 67
105
- QUANTITY_TYPE_TEMPERATURE_CHANGE_RATE = 68
106
- QUANTITY_TYPE_TEMPERATURE_DELTA = 69
107
- QUANTITY_TYPE_THERMAL_CONDUCTIVITY = 70
108
- QUANTITY_TYPE_THERMAL_RESISTANCE = 71
109
- QUANTITY_TYPE_TIME = 72
110
- QUANTITY_TYPE_TORQUE = 73
111
- QUANTITY_TYPE_TORQUE_PER_LENGTH = 74
112
- QUANTITY_TYPE_VOLUME = 75
113
- QUANTITY_TYPE_VOLUME_CONCENTRATION = 76
114
- QUANTITY_TYPE_VOLUME_FLOW = 77
115
- QUANTITY_TYPE_VOLUME_PER_LENGTH = 78
116
- QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA = 79
117
- QUANTITY_TYPE_NONE = 80
118
-
119
-
120
- _VARIATION = DESCRIPTOR.message_types_by_name['Variation']
121
- _INPUTCOLUMN = DESCRIPTOR.message_types_by_name['InputColumn']
122
- _OUTPUTCOLUMN = DESCRIPTOR.message_types_by_name['OutputColumn']
123
- _HISTORYTRACKPARAMETER = DESCRIPTOR.message_types_by_name['HistoryTrackParameter']
124
- _INPUTPARAMETER = DESCRIPTOR.message_types_by_name['InputParameter']
125
- _OUTPUTPARAMETER = DESCRIPTOR.message_types_by_name['OutputParameter']
126
- _SCRIPTPARAMETER = DESCRIPTOR.message_types_by_name['ScriptParameter']
127
- _SIMULATION = DESCRIPTOR.message_types_by_name['Simulation']
128
- _HEAT = DESCRIPTOR.message_types_by_name['Heat']
129
- _QUANTITY = DESCRIPTOR.message_types_by_name['Quantity']
130
- Variation = _reflection.GeneratedProtocolMessageType('Variation', (_message.Message,), {
131
- 'DESCRIPTOR' : _VARIATION,
132
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
133
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.Variation)
134
- })
135
- _sym_db.RegisterMessage(Variation)
136
-
137
- InputColumn = _reflection.GeneratedProtocolMessageType('InputColumn', (_message.Message,), {
138
- 'DESCRIPTOR' : _INPUTCOLUMN,
139
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
140
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.InputColumn)
141
- })
142
- _sym_db.RegisterMessage(InputColumn)
143
-
144
- OutputColumn = _reflection.GeneratedProtocolMessageType('OutputColumn', (_message.Message,), {
145
- 'DESCRIPTOR' : _OUTPUTCOLUMN,
146
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
147
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.OutputColumn)
148
- })
149
- _sym_db.RegisterMessage(OutputColumn)
150
-
151
- HistoryTrackParameter = _reflection.GeneratedProtocolMessageType('HistoryTrackParameter', (_message.Message,), {
152
- 'DESCRIPTOR' : _HISTORYTRACKPARAMETER,
153
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
154
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.HistoryTrackParameter)
155
- })
156
- _sym_db.RegisterMessage(HistoryTrackParameter)
157
-
158
- InputParameter = _reflection.GeneratedProtocolMessageType('InputParameter', (_message.Message,), {
159
- 'DESCRIPTOR' : _INPUTPARAMETER,
160
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
161
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.InputParameter)
162
- })
163
- _sym_db.RegisterMessage(InputParameter)
164
-
165
- OutputParameter = _reflection.GeneratedProtocolMessageType('OutputParameter', (_message.Message,), {
166
- 'DESCRIPTOR' : _OUTPUTPARAMETER,
167
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
168
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.OutputParameter)
169
- })
170
- _sym_db.RegisterMessage(OutputParameter)
171
-
172
- ScriptParameter = _reflection.GeneratedProtocolMessageType('ScriptParameter', (_message.Message,), {
173
- 'DESCRIPTOR' : _SCRIPTPARAMETER,
174
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
175
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.ScriptParameter)
176
- })
177
- _sym_db.RegisterMessage(ScriptParameter)
178
-
179
- Simulation = _reflection.GeneratedProtocolMessageType('Simulation', (_message.Message,), {
180
- 'DESCRIPTOR' : _SIMULATION,
181
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
182
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.Simulation)
183
- })
184
- _sym_db.RegisterMessage(Simulation)
185
-
186
- Heat = _reflection.GeneratedProtocolMessageType('Heat', (_message.Message,), {
187
- 'DESCRIPTOR' : _HEAT,
188
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
189
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.Heat)
190
- })
191
- _sym_db.RegisterMessage(Heat)
192
-
193
- Quantity = _reflection.GeneratedProtocolMessageType('Quantity', (_message.Message,), {
194
- 'DESCRIPTOR' : _QUANTITY,
195
- '__module__' : 'ansys.api.discovery.v0.discoverymodels_pb2'
196
- # @@protoc_insertion_point(class_scope:ansys.api.discovery.v0.Quantity)
197
- })
198
- _sym_db.RegisterMessage(Quantity)
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,ansys/api/discovery/v0/discoverymodels.proto\x12\x16\x61nsys.api.discovery.v0\x1a ansys/api/dbu/v0/dbumodels.proto\x1a\"ansys/api/geometry/v0/models.proto\"\xa8\x01\n\tVariation\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07starred\x18\x03 \x01(\x08\x12\x36\n\x06inputs\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\x12\x38\n\x07outputs\x18\x05 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"|\n\x0bInputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x44\n\x14parameter_variations\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\"~\n\x0cOutputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x45\n\x14parameter_variations\x18\x04 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"\x83\x01\n\x15HistoryTrackParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\x95\x02\n\x0eInputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\x12>\n\ninput_type\x18\x08 \x01(\x0e\x32*.ansys.api.discovery.v0.InputParameterType\x12\x18\n\x10parent_object_id\x18\t \x01(\t\"\xbc\x01\n\x0fOutputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\"}\n\x0fScriptParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\'\n\nSimulation\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\"=\n\x15\x43hangeLocationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x11\n\tlocations\x18\x02 \x03(\t\"\xbe\x01\n\x1d\x43hangeLocationExtendedRequest\x12N\n\x17\x63hange_location_request\x18\x01 \x01(\x0b\x32-.ansys.api.discovery.v0.ChangeLocationRequest\x12M\n\x16location_specification\x18\x02 \x01(\x0e\x32-.ansys.api.discovery.v0.LocationSpecification\"^\n\x15\x43hangeQuantityRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x32\n\x08quantity\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"@\n\x14\x43hangeBooleanRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x15\n\rboolean_value\x18\x02 \x01(\x08\"`\n\x16\x43hangeDirectionRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x33\n\tdirection\x18\x02 \x01(\x0b\x32 .ansys.api.geometry.v0.Direction\")\n\x14\x43hangeCommandRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\"m\n\x1bScopedConditionCreationData\x12\x16\n\tobject_id\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\x11\n\tlocations\x18\x03 \x03(\tB\x0c\n\n_object_id\"<\n\x18\x43onditionChangedResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t\"=\n\x19\x43onditionCreationResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t\"\"\n\x0fMessageResponse\x12\x0f\n\x07message\x18\x01 \x01(\t\"\x9b\x01\n\x08Quantity\x12;\n\rquantity_type\x18\x01 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x02 \x01(\x01\x12\x0c\n\x04unit\x18\x03 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x04 \x01(\t\x12\x11\n\tas_string\x18\x05 \x01(\t\"\x97\x01\n\x0eQuantityVector\x12+\n\x01x\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12+\n\x01y\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12+\n\x01z\x18\x03 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\\\n\x0eOptionalVector\x12\x12\n\nis_defined\x18\x01 \x01(\x08\x12\x36\n\x06vector\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.QuantityVector\"Z\n\x10OptionalQuantity\x12\x12\n\nis_defined\x18\x01 \x01(\x08\x12\x32\n\x08quantity\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xe0\x02\n\x1aTensorOfOptionalQuantities\x12\x34\n\x02\x64x\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02\x64y\x18\x02 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02\x64z\x18\x03 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02rx\x18\x04 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02ry\x18\x05 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02rz\x18\x06 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\"\xbb\x01\n\x1aVectorOfOptionalQuantities\x12\x33\n\x01x\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x33\n\x01y\x18\x02 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x33\n\x01z\x18\x03 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity*X\n\x12InputParameterType\x12\x0b\n\x07PHYSICS\x10\x00\x12\x15\n\x11\x44RIVING_DIMENSION\x10\x01\x12\x11\n\rHISTORY_TRACK\x10\x02\x12\x0b\n\x07UNKNOWN\x10\x03*=\n\x15LocationSpecification\x12\x11\n\rFACELOCATIONS\x10\x00\x12\x11\n\rBODYLOCATIONS\x10\x01*\xb5\x16\n\x0cQuantityType\x12\x1e\n\x1aQUANTITY_TYPE_ACCELERATION\x10\x00\x12\x17\n\x13QUANTITY_TYPE_ANGLE\x10\x01\x12\x16\n\x12QUANTITY_TYPE_AREA\x10\x02\x12\x1e\n\x1aQUANTITY_TYPE_AREA_DENSITY\x10\x03\x12(\n$QUANTITY_TYPE_AREA_MOMENT_OF_INERTIA\x10\x04\x12\x1d\n\x19QUANTITY_TYPE_CAPACITANCE\x10\x05\x12\x32\n.QUANTITY_TYPE_COEFFICIENT_OF_THERMAL_EXPANSION\x10\x06\x12\x19\n\x15QUANTITY_TYPE_DENSITY\x10\x07\x12#\n\x1fQUANTITY_TYPE_DYNAMIC_VISCOSITY\x10\x08\x12%\n!QUANTITY_TYPE_ELECTRIC_ADMITTANCE\x10\t\x12!\n\x1dQUANTITY_TYPE_ELECTRIC_CHARGE\x10\n\x12)\n%QUANTITY_TYPE_ELECTRIC_CHARGE_DENSITY\x10\x0b\x12&\n\"QUANTITY_TYPE_ELECTRIC_CONDUCTANCE\x10\x0c\x12\'\n#QUANTITY_TYPE_ELECTRIC_CONDUCTIVITY\x10\r\x12\"\n\x1eQUANTITY_TYPE_ELECTRIC_CURRENT\x10\x0e\x12*\n&QUANTITY_TYPE_ELECTRIC_CURRENT_DENSITY\x10\x0f\x12+\n\'QUANTITY_TYPE_ELECTRIC_CURRENT_GRADIENT\x10\x10\x12 \n\x1cQUANTITY_TYPE_ELECTRIC_FIELD\x10\x11\x12%\n!QUANTITY_TYPE_ELECTRIC_INDUCTANCE\x10\x12\x12$\n QUANTITY_TYPE_ELECTRIC_POTENTIAL\x10\x13\x12\'\n#QUANTITY_TYPE_ELECTRIC_POTENTIAL_AC\x10\x14\x12\x30\n,QUANTITY_TYPE_ELECTRIC_POTENTIAL_CHANGE_RATE\x10\x15\x12\'\n#QUANTITY_TYPE_ELECTRIC_POTENTIAL_DC\x10\x16\x12%\n!QUANTITY_TYPE_ELECTRIC_RESISTANCE\x10\x17\x12&\n\"QUANTITY_TYPE_ELECTRIC_RESISTIVITY\x10\x18\x12\x31\n-QUANTITY_TYPE_ELECTRIC_SURFACE_CHARGE_DENSITY\x10\x19\x12\x18\n\x14QUANTITY_TYPE_ENERGY\x10\x1a\x12\x19\n\x15QUANTITY_TYPE_ENTROPY\x10\x1b\x12\x17\n\x13QUANTITY_TYPE_FORCE\x10\x1c\x12#\n\x1fQUANTITY_TYPE_FORCE_CHANGE_RATE\x10\x1d\x12\"\n\x1eQUANTITY_TYPE_FORCE_PER_LENGTH\x10\x1e\x12\x1b\n\x17QUANTITY_TYPE_FREQUENCY\x10\x1f\x12\x1b\n\x17QUANTITY_TYPE_HEAT_FLUX\x10 \x12+\n\'QUANTITY_TYPE_HEAT_TRANSFER_COEFFICIENT\x10!\x12\x1e\n\x1aQUANTITY_TYPE_INVERSE_AREA\x10\"\x12 \n\x1cQUANTITY_TYPE_INVERSE_LENGTH\x10#\x12%\n!QUANTITY_TYPE_KINEMATIC_VISCOSITY\x10$\x12\x18\n\x14QUANTITY_TYPE_LENGTH\x10%\x12 \n\x1cQUANTITY_TYPE_MAGNETIC_FIELD\x10&\x12\x16\n\x12QUANTITY_TYPE_MASS\x10\'\x12$\n QUANTITY_TYPE_MASS_CONCENTRATION\x10(\x12\x1b\n\x17QUANTITY_TYPE_MASS_FLOW\x10)\x12\x1b\n\x17QUANTITY_TYPE_MASS_FLUX\x10*\x12\x1f\n\x1bQUANTITY_TYPE_MASS_FRACTION\x10+\x12(\n$QUANTITY_TYPE_MASS_MOMENT_OF_INERTIA\x10,\x12\x1a\n\x16QUANTITY_TYPE_MOLARITY\x10-\x12\x1c\n\x18QUANTITY_TYPE_MOLAR_MASS\x10.\x12\x1e\n\x1aQUANTITY_TYPE_PERMEABILITY\x10/\x12\x1e\n\x1aQUANTITY_TYPE_PERMITTIVITY\x10\x30\x12\x17\n\x13QUANTITY_TYPE_POWER\x10\x31\x12\x1f\n\x1bQUANTITY_TYPE_POWER_DENSITY\x10\x32\x12\x1d\n\x19QUANTITY_TYPE_POWER_RATIO\x10\x33\x12\x1a\n\x16QUANTITY_TYPE_PRESSURE\x10\x34\x12\x17\n\x13QUANTITY_TYPE_RATIO\x10\x35\x12#\n\x1fQUANTITY_TYPE_RATIO_CHANGE_RATE\x10\x36\x12!\n\x1dQUANTITY_TYPE_REACTIVE_ENERGY\x10\x37\x12 \n\x1cQUANTITY_TYPE_REACTIVE_POWER\x10\x38\x12)\n%QUANTITY_TYPE_ROTATIONAL_ACCELERATION\x10\x39\x12\"\n\x1eQUANTITY_TYPE_ROTATIONAL_SPEED\x10:\x12&\n\"QUANTITY_TYPE_ROTATIONAL_STIFFNESS\x10;\x12\x31\n-QUANTITY_TYPE_ROTATIONAL_STIFFNESS_PER_LENGTH\x10<\x12\x1d\n\x19QUANTITY_TYPE_SOLID_ANGLE\x10=\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_ENERGY\x10>\x12\"\n\x1eQUANTITY_TYPE_SPECIFIC_ENTROPY\x10?\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_VOLUME\x10@\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_WEIGHT\x10\x41\x12\x17\n\x13QUANTITY_TYPE_SPEED\x10\x42\x12\x1d\n\x19QUANTITY_TYPE_TEMPERATURE\x10\x43\x12)\n%QUANTITY_TYPE_TEMPERATURE_CHANGE_RATE\x10\x44\x12#\n\x1fQUANTITY_TYPE_TEMPERATURE_DELTA\x10\x45\x12&\n\"QUANTITY_TYPE_THERMAL_CONDUCTIVITY\x10\x46\x12$\n QUANTITY_TYPE_THERMAL_RESISTANCE\x10G\x12\x16\n\x12QUANTITY_TYPE_TIME\x10H\x12\x18\n\x14QUANTITY_TYPE_TORQUE\x10I\x12#\n\x1fQUANTITY_TYPE_TORQUE_PER_LENGTH\x10J\x12\x18\n\x14QUANTITY_TYPE_VOLUME\x10K\x12&\n\"QUANTITY_TYPE_VOLUME_CONCENTRATION\x10L\x12\x1d\n\x19QUANTITY_TYPE_VOLUME_FLOW\x10M\x12#\n\x1fQUANTITY_TYPE_VOLUME_PER_LENGTH\x10N\x12+\n\'QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA\x10O\x12\x16\n\x12QUANTITY_TYPE_NONE\x10P\x12\x19\n\x15QUANTITY_TYPE_UNKNOWN\x10QB\x19\xaa\x02\x16\x41nsys.Api.Discovery.V0b\x06proto3')
199
19
 
20
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
21
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.discoverymodels_pb2', globals())
200
22
  if _descriptor._USE_C_DESCRIPTORS == False:
201
23
 
202
24
  DESCRIPTOR._options = None
203
25
  DESCRIPTOR._serialized_options = b'\252\002\026Ansys.Api.Discovery.V0'
204
- _INPUTPARAMETERTYPE._serialized_start=1784
205
- _INPUTPARAMETERTYPE._serialized_end=1872
206
- _HEATSPECIFICATION._serialized_start=1874
207
- _HEATSPECIFICATION._serialized_end=1937
208
- _LOCATIONSPECIFICATION._serialized_start=1939
209
- _LOCATIONSPECIFICATION._serialized_end=2000
210
- _QUANTITYTYPE._serialized_start=2003
211
- _QUANTITYTYPE._serialized_end=4845
212
- _VARIATION._serialized_start=107
213
- _VARIATION._serialized_end=275
214
- _INPUTCOLUMN._serialized_start=277
215
- _INPUTCOLUMN._serialized_end=401
216
- _OUTPUTCOLUMN._serialized_start=403
217
- _OUTPUTCOLUMN._serialized_end=529
218
- _HISTORYTRACKPARAMETER._serialized_start=532
219
- _HISTORYTRACKPARAMETER._serialized_end=663
220
- _INPUTPARAMETER._serialized_start=666
221
- _INPUTPARAMETER._serialized_end=943
222
- _OUTPUTPARAMETER._serialized_start=946
223
- _OUTPUTPARAMETER._serialized_end=1134
224
- _SCRIPTPARAMETER._serialized_start=1136
225
- _SCRIPTPARAMETER._serialized_end=1261
226
- _SIMULATION._serialized_start=1263
227
- _SIMULATION._serialized_end=1302
228
- _HEAT._serialized_start=1305
229
- _HEAT._serialized_end=1643
230
- _QUANTITY._serialized_start=1646
231
- _QUANTITY._serialized_end=1782
26
+ _INPUTPARAMETERTYPE._serialized_start=3214
27
+ _INPUTPARAMETERTYPE._serialized_end=3302
28
+ _LOCATIONSPECIFICATION._serialized_start=3304
29
+ _LOCATIONSPECIFICATION._serialized_end=3365
30
+ _QUANTITYTYPE._serialized_start=3368
31
+ _QUANTITYTYPE._serialized_end=6237
32
+ _VARIATION._serialized_start=143
33
+ _VARIATION._serialized_end=311
34
+ _INPUTCOLUMN._serialized_start=313
35
+ _INPUTCOLUMN._serialized_end=437
36
+ _OUTPUTCOLUMN._serialized_start=439
37
+ _OUTPUTCOLUMN._serialized_end=565
38
+ _HISTORYTRACKPARAMETER._serialized_start=568
39
+ _HISTORYTRACKPARAMETER._serialized_end=699
40
+ _INPUTPARAMETER._serialized_start=702
41
+ _INPUTPARAMETER._serialized_end=979
42
+ _OUTPUTPARAMETER._serialized_start=982
43
+ _OUTPUTPARAMETER._serialized_end=1170
44
+ _SCRIPTPARAMETER._serialized_start=1172
45
+ _SCRIPTPARAMETER._serialized_end=1297
46
+ _SIMULATION._serialized_start=1299
47
+ _SIMULATION._serialized_end=1338
48
+ _CHANGELOCATIONREQUEST._serialized_start=1340
49
+ _CHANGELOCATIONREQUEST._serialized_end=1401
50
+ _CHANGELOCATIONEXTENDEDREQUEST._serialized_start=1404
51
+ _CHANGELOCATIONEXTENDEDREQUEST._serialized_end=1594
52
+ _CHANGEQUANTITYREQUEST._serialized_start=1596
53
+ _CHANGEQUANTITYREQUEST._serialized_end=1690
54
+ _CHANGEBOOLEANREQUEST._serialized_start=1692
55
+ _CHANGEBOOLEANREQUEST._serialized_end=1756
56
+ _CHANGEDIRECTIONREQUEST._serialized_start=1758
57
+ _CHANGEDIRECTIONREQUEST._serialized_end=1854
58
+ _CHANGECOMMANDREQUEST._serialized_start=1856
59
+ _CHANGECOMMANDREQUEST._serialized_end=1897
60
+ _SCOPEDCONDITIONCREATIONDATA._serialized_start=1899
61
+ _SCOPEDCONDITIONCREATIONDATA._serialized_end=2008
62
+ _CONDITIONCHANGEDRESPONSE._serialized_start=2010
63
+ _CONDITIONCHANGEDRESPONSE._serialized_end=2070
64
+ _CONDITIONCREATIONRESPONSE._serialized_start=2072
65
+ _CONDITIONCREATIONRESPONSE._serialized_end=2133
66
+ _MESSAGERESPONSE._serialized_start=2135
67
+ _MESSAGERESPONSE._serialized_end=2169
68
+ _QUANTITY._serialized_start=2172
69
+ _QUANTITY._serialized_end=2327
70
+ _QUANTITYVECTOR._serialized_start=2330
71
+ _QUANTITYVECTOR._serialized_end=2481
72
+ _OPTIONALVECTOR._serialized_start=2483
73
+ _OPTIONALVECTOR._serialized_end=2575
74
+ _OPTIONALQUANTITY._serialized_start=2577
75
+ _OPTIONALQUANTITY._serialized_end=2667
76
+ _TENSOROFOPTIONALQUANTITIES._serialized_start=2670
77
+ _TENSOROFOPTIONALQUANTITIES._serialized_end=3022
78
+ _VECTOROFOPTIONALQUANTITIES._serialized_start=3025
79
+ _VECTOROFOPTIONALQUANTITIES._serialized_end=3212
232
80
  # @@protoc_insertion_point(module_scope)