luminarycloud 0.22.1__py3-none-any.whl → 0.22.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.
Files changed (78) hide show
  1. luminarycloud/_client/client.py +5 -3
  2. luminarycloud/_client/retry_interceptor.py +13 -2
  3. luminarycloud/_helpers/__init__.py +9 -0
  4. luminarycloud/_helpers/_inference_jobs.py +227 -0
  5. luminarycloud/_helpers/_parse_iso_datetime.py +54 -0
  6. luminarycloud/_helpers/proto_decorator.py +38 -7
  7. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +45 -25
  8. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +30 -0
  9. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
  10. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
  11. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py +25 -3
  12. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.pyi +30 -0
  13. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.py +34 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.pyi +12 -0
  15. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +140 -45
  16. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +322 -8
  17. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +68 -0
  18. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +24 -0
  19. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.py +93 -33
  20. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.pyi +105 -0
  21. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.py +70 -0
  22. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.pyi +29 -0
  23. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +29 -7
  24. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +39 -0
  25. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +36 -0
  26. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +18 -0
  27. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +70 -70
  28. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +5 -5
  29. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +163 -153
  30. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +37 -3
  31. luminarycloud/_proto/client/simulation_pb2.py +356 -337
  32. luminarycloud/_proto/client/simulation_pb2.pyi +89 -3
  33. luminarycloud/_proto/lcstatus/details/geometry/geometry_pb2.py +256 -0
  34. luminarycloud/_proto/lcstatus/details/geometry/geometry_pb2.pyi +472 -0
  35. luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.py +9 -4
  36. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +6 -3
  37. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +68 -0
  38. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +24 -0
  39. luminarycloud/_proto/quantity/quantity_pb2.pyi +1 -1
  40. luminarycloud/_wrapper.py +53 -7
  41. luminarycloud/feature_modification.py +25 -32
  42. luminarycloud/geometry.py +6 -6
  43. luminarycloud/outputs/__init__.py +2 -0
  44. luminarycloud/outputs/output_definitions.py +3 -3
  45. luminarycloud/outputs/stopping_conditions.py +94 -0
  46. luminarycloud/params/enum/_enum_wrappers.py +16 -0
  47. luminarycloud/params/geometry/shapes.py +33 -33
  48. luminarycloud/params/simulation/adaptive_mesh_refinement/__init__.py +1 -0
  49. luminarycloud/params/simulation/adaptive_mesh_refinement/active_region_.py +83 -0
  50. luminarycloud/params/simulation/adaptive_mesh_refinement/boundary_layer_profile_.py +1 -1
  51. luminarycloud/params/simulation/adaptive_mesh_refinement_.py +8 -1
  52. luminarycloud/physics_ai/__init__.py +15 -0
  53. luminarycloud/physics_ai/architectures.py +1 -1
  54. luminarycloud/physics_ai/datasets.py +246 -0
  55. luminarycloud/physics_ai/inference.py +166 -199
  56. luminarycloud/physics_ai/models.py +22 -0
  57. luminarycloud/pipelines/__init__.py +11 -0
  58. luminarycloud/pipelines/api.py +106 -9
  59. luminarycloud/pipelines/core.py +358 -45
  60. luminarycloud/pipelines/flowables.py +138 -0
  61. luminarycloud/pipelines/stages.py +7 -31
  62. luminarycloud/project.py +56 -2
  63. luminarycloud/simulation.py +25 -0
  64. luminarycloud/types/__init__.py +2 -0
  65. luminarycloud/types/ids.py +2 -0
  66. luminarycloud/vis/__init__.py +1 -0
  67. luminarycloud/vis/filters.py +97 -0
  68. luminarycloud/vis/visualization.py +3 -0
  69. luminarycloud/volume_selection.py +6 -6
  70. luminarycloud/workflow_utils.py +149 -0
  71. {luminarycloud-0.22.1.dist-info → luminarycloud-0.22.3.dist-info}/METADATA +1 -1
  72. {luminarycloud-0.22.1.dist-info → luminarycloud-0.22.3.dist-info}/RECORD +73 -70
  73. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +0 -61
  74. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +0 -85
  75. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.py +0 -67
  76. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.pyi +0 -26
  77. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +0 -69
  78. {luminarycloud-0.22.1.dist-info → luminarycloud-0.22.3.dist-info}/WHEEL +0 -0
@@ -9,6 +9,7 @@ import google.protobuf.internal.containers
9
9
  import google.protobuf.internal.enum_type_wrapper
10
10
  import google.protobuf.message
11
11
  import luminarycloud._proto.base.base_pb2
12
+ import luminarycloud._proto.cad.shape_pb2
12
13
  import luminarycloud._proto.client.entity_pb2
13
14
  import luminarycloud._proto.entitygroup.entitygroup_pb2
14
15
  import luminarycloud._proto.output.output_pb2
@@ -740,6 +741,14 @@ class _PtTableFluidEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._E
740
741
  """R410A."""
741
742
  REAL_GAS_R507A: _PtTableFluid.ValueType # 56561
742
743
  """R507A."""
744
+ REAL_GAS_R513A: _PtTableFluid.ValueType # 13621
745
+ """R513A."""
746
+ REAL_GAS_R513B: _PtTableFluid.ValueType # 5656
747
+ """R513B."""
748
+ REAL_GAS_R515A: _PtTableFluid.ValueType # 55001
749
+ """R515A."""
750
+ REAL_GAS_R515B: _PtTableFluid.ValueType # 5076
751
+ """R515B."""
743
752
  REAL_GAS_RC318: _PtTableFluid.ValueType # 66529
744
753
  """RC318."""
745
754
  REAL_GAS_SES36: _PtTableFluid.ValueType # 14408
@@ -990,6 +999,14 @@ REAL_GAS_R410A: PtTableFluid.ValueType # 59981
990
999
  """R410A."""
991
1000
  REAL_GAS_R507A: PtTableFluid.ValueType # 56561
992
1001
  """R507A."""
1002
+ REAL_GAS_R513A: PtTableFluid.ValueType # 13621
1003
+ """R513A."""
1004
+ REAL_GAS_R513B: PtTableFluid.ValueType # 5656
1005
+ """R513B."""
1006
+ REAL_GAS_R515A: PtTableFluid.ValueType # 55001
1007
+ """R515A."""
1008
+ REAL_GAS_R515B: PtTableFluid.ValueType # 5076
1009
+ """R515B."""
993
1010
  REAL_GAS_RC318: PtTableFluid.ValueType # 66529
994
1011
  """RC318."""
995
1012
  REAL_GAS_SES36: PtTableFluid.ValueType # 14408
@@ -4469,7 +4486,7 @@ class ReferenceValues(google.protobuf.message.Message):
4469
4486
  global___ReferenceValues = ReferenceValues
4470
4487
 
4471
4488
  class BoundaryLayerProfile(google.protobuf.message.Message):
4472
- """TODO: no help"""
4489
+ """Boundary layer meshing parameters to apply to adapted meshes."""
4473
4490
 
4474
4491
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
4475
4492
 
@@ -4502,6 +4519,67 @@ class BoundaryLayerProfile(google.protobuf.message.Message):
4502
4519
 
4503
4520
  global___BoundaryLayerProfile = BoundaryLayerProfile
4504
4521
 
4522
+ class ActiveRegion(google.protobuf.message.Message):
4523
+ """Region(s) within which the mesh is adapted at full resolution. Outside
4524
+ of these regions the mesh is coarsened with increasing distance from the
4525
+ region.
4526
+ """
4527
+
4528
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
4529
+
4530
+ ERROR_WEIGHT_FIELD_NUMBER: builtins.int
4531
+ MAX_DISTANCE_FIELD_NUMBER: builtins.int
4532
+ CUBE_FIELD_NUMBER: builtins.int
4533
+ ORIENTED_CUBE_FIELD_NUMBER: builtins.int
4534
+ CYLINDER_FIELD_NUMBER: builtins.int
4535
+ ANNULAR_CYLINDER_FIELD_NUMBER: builtins.int
4536
+ SPHERE_FIELD_NUMBER: builtins.int
4537
+ SPHERE_SHELL_FIELD_NUMBER: builtins.int
4538
+ @property
4539
+ def error_weight(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
4540
+ """Error weighting from the active region at Max Distance. Local error
4541
+ weighting is 1.0 inside the region and decreases to Error Weight at the Max
4542
+ Distance.
4543
+ """
4544
+ @property
4545
+ def max_distance(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
4546
+ """Distance from the active regions at which to apply the full error factor."""
4547
+ @property
4548
+ def cube(self) -> luminarycloud._proto.cad.shape_pb2.Cube:
4549
+ """Coordinate-aligned box."""
4550
+ @property
4551
+ def oriented_cube(self) -> luminarycloud._proto.cad.shape_pb2.OrientedCube:
4552
+ """Box oriented along arbitrary axes."""
4553
+ @property
4554
+ def cylinder(self) -> luminarycloud._proto.cad.shape_pb2.Cylinder:
4555
+ """Cylinder shape."""
4556
+ @property
4557
+ def annular_cylinder(self) -> luminarycloud._proto.cad.shape_pb2.AnnularCylinder:
4558
+ """Cylinder with a hole along the axis."""
4559
+ @property
4560
+ def sphere(self) -> luminarycloud._proto.cad.shape_pb2.Sphere:
4561
+ """Sphere shape."""
4562
+ @property
4563
+ def sphere_shell(self) -> luminarycloud._proto.cad.shape_pb2.SphereShell:
4564
+ """Spherical shell shape."""
4565
+ def __init__(
4566
+ self,
4567
+ *,
4568
+ error_weight: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
4569
+ max_distance: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
4570
+ cube: luminarycloud._proto.cad.shape_pb2.Cube | None = ...,
4571
+ oriented_cube: luminarycloud._proto.cad.shape_pb2.OrientedCube | None = ...,
4572
+ cylinder: luminarycloud._proto.cad.shape_pb2.Cylinder | None = ...,
4573
+ annular_cylinder: luminarycloud._proto.cad.shape_pb2.AnnularCylinder | None = ...,
4574
+ sphere: luminarycloud._proto.cad.shape_pb2.Sphere | None = ...,
4575
+ sphere_shell: luminarycloud._proto.cad.shape_pb2.SphereShell | None = ...,
4576
+ ) -> None: ...
4577
+ def HasField(self, field_name: typing_extensions.Literal["annular_cylinder", b"annular_cylinder", "cube", b"cube", "cylinder", b"cylinder", "error_weight", b"error_weight", "max_distance", b"max_distance", "oriented_cube", b"oriented_cube", "shape", b"shape", "sphere", b"sphere", "sphere_shell", b"sphere_shell"]) -> builtins.bool: ...
4578
+ def ClearField(self, field_name: typing_extensions.Literal["annular_cylinder", b"annular_cylinder", "cube", b"cube", "cylinder", b"cylinder", "error_weight", b"error_weight", "max_distance", b"max_distance", "oriented_cube", b"oriented_cube", "shape", b"shape", "sphere", b"sphere", "sphere_shell", b"sphere_shell"]) -> None: ...
4579
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["shape", b"shape"]) -> typing_extensions.Literal["cube", "oriented_cube", "cylinder", "annular_cylinder", "sphere", "sphere_shell"] | None: ...
4580
+
4581
+ global___ActiveRegion = ActiveRegion
4582
+
4505
4583
  class AdaptiveMeshRefinement(google.protobuf.message.Message):
4506
4584
  """Adaptive Mesh Refinement"""
4507
4585
 
@@ -4517,6 +4595,7 @@ class AdaptiveMeshRefinement(google.protobuf.message.Message):
4517
4595
  ALL_TET_FIELD_NUMBER: builtins.int
4518
4596
  USER_SCALING_FIELD_NUMBER: builtins.int
4519
4597
  BOUNDARY_LAYER_PROFILE_FIELD_NUMBER: builtins.int
4598
+ ACTIVE_REGION_FIELD_NUMBER: builtins.int
4520
4599
  @property
4521
4600
  def refinement_iterations(self) -> luminarycloud._proto.base.base_pb2.Int:
4522
4601
  """Number of refinement iterations to perform."""
@@ -4546,7 +4625,13 @@ class AdaptiveMeshRefinement(google.protobuf.message.Message):
4546
4625
  """Scale factor between the geometry and the mesh."""
4547
4626
  @property
4548
4627
  def boundary_layer_profile(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___BoundaryLayerProfile]:
4549
- """TODO: no help"""
4628
+ """Boundary layer meshing parameters to apply to adapted meshes."""
4629
+ @property
4630
+ def active_region(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ActiveRegion]:
4631
+ """Region(s) within which the mesh is adapted at full resolution. Outside
4632
+ of these regions the mesh is coarsened with increasing distance from the
4633
+ region.
4634
+ """
4550
4635
  def __init__(
4551
4636
  self,
4552
4637
  *,
@@ -4560,9 +4645,10 @@ class AdaptiveMeshRefinement(google.protobuf.message.Message):
4560
4645
  all_tet: global___AllTet.ValueType = ...,
4561
4646
  user_scaling: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
4562
4647
  boundary_layer_profile: collections.abc.Iterable[global___BoundaryLayerProfile] | None = ...,
4648
+ active_region: collections.abc.Iterable[global___ActiveRegion] | None = ...,
4563
4649
  ) -> None: ...
4564
4650
  def HasField(self, field_name: typing_extensions.Literal["final_target_complexity", b"final_target_complexity", "initial_target_complexity", b"initial_target_complexity", "max_refinement_interval", b"max_refinement_interval", "refinement_dispatch_interval", b"refinement_dispatch_interval", "refinement_iterations", b"refinement_iterations", "target_cv_millions", b"target_cv_millions", "user_scaling", b"user_scaling"]) -> builtins.bool: ...
4565
- def ClearField(self, field_name: typing_extensions.Literal["all_tet", b"all_tet", "boundary_layer_profile", b"boundary_layer_profile", "final_target_complexity", b"final_target_complexity", "initial_target_complexity", b"initial_target_complexity", "max_refinement_interval", b"max_refinement_interval", "meshing_method", b"meshing_method", "refinement_dispatch_interval", b"refinement_dispatch_interval", "refinement_iterations", b"refinement_iterations", "target_cv_millions", b"target_cv_millions", "user_scaling", b"user_scaling"]) -> None: ...
4651
+ def ClearField(self, field_name: typing_extensions.Literal["active_region", b"active_region", "all_tet", b"all_tet", "boundary_layer_profile", b"boundary_layer_profile", "final_target_complexity", b"final_target_complexity", "initial_target_complexity", b"initial_target_complexity", "max_refinement_interval", b"max_refinement_interval", "meshing_method", b"meshing_method", "refinement_dispatch_interval", b"refinement_dispatch_interval", "refinement_iterations", b"refinement_iterations", "target_cv_millions", b"target_cv_millions", "user_scaling", b"user_scaling"]) -> None: ...
4566
4652
 
4567
4653
  global___AdaptiveMeshRefinement = AdaptiveMeshRefinement
4568
4654
 
@@ -0,0 +1,256 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: proto/lcstatus/details/geometry/geometry.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
16
+
17
+
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.proto/lcstatus/details/geometry/geometry.proto\x12(luminary.proto.lcstatus.details.geometry\x1a\x15proto/base/base.proto\"]\n\x06Vertex\x12\x19\n\x11\x61\x64jacent_surfaces\x18\x01 \x03(\t\x12,\n\x06\x63oords\x18\x02 \x01(\x0b\x32\x1c.luminary.proto.base.Vector3\x12\n\n\x02id\x18\x03 \x01(\t\"-\n\x04\x45\x64ge\x12\x19\n\x11\x61\x64jacent_surfaces\x18\x01 \x03(\t\x12\n\n\x02id\x18\x02 \x01(\t\"\xa3\x01\n\x19GeoVertexDuplicateDetails\x12\x42\n\x08vertex_1\x18\x01 \x01(\x0b\x32\x30.luminary.proto.lcstatus.details.geometry.Vertex\x12\x42\n\x08vertex_2\x18\x02 \x01(\x0b\x32\x30.luminary.proto.lcstatus.details.geometry.Vertex\"X\n\x18GeoEdgeUnmeshableDetails\x12<\n\x04\x65\x64ge\x18\x01 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"W\n\x17GeoEdgeNotSmoothDetails\x12<\n\x04\x65\x64ge\x18\x01 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"o\n\x1cGeoEdgeLargeToleranceDetails\x12<\n\x04\x65\x64ge\x18\x01 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\x12\x11\n\ttolerance\x18\x02 \x01(\x01\".\n\x18GeoFaceUnmeshableDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"G\n\x1bGeoFaceEdgesTooCloseDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12\x14\n\x0c\x61spect_ratio\x18\x02 \x01(\x01\"0\n\x1aGeoFaceEdgeTooSmallDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"L\n\x1eGeoFaceFaceIntersectionDetails\x12\x14\n\x0csurface_1_id\x18\x01 \x01(\t\x12\x14\n\x0csurface_2_id\x18\x02 \x01(\t\"4\n\x1eGeoFaceSelfIntersectionDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"-\n\x17GeoFaceNotSmoothDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"E\n\x1cGeoFaceLargeToleranceDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12\x11\n\ttolerance\x18\x02 \x01(\x01\"\xad\x01\n\x17GeoFaceEdgeCrossDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12>\n\x06\x65\x64ge_1\x18\x02 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\x12>\n\x06\x65\x64ge_2\x18\x03 \x01(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"0\n\x1aGeoFaceNeedsImprintDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\"<\n\x1dGeoContactNeedsImprintDetails\x12\x1b\n\x13geometry_contact_id\x18\x01 \x01(\t\">\n\x18GeoFacePoorApproxDetails\x12\x12\n\nsurface_id\x18\x01 \x01(\t\x12\x0e\n\x06\x61pprox\x18\x02 \x01(\x01\"n\n\x14GeoVolumeOpenDetails\x12\x12\n\nvolumes_id\x18\x01 \x01(\r\x12\x42\n\nopen_edges\x18\x02 \x03(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"|\n\x1bGeoVolumeNonManifoldDetails\x12\x11\n\tvolume_id\x18\x01 \x01(\r\x12J\n\x12non_manifold_edges\x18\x02 \x03(\x0b\x32..luminary.proto.lcstatus.details.geometry.Edge\"/\n\x1aGeoVolumeUnmeshableDetails\x12\x11\n\tvolume_id\x18\x01 \x01(\r\"0\n\x1dGeoFeatureUnknownErrorDetails\x12\x0f\n\x07message\x18\x01 \x01(\t\"2\n\x1fGeoFeatureOnshapeWarningDetails\x12\x0f\n\x07message\x18\x01 \x01(\t\"1\n\x1eGeoWorkerInvalidRequestDetails\x12\x0f\n\x07message\x18\x01 \x01(\tB8Z6luminarycloud.com/core/proto/lcstatus/details/geometryb\x06proto3')
19
+
20
+
21
+
22
+ _VERTEX = DESCRIPTOR.message_types_by_name['Vertex']
23
+ _EDGE = DESCRIPTOR.message_types_by_name['Edge']
24
+ _GEOVERTEXDUPLICATEDETAILS = DESCRIPTOR.message_types_by_name['GeoVertexDuplicateDetails']
25
+ _GEOEDGEUNMESHABLEDETAILS = DESCRIPTOR.message_types_by_name['GeoEdgeUnmeshableDetails']
26
+ _GEOEDGENOTSMOOTHDETAILS = DESCRIPTOR.message_types_by_name['GeoEdgeNotSmoothDetails']
27
+ _GEOEDGELARGETOLERANCEDETAILS = DESCRIPTOR.message_types_by_name['GeoEdgeLargeToleranceDetails']
28
+ _GEOFACEUNMESHABLEDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceUnmeshableDetails']
29
+ _GEOFACEEDGESTOOCLOSEDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceEdgesTooCloseDetails']
30
+ _GEOFACEEDGETOOSMALLDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceEdgeTooSmallDetails']
31
+ _GEOFACEFACEINTERSECTIONDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceFaceIntersectionDetails']
32
+ _GEOFACESELFINTERSECTIONDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceSelfIntersectionDetails']
33
+ _GEOFACENOTSMOOTHDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceNotSmoothDetails']
34
+ _GEOFACELARGETOLERANCEDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceLargeToleranceDetails']
35
+ _GEOFACEEDGECROSSDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceEdgeCrossDetails']
36
+ _GEOFACENEEDSIMPRINTDETAILS = DESCRIPTOR.message_types_by_name['GeoFaceNeedsImprintDetails']
37
+ _GEOCONTACTNEEDSIMPRINTDETAILS = DESCRIPTOR.message_types_by_name['GeoContactNeedsImprintDetails']
38
+ _GEOFACEPOORAPPROXDETAILS = DESCRIPTOR.message_types_by_name['GeoFacePoorApproxDetails']
39
+ _GEOVOLUMEOPENDETAILS = DESCRIPTOR.message_types_by_name['GeoVolumeOpenDetails']
40
+ _GEOVOLUMENONMANIFOLDDETAILS = DESCRIPTOR.message_types_by_name['GeoVolumeNonManifoldDetails']
41
+ _GEOVOLUMEUNMESHABLEDETAILS = DESCRIPTOR.message_types_by_name['GeoVolumeUnmeshableDetails']
42
+ _GEOFEATUREUNKNOWNERRORDETAILS = DESCRIPTOR.message_types_by_name['GeoFeatureUnknownErrorDetails']
43
+ _GEOFEATUREONSHAPEWARNINGDETAILS = DESCRIPTOR.message_types_by_name['GeoFeatureOnshapeWarningDetails']
44
+ _GEOWORKERINVALIDREQUESTDETAILS = DESCRIPTOR.message_types_by_name['GeoWorkerInvalidRequestDetails']
45
+ Vertex = _reflection.GeneratedProtocolMessageType('Vertex', (_message.Message,), {
46
+ 'DESCRIPTOR' : _VERTEX,
47
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
48
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.Vertex)
49
+ })
50
+ _sym_db.RegisterMessage(Vertex)
51
+
52
+ Edge = _reflection.GeneratedProtocolMessageType('Edge', (_message.Message,), {
53
+ 'DESCRIPTOR' : _EDGE,
54
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
55
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.Edge)
56
+ })
57
+ _sym_db.RegisterMessage(Edge)
58
+
59
+ GeoVertexDuplicateDetails = _reflection.GeneratedProtocolMessageType('GeoVertexDuplicateDetails', (_message.Message,), {
60
+ 'DESCRIPTOR' : _GEOVERTEXDUPLICATEDETAILS,
61
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
62
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVertexDuplicateDetails)
63
+ })
64
+ _sym_db.RegisterMessage(GeoVertexDuplicateDetails)
65
+
66
+ GeoEdgeUnmeshableDetails = _reflection.GeneratedProtocolMessageType('GeoEdgeUnmeshableDetails', (_message.Message,), {
67
+ 'DESCRIPTOR' : _GEOEDGEUNMESHABLEDETAILS,
68
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
69
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoEdgeUnmeshableDetails)
70
+ })
71
+ _sym_db.RegisterMessage(GeoEdgeUnmeshableDetails)
72
+
73
+ GeoEdgeNotSmoothDetails = _reflection.GeneratedProtocolMessageType('GeoEdgeNotSmoothDetails', (_message.Message,), {
74
+ 'DESCRIPTOR' : _GEOEDGENOTSMOOTHDETAILS,
75
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
76
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoEdgeNotSmoothDetails)
77
+ })
78
+ _sym_db.RegisterMessage(GeoEdgeNotSmoothDetails)
79
+
80
+ GeoEdgeLargeToleranceDetails = _reflection.GeneratedProtocolMessageType('GeoEdgeLargeToleranceDetails', (_message.Message,), {
81
+ 'DESCRIPTOR' : _GEOEDGELARGETOLERANCEDETAILS,
82
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
83
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoEdgeLargeToleranceDetails)
84
+ })
85
+ _sym_db.RegisterMessage(GeoEdgeLargeToleranceDetails)
86
+
87
+ GeoFaceUnmeshableDetails = _reflection.GeneratedProtocolMessageType('GeoFaceUnmeshableDetails', (_message.Message,), {
88
+ 'DESCRIPTOR' : _GEOFACEUNMESHABLEDETAILS,
89
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
90
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceUnmeshableDetails)
91
+ })
92
+ _sym_db.RegisterMessage(GeoFaceUnmeshableDetails)
93
+
94
+ GeoFaceEdgesTooCloseDetails = _reflection.GeneratedProtocolMessageType('GeoFaceEdgesTooCloseDetails', (_message.Message,), {
95
+ 'DESCRIPTOR' : _GEOFACEEDGESTOOCLOSEDETAILS,
96
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
97
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceEdgesTooCloseDetails)
98
+ })
99
+ _sym_db.RegisterMessage(GeoFaceEdgesTooCloseDetails)
100
+
101
+ GeoFaceEdgeTooSmallDetails = _reflection.GeneratedProtocolMessageType('GeoFaceEdgeTooSmallDetails', (_message.Message,), {
102
+ 'DESCRIPTOR' : _GEOFACEEDGETOOSMALLDETAILS,
103
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
104
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceEdgeTooSmallDetails)
105
+ })
106
+ _sym_db.RegisterMessage(GeoFaceEdgeTooSmallDetails)
107
+
108
+ GeoFaceFaceIntersectionDetails = _reflection.GeneratedProtocolMessageType('GeoFaceFaceIntersectionDetails', (_message.Message,), {
109
+ 'DESCRIPTOR' : _GEOFACEFACEINTERSECTIONDETAILS,
110
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
111
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceFaceIntersectionDetails)
112
+ })
113
+ _sym_db.RegisterMessage(GeoFaceFaceIntersectionDetails)
114
+
115
+ GeoFaceSelfIntersectionDetails = _reflection.GeneratedProtocolMessageType('GeoFaceSelfIntersectionDetails', (_message.Message,), {
116
+ 'DESCRIPTOR' : _GEOFACESELFINTERSECTIONDETAILS,
117
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
118
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceSelfIntersectionDetails)
119
+ })
120
+ _sym_db.RegisterMessage(GeoFaceSelfIntersectionDetails)
121
+
122
+ GeoFaceNotSmoothDetails = _reflection.GeneratedProtocolMessageType('GeoFaceNotSmoothDetails', (_message.Message,), {
123
+ 'DESCRIPTOR' : _GEOFACENOTSMOOTHDETAILS,
124
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
125
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceNotSmoothDetails)
126
+ })
127
+ _sym_db.RegisterMessage(GeoFaceNotSmoothDetails)
128
+
129
+ GeoFaceLargeToleranceDetails = _reflection.GeneratedProtocolMessageType('GeoFaceLargeToleranceDetails', (_message.Message,), {
130
+ 'DESCRIPTOR' : _GEOFACELARGETOLERANCEDETAILS,
131
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
132
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceLargeToleranceDetails)
133
+ })
134
+ _sym_db.RegisterMessage(GeoFaceLargeToleranceDetails)
135
+
136
+ GeoFaceEdgeCrossDetails = _reflection.GeneratedProtocolMessageType('GeoFaceEdgeCrossDetails', (_message.Message,), {
137
+ 'DESCRIPTOR' : _GEOFACEEDGECROSSDETAILS,
138
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
139
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceEdgeCrossDetails)
140
+ })
141
+ _sym_db.RegisterMessage(GeoFaceEdgeCrossDetails)
142
+
143
+ GeoFaceNeedsImprintDetails = _reflection.GeneratedProtocolMessageType('GeoFaceNeedsImprintDetails', (_message.Message,), {
144
+ 'DESCRIPTOR' : _GEOFACENEEDSIMPRINTDETAILS,
145
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
146
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFaceNeedsImprintDetails)
147
+ })
148
+ _sym_db.RegisterMessage(GeoFaceNeedsImprintDetails)
149
+
150
+ GeoContactNeedsImprintDetails = _reflection.GeneratedProtocolMessageType('GeoContactNeedsImprintDetails', (_message.Message,), {
151
+ 'DESCRIPTOR' : _GEOCONTACTNEEDSIMPRINTDETAILS,
152
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
153
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoContactNeedsImprintDetails)
154
+ })
155
+ _sym_db.RegisterMessage(GeoContactNeedsImprintDetails)
156
+
157
+ GeoFacePoorApproxDetails = _reflection.GeneratedProtocolMessageType('GeoFacePoorApproxDetails', (_message.Message,), {
158
+ 'DESCRIPTOR' : _GEOFACEPOORAPPROXDETAILS,
159
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
160
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFacePoorApproxDetails)
161
+ })
162
+ _sym_db.RegisterMessage(GeoFacePoorApproxDetails)
163
+
164
+ GeoVolumeOpenDetails = _reflection.GeneratedProtocolMessageType('GeoVolumeOpenDetails', (_message.Message,), {
165
+ 'DESCRIPTOR' : _GEOVOLUMEOPENDETAILS,
166
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
167
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVolumeOpenDetails)
168
+ })
169
+ _sym_db.RegisterMessage(GeoVolumeOpenDetails)
170
+
171
+ GeoVolumeNonManifoldDetails = _reflection.GeneratedProtocolMessageType('GeoVolumeNonManifoldDetails', (_message.Message,), {
172
+ 'DESCRIPTOR' : _GEOVOLUMENONMANIFOLDDETAILS,
173
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
174
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVolumeNonManifoldDetails)
175
+ })
176
+ _sym_db.RegisterMessage(GeoVolumeNonManifoldDetails)
177
+
178
+ GeoVolumeUnmeshableDetails = _reflection.GeneratedProtocolMessageType('GeoVolumeUnmeshableDetails', (_message.Message,), {
179
+ 'DESCRIPTOR' : _GEOVOLUMEUNMESHABLEDETAILS,
180
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
181
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoVolumeUnmeshableDetails)
182
+ })
183
+ _sym_db.RegisterMessage(GeoVolumeUnmeshableDetails)
184
+
185
+ GeoFeatureUnknownErrorDetails = _reflection.GeneratedProtocolMessageType('GeoFeatureUnknownErrorDetails', (_message.Message,), {
186
+ 'DESCRIPTOR' : _GEOFEATUREUNKNOWNERRORDETAILS,
187
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
188
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFeatureUnknownErrorDetails)
189
+ })
190
+ _sym_db.RegisterMessage(GeoFeatureUnknownErrorDetails)
191
+
192
+ GeoFeatureOnshapeWarningDetails = _reflection.GeneratedProtocolMessageType('GeoFeatureOnshapeWarningDetails', (_message.Message,), {
193
+ 'DESCRIPTOR' : _GEOFEATUREONSHAPEWARNINGDETAILS,
194
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
195
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoFeatureOnshapeWarningDetails)
196
+ })
197
+ _sym_db.RegisterMessage(GeoFeatureOnshapeWarningDetails)
198
+
199
+ GeoWorkerInvalidRequestDetails = _reflection.GeneratedProtocolMessageType('GeoWorkerInvalidRequestDetails', (_message.Message,), {
200
+ 'DESCRIPTOR' : _GEOWORKERINVALIDREQUESTDETAILS,
201
+ '__module__' : 'proto.lcstatus.details.geometry.geometry_pb2'
202
+ # @@protoc_insertion_point(class_scope:luminary.proto.lcstatus.details.geometry.GeoWorkerInvalidRequestDetails)
203
+ })
204
+ _sym_db.RegisterMessage(GeoWorkerInvalidRequestDetails)
205
+
206
+ if _descriptor._USE_C_DESCRIPTORS == False:
207
+
208
+ DESCRIPTOR._options = None
209
+ DESCRIPTOR._serialized_options = b'Z6luminarycloud.com/core/proto/lcstatus/details/geometry'
210
+ _VERTEX._serialized_start=115
211
+ _VERTEX._serialized_end=208
212
+ _EDGE._serialized_start=210
213
+ _EDGE._serialized_end=255
214
+ _GEOVERTEXDUPLICATEDETAILS._serialized_start=258
215
+ _GEOVERTEXDUPLICATEDETAILS._serialized_end=421
216
+ _GEOEDGEUNMESHABLEDETAILS._serialized_start=423
217
+ _GEOEDGEUNMESHABLEDETAILS._serialized_end=511
218
+ _GEOEDGENOTSMOOTHDETAILS._serialized_start=513
219
+ _GEOEDGENOTSMOOTHDETAILS._serialized_end=600
220
+ _GEOEDGELARGETOLERANCEDETAILS._serialized_start=602
221
+ _GEOEDGELARGETOLERANCEDETAILS._serialized_end=713
222
+ _GEOFACEUNMESHABLEDETAILS._serialized_start=715
223
+ _GEOFACEUNMESHABLEDETAILS._serialized_end=761
224
+ _GEOFACEEDGESTOOCLOSEDETAILS._serialized_start=763
225
+ _GEOFACEEDGESTOOCLOSEDETAILS._serialized_end=834
226
+ _GEOFACEEDGETOOSMALLDETAILS._serialized_start=836
227
+ _GEOFACEEDGETOOSMALLDETAILS._serialized_end=884
228
+ _GEOFACEFACEINTERSECTIONDETAILS._serialized_start=886
229
+ _GEOFACEFACEINTERSECTIONDETAILS._serialized_end=962
230
+ _GEOFACESELFINTERSECTIONDETAILS._serialized_start=964
231
+ _GEOFACESELFINTERSECTIONDETAILS._serialized_end=1016
232
+ _GEOFACENOTSMOOTHDETAILS._serialized_start=1018
233
+ _GEOFACENOTSMOOTHDETAILS._serialized_end=1063
234
+ _GEOFACELARGETOLERANCEDETAILS._serialized_start=1065
235
+ _GEOFACELARGETOLERANCEDETAILS._serialized_end=1134
236
+ _GEOFACEEDGECROSSDETAILS._serialized_start=1137
237
+ _GEOFACEEDGECROSSDETAILS._serialized_end=1310
238
+ _GEOFACENEEDSIMPRINTDETAILS._serialized_start=1312
239
+ _GEOFACENEEDSIMPRINTDETAILS._serialized_end=1360
240
+ _GEOCONTACTNEEDSIMPRINTDETAILS._serialized_start=1362
241
+ _GEOCONTACTNEEDSIMPRINTDETAILS._serialized_end=1422
242
+ _GEOFACEPOORAPPROXDETAILS._serialized_start=1424
243
+ _GEOFACEPOORAPPROXDETAILS._serialized_end=1486
244
+ _GEOVOLUMEOPENDETAILS._serialized_start=1488
245
+ _GEOVOLUMEOPENDETAILS._serialized_end=1598
246
+ _GEOVOLUMENONMANIFOLDDETAILS._serialized_start=1600
247
+ _GEOVOLUMENONMANIFOLDDETAILS._serialized_end=1724
248
+ _GEOVOLUMEUNMESHABLEDETAILS._serialized_start=1726
249
+ _GEOVOLUMEUNMESHABLEDETAILS._serialized_end=1773
250
+ _GEOFEATUREUNKNOWNERRORDETAILS._serialized_start=1775
251
+ _GEOFEATUREUNKNOWNERRORDETAILS._serialized_end=1823
252
+ _GEOFEATUREONSHAPEWARNINGDETAILS._serialized_start=1825
253
+ _GEOFEATUREONSHAPEWARNINGDETAILS._serialized_end=1875
254
+ _GEOWORKERINVALIDREQUESTDETAILS._serialized_start=1877
255
+ _GEOWORKERINVALIDREQUESTDETAILS._serialized_end=1926
256
+ # @@protoc_insertion_point(module_scope)