ansys-api-discovery 0.6.2__py3-none-any.whl → 0.6.3__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.

@@ -1 +1 @@
1
- 0.6.2
1
+ 0.6.3
@@ -130,6 +130,75 @@ service ConditionsStructural
130
130
  rpc ChangeMomentGlobalY(ChangeQuantityRequest) returns (ChangeResponse);
131
131
  rpc ChangeMomentGlobalZ(ChangeQuantityRequest) returns (ChangeResponse);
132
132
 
133
+ //Mass condition methods
134
+ rpc CreateMass(MassCreationRequest) returns (MassCreationResponse);
135
+
136
+ rpc ChangeMassLocation(ChangeLocationRequest) returns(ChangeResponse);
137
+
138
+ rpc ChangeMassMagnitude(ChangeQuantityRequest) returns (ChangeResponse);
139
+
140
+ rpc ChangeMassUseRemotePointEnabled(ChangeBooleanRequest) returns (ChangeResponse);
141
+ rpc ChangeMassRemotePositionX(ChangeQuantityRequest) returns (ChangeResponse);
142
+ rpc ChangeMassRemotePositionY(ChangeQuantityRequest) returns (ChangeResponse);
143
+ rpc ChangeMassRemotePositionZ(ChangeQuantityRequest) returns (ChangeResponse);
144
+
145
+ //Velocity condition methods
146
+ rpc CreateVelocity(VelocityCreationRequest) returns (VelocityCreationResponse);
147
+
148
+ rpc ChangeVelocityLocation(ChangeLocationRequest) returns(ChangeResponse);
149
+
150
+ rpc ChangeVelocityOrientation(ChangeDirectionRequest) returns(ChangeResponse);
151
+
152
+ rpc ChangeVelocityRX(ChangeQuantityRequest) returns (ChangeResponse);
153
+ rpc ChangeVelocityRY(ChangeQuantityRequest) returns (ChangeResponse);
154
+ rpc ChangeVelocityRZ(ChangeQuantityRequest) returns (ChangeResponse);
155
+ rpc ChangeVelocityRotationalMagnitude(ChangeQuantityRequest) returns (ChangeResponse);
156
+
157
+ rpc ChangeVelocityIsFixedRX(ChangeBooleanRequest) returns (ChangeResponse);
158
+ rpc ChangeVelocityIsFixedRY(ChangeBooleanRequest) returns (ChangeResponse);
159
+ rpc ChangeVelocityIsFixedRZ(ChangeBooleanRequest) returns (ChangeResponse);
160
+
161
+ rpc ChangeVelocityUseRemotePointEnabled(ChangeBooleanRequest) returns (ChangeResponse);
162
+ rpc ChangeVelocityRemotePositionX(ChangeQuantityRequest) returns (ChangeResponse);
163
+ rpc ChangeVelocityRemotePositionY(ChangeQuantityRequest) returns (ChangeResponse);
164
+ rpc ChangeVelocityRemotePositionZ(ChangeQuantityRequest) returns (ChangeResponse);
165
+
166
+ //Acceleration condition methods
167
+ rpc CreateAcceleration(AccelerationCreationRequest) returns (AccelerationCreationResponse);
168
+
169
+ rpc ChangeAccelerationLocation(ChangeLocationRequest) returns(ChangeResponse);
170
+
171
+ rpc ChangeAccelerationOrientation(ChangeDirectionRequest) returns(ChangeResponse);
172
+
173
+ rpc ChangeAccelerationDX(ChangeQuantityRequest) returns (ChangeResponse);
174
+ rpc ChangeAccelerationDY(ChangeQuantityRequest) returns (ChangeResponse);
175
+ rpc ChangeAccelerationDZ(ChangeQuantityRequest) returns (ChangeResponse);
176
+ rpc ChangeAccelerationTranslationalMagnitude(ChangeQuantityRequest) returns (ChangeResponse);
177
+
178
+ rpc ChangeAccelerationIsFixedDX(ChangeBooleanRequest) returns (ChangeResponse);
179
+ rpc ChangeAccelerationIsFixedDY(ChangeBooleanRequest) returns (ChangeResponse);
180
+ rpc ChangeAccelerationIsFixedDZ(ChangeBooleanRequest) returns (ChangeResponse);
181
+
182
+ //Gravity condition methods
183
+ //No create for gravity, it's done automatically, and always applied to all bodies
184
+ rpc ChangeGravityOrientation(ChangeDirectionRequest) returns(ChangeResponse);
185
+
186
+ rpc ChangeGravityDX(ChangeQuantityRequest) returns (ChangeResponse);
187
+ rpc ChangeGravityDY(ChangeQuantityRequest) returns (ChangeResponse);
188
+ rpc ChangeGravityDZ(ChangeQuantityRequest) returns (ChangeResponse);
189
+ rpc ChangeGravityTranslationalMagnitude(ChangeQuantityRequest) returns (ChangeResponse);
190
+
191
+ rpc ChangeGravityUseBuoyancyEnabled(ChangeBooleanRequest) returns (ChangeResponse);
192
+ rpc ChangeGravityIncludeSelfWeightEnabled(ChangeBooleanRequest) returns (ChangeResponse);
193
+
194
+ //Bearing condition methods
195
+ rpc CreateBearing(BearingCreationRequest) returns (BearingCreationResponse);
196
+
197
+ rpc ChangeBearingLocation(ChangeLocationRequest) returns(ChangeResponse);
198
+
199
+ rpc ChangeBearingRadialForce(ChangeQuantityRequest) returns (ChangeResponse);
200
+ rpc ChangeBearingThrustForce(ChangeQuantityRequest) returns (ChangeResponse);
201
+ rpc ChangeBearingAngle(ChangeQuantityRequest) returns (ChangeResponse);
133
202
  }
134
203
 
135
204
 
@@ -255,6 +324,49 @@ message ChangeMomentSpecificationRequest{
255
324
  MomentSpecification moment_specification = 2;
256
325
  }
257
326
 
327
+ // Mass
328
+ message MassCreationRequest{
329
+ ScopedCreationData creation_data = 1;
330
+ MassProperties mass_properties = 2;
331
+ }
332
+
333
+ message MassCreationResponse{
334
+ CreationResponse condition_response = 1;
335
+ MassDefinition condition_data = 2;
336
+ }
337
+
338
+ //Velocity
339
+ message VelocityCreationRequest{
340
+ ScopedCreationData creation_data = 1;
341
+ VelocityProperties velocity_properties = 2;
342
+ }
343
+
344
+ message VelocityCreationResponse{
345
+ CreationResponse condition_response = 1;
346
+ VelocityDefinition condition_data = 2;
347
+ }
348
+
349
+ //Acceleration
350
+ message AccelerationCreationRequest{
351
+ ScopedCreationData creation_data = 1;
352
+ AccelerationProperties acceleration_properties = 2;
353
+ }
354
+
355
+ message AccelerationCreationResponse{
356
+ CreationResponse condition_response = 1;
357
+ AccelerationDefinition condition_data = 2;
358
+ }
359
+
360
+ //Bearing
361
+ message BearingCreationRequest{
362
+ ScopedCreationData creation_data = 1;
363
+ BearingProperties bearing_properties = 2;
364
+ }
365
+
366
+ message BearingCreationResponse{
367
+ CreationResponse condition_response = 1;
368
+ BearingDefinition condition_data = 2;
369
+ }
258
370
 
259
371
  // Support enumerations
260
372
 
@@ -383,7 +495,7 @@ message DisplacementDefinition {
383
495
  DisplacementCombinedProperties displacement = 6;
384
496
  }
385
497
 
386
- // Displacement enumerations
498
+ // Moment enumerations
387
499
 
388
500
  enum MomentSpecification {
389
501
  GLOBAL = 0;
@@ -404,4 +516,80 @@ message MomentDefinition {
404
516
  bool suppressed = 5;
405
517
  MomentProperties local = 6;
406
518
  MomentProperties global = 7;
519
+ }
520
+
521
+ // Mass condition definitions
522
+ message MassProperties {
523
+ Quantity mass_magnitude = 1;
524
+ OptionalVector remote_point = 2;
525
+ }
526
+
527
+ message MassDefinition {
528
+ string id = 1;
529
+ string parent_id = 2;
530
+ string label = 3;
531
+ repeated string locations = 4;
532
+ bool suppressed = 5;
533
+ MassProperties mass = 6;
534
+ }
535
+
536
+ // Velocity condition definitions
537
+ message VelocityProperties {
538
+ VectorOfOptionalQuantities velocity = 1;
539
+ OptionalVector remote_point = 2;
540
+ }
541
+
542
+ message VelocityDefinition {
543
+ string id = 1;
544
+ string parent_id = 2;
545
+ string label = 3;
546
+ repeated string locations = 4;
547
+ bool suppressed = 5;
548
+ VelocityProperties velocity = 6;
549
+ }
550
+
551
+ // Acceleration condition definitions
552
+ message AccelerationProperties {
553
+ VectorOfOptionalQuantities acceleration = 1;
554
+ }
555
+
556
+ message AccelerationDefinition {
557
+ string id = 1;
558
+ string parent_id = 2;
559
+ string label = 3;
560
+ repeated string locations = 4;
561
+ bool suppressed = 5;
562
+ AccelerationProperties acceleration = 6;
563
+ }
564
+
565
+ // Gravity condition definitions
566
+ message GravityProperties {
567
+ VectorOfOptionalQuantities acceleration = 1;
568
+ bool include_buoyancy = 2;
569
+ bool include_self_weight = 3;
570
+ }
571
+
572
+ message GravityDefinition {
573
+ string id = 1;
574
+ string parent_id = 2;
575
+ string label = 3;
576
+ repeated string locations = 4;
577
+ bool suppressed = 5;
578
+ GravityProperties gravity = 6;
579
+ }
580
+
581
+ // Bearing condition definitions
582
+ message BearingProperties {
583
+ Quantity radial_force = 1;
584
+ Quantity thrust_force = 2;
585
+ Quantity angle = 3;
586
+ }
587
+
588
+ message BearingDefinition {
589
+ string id = 1;
590
+ string parent_id = 2;
591
+ string label = 3;
592
+ repeated string locations = 4;
593
+ bool suppressed = 5;
594
+ BearingProperties bearing = 6;
407
595
  }
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
14
14
  from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
15
15
 
16
16
 
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1ansys/api/discovery/v0/conditionsstructural.proto\x12\x36\x61nsys.api.discovery.v0.conditions.conditionsstructural\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xa3\x01\n!ChangeSupportSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12k\n\x15support_specification\x18\x02 \x01(\x0e\x32L.ansys.api.discovery.v0.conditions.conditionsstructural.SupportSpecification\"b\n\x1dSupportGeneralCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\"\xd0\x01\n\x1eSupportGeneralCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12h\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralDefinition\"\xd3\x01\n\x1fSupportDisplacedCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12m\n\x11support_displaced\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedProperties\"\xd4\x01\n SupportDisplacedCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12j\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedDefinition\"\x9d\x01\n\x1f\x43hangeForceSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12g\n\x13\x66orce_specification\x18\x02 \x01(\x0e\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.ForceSpecification\"\xb0\x01\n%ChangeForceMagnitudeDefinitionRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12t\n\x1a\x66orce_magnitude_definition\x18\x02 \x01(\x0e\x32P.ansys.api.discovery.v0.conditions.conditionsstructural.ForceMagnitudeDefinition\"\xd7\x01\n$ForceDistributedTotalCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12l\n\x10\x66orce_properties\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedProperties\"\xd9\x01\n%ForceDistributedTotalCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12j\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedDefinition\"\xd6\x01\n#ForceDistributedAreaCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12l\n\x10\x66orce_properties\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedProperties\"\xd8\x01\n$ForceDistributedAreaCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12j\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedDefinition\"\xc8\x01\n\x1a\x46orceTorqueCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12g\n\x10\x66orce_properties\x18\x02 \x01(\x0b\x32M.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueProperties\"\xca\x01\n\x1b\x46orceTorqueCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x65\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32M.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueDefinition\"\xc5\x01\n\x17PressureCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12g\n\x13pressure_properties\x18\x02 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.PressureProperties\"\xc4\x01\n\x18PressureCreationResponse\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.conditionsstructural.PressureDefinition\"\xe7\x01\n&DisplacementTranslationCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12z\n\x17\x64isplacement_properties\x18\x02 \x01(\x0b\x32Y.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementTranslationProperties\"\xe1\x01\n#DisplacementRotationCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12w\n\x17\x64isplacement_properties\x18\x02 \x01(\x0b\x32V.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementRotationProperties\"\xe1\x01\n#DisplacementCombinedCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12w\n\x17\x64isplacement_properties\x18\x02 \x01(\x0b\x32V.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCombinedProperties\"\xcc\x01\n\x1c\x44isplacementCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x66\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32N.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementDefinition\"\xb2\x01\n&ChangeDisplacementSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12u\n\x1a\x64isplacement_specification\x18\x02 \x01(\x0e\x32Q.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementSpecification\"\xbf\x01\n\x15MomentCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12\x63\n\x11moment_properties\x18\x02 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsstructural.MomentProperties\"\xc0\x01\n\x16MomentCreationResponse\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.conditionsstructural.MomentDefinition\"\xa0\x01\n ChangeMomentSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12i\n\x14moment_specification\x18\x02 \x01(\x0e\x32K.ansys.api.discovery.v0.conditions.conditionsstructural.MomentSpecification\"\xd3\x01\n\x18SupportGeneralDefinition\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\x62\n\x0csupport_type\x18\x06 \x01(\x0e\x32L.ansys.api.discovery.v0.conditions.conditionsstructural.SupportSpecification\"\x9f\x02\n\x1aSupportDisplacedDefinition\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\x62\n\x0csupport_type\x18\x06 \x01(\x0e\x32L.ansys.api.discovery.v0.conditions.conditionsstructural.SupportSpecification\x12H\n\x0c\x64isplacement\x18\x07 \x01(\x0b\x32\x32.ansys.api.discovery.v0.TensorOfOptionalQuantities\"f\n\x1aSupportDisplacedProperties\x12H\n\x0c\x64isplacement\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.TensorOfOptionalQuantities\"\xe0\x01\n\x1a\x46orceDistributedDefinition\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\x12m\n\x11\x66orce_distributed\x18\x06 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedProperties\"\xcd\x01\n\x1a\x46orceDistributedProperties\x12/\n\x05\x66orce\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12@\n\x10\x66orce_components\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\x12<\n\x0cremote_point\x18\x03 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xd1\x01\n\x15\x46orceTorqueDefinition\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\x63\n\x0c\x66orce_torque\x18\x06 \x01(\x0b\x32M.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueProperties\"\x8a\x01\n\x15\x46orceTorqueProperties\x12/\n\x05\x66orce\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12@\n\x10\x66orce_components\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"R\n\x12PressureProperties\x12<\n\x12pressure_magnitude\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc7\x01\n\x12PressureDefinition\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\x08pressure\x18\x06 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.PressureProperties\"\xab\x01\n!DisplacementTranslationProperties\x12H\n\x0c\x64isplacement\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xa4\x01\n\x1e\x44isplacementRotationProperties\x12\x44\n\x08rotation\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xee\x01\n\x1e\x44isplacementCombinedProperties\x12H\n\x0c\x64isplacement\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12\x44\n\x08rotation\x18\x02 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x03 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xdb\x01\n\x16\x44isplacementDefinition\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\x12l\n\x0c\x64isplacement\x18\x06 \x01(\x0b\x32V.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCombinedProperties\"J\n\x10MomentProperties\x12\x36\n\x06moment\x18\x01 \x01(\x0b\x32&.ansys.api.discovery.v0.QuantityVector\"\x9a\x02\n\x10MomentDefinition\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\x12W\n\x05local\x18\x06 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsstructural.MomentProperties\x12X\n\x06global\x18\x07 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsstructural.MomentProperties*S\n\x14SupportSpecification\x12\t\n\x05\x46IXED\x10\x00\x12\x0b\n\x07SLIDING\x10\x01\x12\n\n\x06HINGED\x10\x02\x12\x08\n\x04\x42\x41LL\x10\x03\x12\r\n\tDISPLACED\x10\x04*<\n\x18\x46orceMagnitudeDefinition\x12\x0e\n\nTOTALFORCE\x10\x00\x12\x10\n\x0c\x46ORCEPERAREA\x10\x01*1\n\x12\x46orceSpecification\x12\x0f\n\x0b\x44ISTRIBUTED\x10\x00\x12\n\n\x06TORQUE\x10\x01*H\n\x19\x44isplacementSpecification\x12\x0f\n\x0bTRANSLATION\x10\x00\x12\x0c\n\x08ROTATION\x10\x01\x12\x0c\n\x08\x43OMBINED\x10\x02*,\n\x13MomentSpecification\x12\n\n\x06GLOBAL\x10\x00\x12\t\n\x05LOCAL\x10\x01\x32\xd4V\n\x14\x43onditionsStructural\x12\xc3\x01\n\x12\x43reateSupportFixed\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xc4\x01\n\x13\x43reateSupportHinged\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xc5\x01\n\x14\x43reateSupportSliding\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xc2\x01\n\x11\x43reateSupportBall\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xcb\x01\n\x16\x43reateSupportDisplaced\x12W.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedCreationRequest\x1aX.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedCreationResponse\x12n\n\x15\x43hangeSupportLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x9f\x01\n\x1a\x43hangeSupportSpecification\x12Y.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeSupportSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12{\n!ChangeSupportDisplacedOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedDX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedDY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedDZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedRX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedRY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedRZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedDX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedDY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedDZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedRX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedRY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedRZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xda\x01\n\x1b\x43reateForceDistributedTotal\x12\\.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedTotalCreationRequest\x1a].ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedTotalCreationResponse\x12\xd7\x01\n\x1a\x43reateForceDistributedArea\x12[.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedAreaCreationRequest\x1a\\.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedAreaCreationResponse\x12\xbc\x01\n\x11\x43reateForceTorque\x12R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueCreationRequest\x1aS.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueCreationResponse\x12l\n\x13\x43hangeForceLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x9b\x01\n\x18\x43hangeForceSpecification\x12W.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeForceSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xa7\x01\n\x1e\x43hangeForceMagnitudeDefinition\x12].ansys.api.discovery.v0.conditions.conditionsstructural.ChangeForceMagnitudeDefinitionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeForceByReversingDirection\x12,.ansys.api.discovery.v0.ChangeCommandRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n$ChangeForceDefinedByComponentEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeForceDistributedTotalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeForceDistributedTotalX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeForceDistributedTotalY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeForceDistributedTotalZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n#ChangeForceDistributedAreaMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12t\n\x1b\x43hangeForceDistributedAreaX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12t\n\x1b\x43hangeForceDistributedAreaY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12t\n\x1b\x43hangeForceDistributedAreaZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12x\n ChangeForceUseRemoteForceEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeForceDistributedRemotePositionX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeForceDistributedRemotePositionY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeForceDistributedRemotePositionZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeForceTorqueMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeForceTorqueX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeForceTorqueY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeForceTorqueZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb3\x01\n\x0e\x43reatePressure\x12O.ansys.api.discovery.v0.conditions.conditionsstructural.PressureCreationRequest\x1aP.ansys.api.discovery.v0.conditions.conditionsstructural.PressureCreationResponse\x12o\n\x16\x43hangePressureLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12p\n\x17\x43hangePressureMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xd5\x01\n\x1d\x43reateDisplacementTranslation\x12^.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementTranslationCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCreationResponse\x12\xcf\x01\n\x1a\x43reateDisplacementRotation\x12[.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementRotationCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCreationResponse\x12\xcf\x01\n\x1a\x43reateDisplacementCombined\x12[.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCombinedCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCreationResponse\x12s\n\x1a\x43hangeDisplacementLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xa9\x01\n\x1f\x43hangeDisplacementSpecification\x12^.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeDisplacementSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1d\x43hangeDisplacementOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementDX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementDY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementDZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n(ChangeDisplacementTranslationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementRX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementRY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementRZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeDisplacementRotationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedDX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedDY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedDZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedRX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedRY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedRZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x7f\n\'ChangeDisplacementUseRemotePointEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n,ChangeDisplacementDistributedRemotePositionX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n,ChangeDisplacementDistributedRemotePositionY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n,ChangeDisplacementDistributedRemotePositionZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb2\x01\n\x11\x43reateMomentLocal\x12M.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationResponse\x12\xb3\x01\n\x12\x43reateMomentGlobal\x12M.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationResponse\x12m\n\x14\x43hangeMomentLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x9d\x01\n\x19\x43hangeMomentSpecification\x12X.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeMomentSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x17\x43hangeMomentOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeMomentLocalX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeMomentLocalY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeMomentLocalZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMomentGlobalX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMomentGlobalY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMomentGlobalZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB9\xaa\x02\x36\x41nsys.Api.Discovery.V0.Conditions.ConditionsStructuralb\x06proto3')
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1ansys/api/discovery/v0/conditionsstructural.proto\x12\x36\x61nsys.api.discovery.v0.conditions.conditionsstructural\x1a,ansys/api/discovery/v0/discoverymodels.proto\"\xa3\x01\n!ChangeSupportSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12k\n\x15support_specification\x18\x02 \x01(\x0e\x32L.ansys.api.discovery.v0.conditions.conditionsstructural.SupportSpecification\"b\n\x1dSupportGeneralCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\"\xd0\x01\n\x1eSupportGeneralCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12h\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32P.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralDefinition\"\xd3\x01\n\x1fSupportDisplacedCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12m\n\x11support_displaced\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedProperties\"\xd4\x01\n SupportDisplacedCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12j\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedDefinition\"\x9d\x01\n\x1f\x43hangeForceSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12g\n\x13\x66orce_specification\x18\x02 \x01(\x0e\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.ForceSpecification\"\xb0\x01\n%ChangeForceMagnitudeDefinitionRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12t\n\x1a\x66orce_magnitude_definition\x18\x02 \x01(\x0e\x32P.ansys.api.discovery.v0.conditions.conditionsstructural.ForceMagnitudeDefinition\"\xd7\x01\n$ForceDistributedTotalCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12l\n\x10\x66orce_properties\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedProperties\"\xd9\x01\n%ForceDistributedTotalCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12j\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedDefinition\"\xd6\x01\n#ForceDistributedAreaCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12l\n\x10\x66orce_properties\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedProperties\"\xd8\x01\n$ForceDistributedAreaCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12j\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedDefinition\"\xc8\x01\n\x1a\x46orceTorqueCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12g\n\x10\x66orce_properties\x18\x02 \x01(\x0b\x32M.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueProperties\"\xca\x01\n\x1b\x46orceTorqueCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x65\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32M.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueDefinition\"\xc5\x01\n\x17PressureCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12g\n\x13pressure_properties\x18\x02 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.PressureProperties\"\xc4\x01\n\x18PressureCreationResponse\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.conditionsstructural.PressureDefinition\"\xe7\x01\n&DisplacementTranslationCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12z\n\x17\x64isplacement_properties\x18\x02 \x01(\x0b\x32Y.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementTranslationProperties\"\xe1\x01\n#DisplacementRotationCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12w\n\x17\x64isplacement_properties\x18\x02 \x01(\x0b\x32V.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementRotationProperties\"\xe1\x01\n#DisplacementCombinedCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12w\n\x17\x64isplacement_properties\x18\x02 \x01(\x0b\x32V.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCombinedProperties\"\xcc\x01\n\x1c\x44isplacementCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x66\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32N.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementDefinition\"\xb2\x01\n&ChangeDisplacementSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12u\n\x1a\x64isplacement_specification\x18\x02 \x01(\x0e\x32Q.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementSpecification\"\xbf\x01\n\x15MomentCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12\x63\n\x11moment_properties\x18\x02 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsstructural.MomentProperties\"\xc0\x01\n\x16MomentCreationResponse\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.conditionsstructural.MomentDefinition\"\xa0\x01\n ChangeMomentSpecificationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12i\n\x14moment_specification\x18\x02 \x01(\x0e\x32K.ansys.api.discovery.v0.conditions.conditionsstructural.MomentSpecification\"\xb9\x01\n\x13MassCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12_\n\x0fmass_properties\x18\x02 \x01(\x0b\x32\x46.ansys.api.discovery.v0.conditions.conditionsstructural.MassProperties\"\xbc\x01\n\x14MassCreationResponse\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\x32\x46.ansys.api.discovery.v0.conditions.conditionsstructural.MassDefinition\"\xc5\x01\n\x17VelocityCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12g\n\x13velocity_properties\x18\x02 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.VelocityProperties\"\xc4\x01\n\x18VelocityCreationResponse\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.conditionsstructural.VelocityDefinition\"\xd1\x01\n\x1b\x41\x63\x63\x65lerationCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12o\n\x17\x61\x63\x63\x65leration_properties\x18\x02 \x01(\x0b\x32N.ansys.api.discovery.v0.conditions.conditionsstructural.AccelerationProperties\"\xcc\x01\n\x1c\x41\x63\x63\x65lerationCreationResponse\x12\x44\n\x12\x63ondition_response\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.CreationResponse\x12\x66\n\x0e\x63ondition_data\x18\x02 \x01(\x0b\x32N.ansys.api.discovery.v0.conditions.conditionsstructural.AccelerationDefinition\"\xc2\x01\n\x16\x42\x65\x61ringCreationRequest\x12\x41\n\rcreation_data\x18\x01 \x01(\x0b\x32*.ansys.api.discovery.v0.ScopedCreationData\x12\x65\n\x12\x62\x65\x61ring_properties\x18\x02 \x01(\x0b\x32I.ansys.api.discovery.v0.conditions.conditionsstructural.BearingProperties\"\xc2\x01\n\x17\x42\x65\x61ringCreationResponse\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.conditionsstructural.BearingDefinition\"\xd3\x01\n\x18SupportGeneralDefinition\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\x62\n\x0csupport_type\x18\x06 \x01(\x0e\x32L.ansys.api.discovery.v0.conditions.conditionsstructural.SupportSpecification\"\x9f\x02\n\x1aSupportDisplacedDefinition\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\x62\n\x0csupport_type\x18\x06 \x01(\x0e\x32L.ansys.api.discovery.v0.conditions.conditionsstructural.SupportSpecification\x12H\n\x0c\x64isplacement\x18\x07 \x01(\x0b\x32\x32.ansys.api.discovery.v0.TensorOfOptionalQuantities\"f\n\x1aSupportDisplacedProperties\x12H\n\x0c\x64isplacement\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.TensorOfOptionalQuantities\"\xe0\x01\n\x1a\x46orceDistributedDefinition\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\x12m\n\x11\x66orce_distributed\x18\x06 \x01(\x0b\x32R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedProperties\"\xcd\x01\n\x1a\x46orceDistributedProperties\x12/\n\x05\x66orce\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12@\n\x10\x66orce_components\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\x12<\n\x0cremote_point\x18\x03 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xd1\x01\n\x15\x46orceTorqueDefinition\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\x63\n\x0c\x66orce_torque\x18\x06 \x01(\x0b\x32M.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueProperties\"\x8a\x01\n\x15\x46orceTorqueProperties\x12/\n\x05\x66orce\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12@\n\x10\x66orce_components\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"R\n\x12PressureProperties\x12<\n\x12pressure_magnitude\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc7\x01\n\x12PressureDefinition\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\x08pressure\x18\x06 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.PressureProperties\"\xab\x01\n!DisplacementTranslationProperties\x12H\n\x0c\x64isplacement\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xa4\x01\n\x1e\x44isplacementRotationProperties\x12\x44\n\x08rotation\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xee\x01\n\x1e\x44isplacementCombinedProperties\x12H\n\x0c\x64isplacement\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12\x44\n\x08rotation\x18\x02 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x03 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xdb\x01\n\x16\x44isplacementDefinition\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\x12l\n\x0c\x64isplacement\x18\x06 \x01(\x0b\x32V.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCombinedProperties\"J\n\x10MomentProperties\x12\x36\n\x06moment\x18\x01 \x01(\x0b\x32&.ansys.api.discovery.v0.QuantityVector\"\x9a\x02\n\x10MomentDefinition\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\x12W\n\x05local\x18\x06 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsstructural.MomentProperties\x12X\n\x06global\x18\x07 \x01(\x0b\x32H.ansys.api.discovery.v0.conditions.conditionsstructural.MomentProperties\"\x88\x01\n\x0eMassProperties\x12\x38\n\x0emass_magnitude\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12<\n\x0cremote_point\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xbb\x01\n\x0eMassDefinition\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\x12T\n\x04mass\x18\x06 \x01(\x0b\x32\x46.ansys.api.discovery.v0.conditions.conditionsstructural.MassProperties\"\x98\x01\n\x12VelocityProperties\x12\x44\n\x08velocity\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12<\n\x0cremote_point\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.OptionalVector\"\xc7\x01\n\x12VelocityDefinition\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\x08velocity\x18\x06 \x01(\x0b\x32J.ansys.api.discovery.v0.conditions.conditionsstructural.VelocityProperties\"b\n\x16\x41\x63\x63\x65lerationProperties\x12H\n\x0c\x61\x63\x63\x65leration\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\"\xd3\x01\n\x16\x41\x63\x63\x65lerationDefinition\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\x64\n\x0c\x61\x63\x63\x65leration\x18\x06 \x01(\x0b\x32N.ansys.api.discovery.v0.conditions.conditionsstructural.AccelerationProperties\"\x94\x01\n\x11GravityProperties\x12H\n\x0c\x61\x63\x63\x65leration\x18\x01 \x01(\x0b\x32\x32.ansys.api.discovery.v0.VectorOfOptionalQuantities\x12\x18\n\x10include_buoyancy\x18\x02 \x01(\x08\x12\x1b\n\x13include_self_weight\x18\x03 \x01(\x08\"\xc4\x01\n\x11GravityDefinition\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\x12Z\n\x07gravity\x18\x06 \x01(\x0b\x32I.ansys.api.discovery.v0.conditions.conditionsstructural.GravityProperties\"\xb4\x01\n\x11\x42\x65\x61ringProperties\x12\x36\n\x0cradial_force\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12\x36\n\x0cthrust_force\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12/\n\x05\x61ngle\x18\x03 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xc4\x01\n\x11\x42\x65\x61ringDefinition\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\x12Z\n\x07\x62\x65\x61ring\x18\x06 \x01(\x0b\x32I.ansys.api.discovery.v0.conditions.conditionsstructural.BearingProperties*S\n\x14SupportSpecification\x12\t\n\x05\x46IXED\x10\x00\x12\x0b\n\x07SLIDING\x10\x01\x12\n\n\x06HINGED\x10\x02\x12\x08\n\x04\x42\x41LL\x10\x03\x12\r\n\tDISPLACED\x10\x04*<\n\x18\x46orceMagnitudeDefinition\x12\x0e\n\nTOTALFORCE\x10\x00\x12\x10\n\x0c\x46ORCEPERAREA\x10\x01*1\n\x12\x46orceSpecification\x12\x0f\n\x0b\x44ISTRIBUTED\x10\x00\x12\n\n\x06TORQUE\x10\x01*H\n\x19\x44isplacementSpecification\x12\x0f\n\x0bTRANSLATION\x10\x00\x12\x0c\n\x08ROTATION\x10\x01\x12\x0c\n\x08\x43OMBINED\x10\x02*,\n\x13MomentSpecification\x12\n\n\x06GLOBAL\x10\x00\x12\t\n\x05LOCAL\x10\x01\x32\xbd\x7f\n\x14\x43onditionsStructural\x12\xc3\x01\n\x12\x43reateSupportFixed\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xc4\x01\n\x13\x43reateSupportHinged\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xc5\x01\n\x14\x43reateSupportSliding\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xc2\x01\n\x11\x43reateSupportBall\x12U.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationRequest\x1aV.ansys.api.discovery.v0.conditions.conditionsstructural.SupportGeneralCreationResponse\x12\xcb\x01\n\x16\x43reateSupportDisplaced\x12W.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedCreationRequest\x1aX.ansys.api.discovery.v0.conditions.conditionsstructural.SupportDisplacedCreationResponse\x12n\n\x15\x43hangeSupportLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x9f\x01\n\x1a\x43hangeSupportSpecification\x12Y.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeSupportSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12{\n!ChangeSupportDisplacedOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedDX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedDY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedDZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedRX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedRY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeSupportDisplacedRZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedDX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedDY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedDZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedRX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedRY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeSupportDisplacedIsFixedRZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xda\x01\n\x1b\x43reateForceDistributedTotal\x12\\.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedTotalCreationRequest\x1a].ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedTotalCreationResponse\x12\xd7\x01\n\x1a\x43reateForceDistributedArea\x12[.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedAreaCreationRequest\x1a\\.ansys.api.discovery.v0.conditions.conditionsstructural.ForceDistributedAreaCreationResponse\x12\xbc\x01\n\x11\x43reateForceTorque\x12R.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueCreationRequest\x1aS.ansys.api.discovery.v0.conditions.conditionsstructural.ForceTorqueCreationResponse\x12l\n\x13\x43hangeForceLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x9b\x01\n\x18\x43hangeForceSpecification\x12W.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeForceSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xa7\x01\n\x1e\x43hangeForceMagnitudeDefinition\x12].ansys.api.discovery.v0.conditions.conditionsstructural.ChangeForceMagnitudeDefinitionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeForceByReversingDirection\x12,.ansys.api.discovery.v0.ChangeCommandRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n$ChangeForceDefinedByComponentEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n$ChangeForceDistributedTotalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeForceDistributedTotalX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeForceDistributedTotalY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12u\n\x1c\x43hangeForceDistributedTotalZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n#ChangeForceDistributedAreaMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12t\n\x1b\x43hangeForceDistributedAreaX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12t\n\x1b\x43hangeForceDistributedAreaY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12t\n\x1b\x43hangeForceDistributedAreaZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12x\n ChangeForceUseRemoteForceEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeForceDistributedRemotePositionX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeForceDistributedRemotePositionY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeForceDistributedRemotePositionZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1a\x43hangeForceTorqueMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeForceTorqueX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeForceTorqueY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeForceTorqueZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb3\x01\n\x0e\x43reatePressure\x12O.ansys.api.discovery.v0.conditions.conditionsstructural.PressureCreationRequest\x1aP.ansys.api.discovery.v0.conditions.conditionsstructural.PressureCreationResponse\x12o\n\x16\x43hangePressureLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12p\n\x17\x43hangePressureMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xd5\x01\n\x1d\x43reateDisplacementTranslation\x12^.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementTranslationCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCreationResponse\x12\xcf\x01\n\x1a\x43reateDisplacementRotation\x12[.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementRotationCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCreationResponse\x12\xcf\x01\n\x1a\x43reateDisplacementCombined\x12[.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCombinedCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.DisplacementCreationResponse\x12s\n\x1a\x43hangeDisplacementLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xa9\x01\n\x1f\x43hangeDisplacementSpecification\x12^.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeDisplacementSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1d\x43hangeDisplacementOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementDX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementDY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementDZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n(ChangeDisplacementTranslationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementRX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementRY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeDisplacementRZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12~\n%ChangeDisplacementRotationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedDX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedDY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedDZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedRX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedRY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeDisplacementIsFixedRZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x7f\n\'ChangeDisplacementUseRemotePointEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n,ChangeDisplacementDistributedRemotePositionX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n,ChangeDisplacementDistributedRemotePositionY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x85\x01\n,ChangeDisplacementDistributedRemotePositionZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb2\x01\n\x11\x43reateMomentLocal\x12M.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationResponse\x12\xb3\x01\n\x12\x43reateMomentGlobal\x12M.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationRequest\x1aN.ansys.api.discovery.v0.conditions.conditionsstructural.MomentCreationResponse\x12m\n\x14\x43hangeMomentLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x9d\x01\n\x19\x43hangeMomentSpecification\x12X.ansys.api.discovery.v0.conditions.conditionsstructural.ChangeMomentSpecificationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x17\x43hangeMomentOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeMomentLocalX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeMomentLocalY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeMomentLocalZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMomentGlobalX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMomentGlobalY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMomentGlobalZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xa7\x01\n\nCreateMass\x12K.ansys.api.discovery.v0.conditions.conditionsstructural.MassCreationRequest\x1aL.ansys.api.discovery.v0.conditions.conditionsstructural.MassCreationResponse\x12k\n\x12\x43hangeMassLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12l\n\x13\x43hangeMassMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeMassUseRemotePointEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x19\x43hangeMassRemotePositionX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x19\x43hangeMassRemotePositionY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x19\x43hangeMassRemotePositionZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb3\x01\n\x0e\x43reateVelocity\x12O.ansys.api.discovery.v0.conditions.conditionsstructural.VelocityCreationRequest\x1aP.ansys.api.discovery.v0.conditions.conditionsstructural.VelocityCreationResponse\x12o\n\x16\x43hangeVelocityLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x19\x43hangeVelocityOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12i\n\x10\x43hangeVelocityRX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12i\n\x10\x43hangeVelocityRY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12i\n\x10\x43hangeVelocityRZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12z\n!ChangeVelocityRotationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12o\n\x17\x43hangeVelocityIsFixedRX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12o\n\x17\x43hangeVelocityIsFixedRY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12o\n\x17\x43hangeVelocityIsFixedRZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12{\n#ChangeVelocityUseRemotePointEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12v\n\x1d\x43hangeVelocityRemotePositionX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12v\n\x1d\x43hangeVelocityRemotePositionY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12v\n\x1d\x43hangeVelocityRemotePositionZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xbf\x01\n\x12\x43reateAcceleration\x12S.ansys.api.discovery.v0.conditions.conditionsstructural.AccelerationCreationRequest\x1aT.ansys.api.discovery.v0.conditions.conditionsstructural.AccelerationCreationResponse\x12s\n\x1a\x43hangeAccelerationLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1d\x43hangeAccelerationOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeAccelerationDX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeAccelerationDY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12m\n\x14\x43hangeAccelerationDZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\x81\x01\n(ChangeAccelerationTranslationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeAccelerationIsFixedDX\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeAccelerationIsFixedDY\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12s\n\x1b\x43hangeAccelerationIsFixedDZ\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12r\n\x18\x43hangeGravityOrientation\x12..ansys.api.discovery.v0.ChangeDirectionRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12h\n\x0f\x43hangeGravityDX\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12h\n\x0f\x43hangeGravityDY\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12h\n\x0f\x43hangeGravityDZ\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12|\n#ChangeGravityTranslationalMagnitude\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12w\n\x1f\x43hangeGravityUseBuoyancyEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12}\n%ChangeGravityIncludeSelfWeightEnabled\x12,.ansys.api.discovery.v0.ChangeBooleanRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12\xb0\x01\n\rCreateBearing\x12N.ansys.api.discovery.v0.conditions.conditionsstructural.BearingCreationRequest\x1aO.ansys.api.discovery.v0.conditions.conditionsstructural.BearingCreationResponse\x12n\n\x15\x43hangeBearingLocation\x12-.ansys.api.discovery.v0.ChangeLocationRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeBearingRadialForce\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12q\n\x18\x43hangeBearingThrustForce\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponse\x12k\n\x12\x43hangeBearingAngle\x12-.ansys.api.discovery.v0.ChangeQuantityRequest\x1a&.ansys.api.discovery.v0.ChangeResponseB9\xaa\x02\x36\x41nsys.Api.Discovery.V0.Conditions.ConditionsStructuralb\x06proto3')
18
18
 
19
19
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
20
20
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.conditionsstructural_pb2', globals())
@@ -22,16 +22,16 @@ if _descriptor._USE_C_DESCRIPTORS == False:
22
22
 
23
23
  DESCRIPTOR._options = None
24
24
  DESCRIPTOR._serialized_options = b'\252\0026Ansys.Api.Discovery.V0.Conditions.ConditionsStructural'
25
- _SUPPORTSPECIFICATION._serialized_start=7558
26
- _SUPPORTSPECIFICATION._serialized_end=7641
27
- _FORCEMAGNITUDEDEFINITION._serialized_start=7643
28
- _FORCEMAGNITUDEDEFINITION._serialized_end=7703
29
- _FORCESPECIFICATION._serialized_start=7705
30
- _FORCESPECIFICATION._serialized_end=7754
31
- _DISPLACEMENTSPECIFICATION._serialized_start=7756
32
- _DISPLACEMENTSPECIFICATION._serialized_end=7828
33
- _MOMENTSPECIFICATION._serialized_start=7830
34
- _MOMENTSPECIFICATION._serialized_end=7874
25
+ _SUPPORTSPECIFICATION._serialized_start=10881
26
+ _SUPPORTSPECIFICATION._serialized_end=10964
27
+ _FORCEMAGNITUDEDEFINITION._serialized_start=10966
28
+ _FORCEMAGNITUDEDEFINITION._serialized_end=11026
29
+ _FORCESPECIFICATION._serialized_start=11028
30
+ _FORCESPECIFICATION._serialized_end=11077
31
+ _DISPLACEMENTSPECIFICATION._serialized_start=11079
32
+ _DISPLACEMENTSPECIFICATION._serialized_end=11151
33
+ _MOMENTSPECIFICATION._serialized_start=11153
34
+ _MOMENTSPECIFICATION._serialized_end=11197
35
35
  _CHANGESUPPORTSPECIFICATIONREQUEST._serialized_start=156
36
36
  _CHANGESUPPORTSPECIFICATIONREQUEST._serialized_end=319
37
37
  _SUPPORTGENERALCREATIONREQUEST._serialized_start=321
@@ -78,36 +78,72 @@ if _descriptor._USE_C_DESCRIPTORS == False:
78
78
  _MOMENTCREATIONRESPONSE._serialized_end=4546
79
79
  _CHANGEMOMENTSPECIFICATIONREQUEST._serialized_start=4549
80
80
  _CHANGEMOMENTSPECIFICATIONREQUEST._serialized_end=4709
81
- _SUPPORTGENERALDEFINITION._serialized_start=4712
82
- _SUPPORTGENERALDEFINITION._serialized_end=4923
83
- _SUPPORTDISPLACEDDEFINITION._serialized_start=4926
84
- _SUPPORTDISPLACEDDEFINITION._serialized_end=5213
85
- _SUPPORTDISPLACEDPROPERTIES._serialized_start=5215
86
- _SUPPORTDISPLACEDPROPERTIES._serialized_end=5317
87
- _FORCEDISTRIBUTEDDEFINITION._serialized_start=5320
88
- _FORCEDISTRIBUTEDDEFINITION._serialized_end=5544
89
- _FORCEDISTRIBUTEDPROPERTIES._serialized_start=5547
90
- _FORCEDISTRIBUTEDPROPERTIES._serialized_end=5752
91
- _FORCETORQUEDEFINITION._serialized_start=5755
92
- _FORCETORQUEDEFINITION._serialized_end=5964
93
- _FORCETORQUEPROPERTIES._serialized_start=5967
94
- _FORCETORQUEPROPERTIES._serialized_end=6105
95
- _PRESSUREPROPERTIES._serialized_start=6107
96
- _PRESSUREPROPERTIES._serialized_end=6189
97
- _PRESSUREDEFINITION._serialized_start=6192
98
- _PRESSUREDEFINITION._serialized_end=6391
99
- _DISPLACEMENTTRANSLATIONPROPERTIES._serialized_start=6394
100
- _DISPLACEMENTTRANSLATIONPROPERTIES._serialized_end=6565
101
- _DISPLACEMENTROTATIONPROPERTIES._serialized_start=6568
102
- _DISPLACEMENTROTATIONPROPERTIES._serialized_end=6732
103
- _DISPLACEMENTCOMBINEDPROPERTIES._serialized_start=6735
104
- _DISPLACEMENTCOMBINEDPROPERTIES._serialized_end=6973
105
- _DISPLACEMENTDEFINITION._serialized_start=6976
106
- _DISPLACEMENTDEFINITION._serialized_end=7195
107
- _MOMENTPROPERTIES._serialized_start=7197
108
- _MOMENTPROPERTIES._serialized_end=7271
109
- _MOMENTDEFINITION._serialized_start=7274
110
- _MOMENTDEFINITION._serialized_end=7556
111
- _CONDITIONSSTRUCTURAL._serialized_start=7877
112
- _CONDITIONSSTRUCTURAL._serialized_end=18969
81
+ _MASSCREATIONREQUEST._serialized_start=4712
82
+ _MASSCREATIONREQUEST._serialized_end=4897
83
+ _MASSCREATIONRESPONSE._serialized_start=4900
84
+ _MASSCREATIONRESPONSE._serialized_end=5088
85
+ _VELOCITYCREATIONREQUEST._serialized_start=5091
86
+ _VELOCITYCREATIONREQUEST._serialized_end=5288
87
+ _VELOCITYCREATIONRESPONSE._serialized_start=5291
88
+ _VELOCITYCREATIONRESPONSE._serialized_end=5487
89
+ _ACCELERATIONCREATIONREQUEST._serialized_start=5490
90
+ _ACCELERATIONCREATIONREQUEST._serialized_end=5699
91
+ _ACCELERATIONCREATIONRESPONSE._serialized_start=5702
92
+ _ACCELERATIONCREATIONRESPONSE._serialized_end=5906
93
+ _BEARINGCREATIONREQUEST._serialized_start=5909
94
+ _BEARINGCREATIONREQUEST._serialized_end=6103
95
+ _BEARINGCREATIONRESPONSE._serialized_start=6106
96
+ _BEARINGCREATIONRESPONSE._serialized_end=6300
97
+ _SUPPORTGENERALDEFINITION._serialized_start=6303
98
+ _SUPPORTGENERALDEFINITION._serialized_end=6514
99
+ _SUPPORTDISPLACEDDEFINITION._serialized_start=6517
100
+ _SUPPORTDISPLACEDDEFINITION._serialized_end=6804
101
+ _SUPPORTDISPLACEDPROPERTIES._serialized_start=6806
102
+ _SUPPORTDISPLACEDPROPERTIES._serialized_end=6908
103
+ _FORCEDISTRIBUTEDDEFINITION._serialized_start=6911
104
+ _FORCEDISTRIBUTEDDEFINITION._serialized_end=7135
105
+ _FORCEDISTRIBUTEDPROPERTIES._serialized_start=7138
106
+ _FORCEDISTRIBUTEDPROPERTIES._serialized_end=7343
107
+ _FORCETORQUEDEFINITION._serialized_start=7346
108
+ _FORCETORQUEDEFINITION._serialized_end=7555
109
+ _FORCETORQUEPROPERTIES._serialized_start=7558
110
+ _FORCETORQUEPROPERTIES._serialized_end=7696
111
+ _PRESSUREPROPERTIES._serialized_start=7698
112
+ _PRESSUREPROPERTIES._serialized_end=7780
113
+ _PRESSUREDEFINITION._serialized_start=7783
114
+ _PRESSUREDEFINITION._serialized_end=7982
115
+ _DISPLACEMENTTRANSLATIONPROPERTIES._serialized_start=7985
116
+ _DISPLACEMENTTRANSLATIONPROPERTIES._serialized_end=8156
117
+ _DISPLACEMENTROTATIONPROPERTIES._serialized_start=8159
118
+ _DISPLACEMENTROTATIONPROPERTIES._serialized_end=8323
119
+ _DISPLACEMENTCOMBINEDPROPERTIES._serialized_start=8326
120
+ _DISPLACEMENTCOMBINEDPROPERTIES._serialized_end=8564
121
+ _DISPLACEMENTDEFINITION._serialized_start=8567
122
+ _DISPLACEMENTDEFINITION._serialized_end=8786
123
+ _MOMENTPROPERTIES._serialized_start=8788
124
+ _MOMENTPROPERTIES._serialized_end=8862
125
+ _MOMENTDEFINITION._serialized_start=8865
126
+ _MOMENTDEFINITION._serialized_end=9147
127
+ _MASSPROPERTIES._serialized_start=9150
128
+ _MASSPROPERTIES._serialized_end=9286
129
+ _MASSDEFINITION._serialized_start=9289
130
+ _MASSDEFINITION._serialized_end=9476
131
+ _VELOCITYPROPERTIES._serialized_start=9479
132
+ _VELOCITYPROPERTIES._serialized_end=9631
133
+ _VELOCITYDEFINITION._serialized_start=9634
134
+ _VELOCITYDEFINITION._serialized_end=9833
135
+ _ACCELERATIONPROPERTIES._serialized_start=9835
136
+ _ACCELERATIONPROPERTIES._serialized_end=9933
137
+ _ACCELERATIONDEFINITION._serialized_start=9936
138
+ _ACCELERATIONDEFINITION._serialized_end=10147
139
+ _GRAVITYPROPERTIES._serialized_start=10150
140
+ _GRAVITYPROPERTIES._serialized_end=10298
141
+ _GRAVITYDEFINITION._serialized_start=10301
142
+ _GRAVITYDEFINITION._serialized_end=10497
143
+ _BEARINGPROPERTIES._serialized_start=10500
144
+ _BEARINGPROPERTIES._serialized_end=10680
145
+ _BEARINGDEFINITION._serialized_start=10683
146
+ _BEARINGDEFINITION._serialized_end=10879
147
+ _CONDITIONSSTRUCTURAL._serialized_start=11200
148
+ _CONDITIONSSTRUCTURAL._serialized_end=27517
113
149
  # @@protoc_insertion_point(module_scope)