luminarycloud 0.21.2__py3-none-any.whl → 0.22.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. luminarycloud/__init__.py +3 -1
  2. luminarycloud/_client/authentication_plugin.py +49 -0
  3. luminarycloud/_client/client.py +38 -8
  4. luminarycloud/_client/http_client.py +1 -1
  5. luminarycloud/_client/retry_interceptor.py +64 -2
  6. luminarycloud/_feature_flag.py +22 -0
  7. luminarycloud/_helpers/_create_simulation.py +7 -2
  8. luminarycloud/_helpers/download.py +11 -0
  9. luminarycloud/_helpers/proto_decorator.py +13 -5
  10. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.py +55 -0
  11. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.pyi +52 -0
  12. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.py +72 -0
  13. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.pyi +35 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +132 -132
  15. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +36 -8
  16. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
  17. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -1
  18. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +53 -23
  19. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +54 -1
  20. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.py +195 -0
  21. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.pyi +361 -0
  22. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.py +172 -0
  23. luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.pyi +66 -0
  24. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
  25. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +68 -3
  26. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +34 -0
  27. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +12 -0
  28. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +33 -31
  29. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +23 -2
  30. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +88 -65
  31. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +42 -0
  32. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +34 -0
  33. luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +12 -0
  34. luminarycloud/_proto/base/base_pb2.py +7 -6
  35. luminarycloud/_proto/base/base_pb2.pyi +4 -0
  36. luminarycloud/_proto/cad/shape_pb2.py +39 -19
  37. luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
  38. luminarycloud/_proto/client/simulation_pb2.py +3 -3
  39. luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
  40. luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
  41. luminarycloud/_proto/hexmesh/hexmesh_pb2.py +22 -18
  42. luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +18 -2
  43. luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.py +30 -0
  44. luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.pyi +7 -0
  45. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +2 -2
  46. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +34 -0
  47. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +12 -0
  48. luminarycloud/enum/vis_enums.py +6 -0
  49. luminarycloud/feature_modification.py +32 -1
  50. luminarycloud/geometry.py +67 -7
  51. luminarycloud/geometry_version.py +4 -0
  52. luminarycloud/mesh.py +4 -0
  53. luminarycloud/meshing/mesh_generation_params.py +13 -14
  54. luminarycloud/meshing/sizing_strategy/sizing_strategies.py +1 -2
  55. luminarycloud/physics_ai/solution.py +4 -0
  56. luminarycloud/pipelines/api.py +99 -8
  57. luminarycloud/pipelines/core.py +12 -2
  58. luminarycloud/pipelines/stages.py +22 -9
  59. luminarycloud/project.py +5 -8
  60. luminarycloud/simulation.py +57 -0
  61. luminarycloud/types/vector3.py +1 -2
  62. luminarycloud/vis/data_extraction.py +7 -7
  63. luminarycloud/vis/interactive_report.py +163 -7
  64. luminarycloud/vis/report.py +113 -1
  65. luminarycloud/volume_selection.py +71 -7
  66. {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/METADATA +1 -1
  67. {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/RECORD +68 -58
  68. {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/WHEEL +1 -1
  69. luminarycloud/pipeline_util/dictable.py +0 -27
@@ -19,10 +19,11 @@ from luminarycloud._proto.cad import shape_pb2 as proto_dot_cad_dot_shape__pb2
19
19
  from luminarycloud._proto.hexmesh import hexmesh_pb2 as proto_dot_hexmesh_dot_hexmesh__pb2
20
20
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
21
21
  from luminarycloud._proto.api.v0.luminarycloud.common import common_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_common_dot_common__pb2
22
+ from luminarycloud._proto.client import simulation_pb2 as proto_dot_client_dot_simulation__pb2
22
23
  from luminarycloud._proto.upload import upload_pb2 as proto_dot_upload_dot_upload__pb2
23
24
 
24
25
 
25
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*proto/api/v0/luminarycloud/mesh/mesh.proto\x12(luminary.proto.api.v0.luminarycloud.mesh\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/hexmesh/hexmesh.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x19proto/upload/upload.proto\"\xe2\x02\n\x04Mesh\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12I\n\x06status\x18\x04 \x01(\x0e\x32\x39.luminary.proto.api.v0.luminarycloud.mesh.Mesh.MeshStatus\x12 \n\x13geometry_version_id\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproject_id\x18\x06 \x01(\t\"v\n\nMeshStatus\x12\x1b\n\x17MESH_STATUS_UNSPECIFIED\x10\x00\x12\x18\n\x14MESH_STATUS_CREATING\x10\x01\x12\x19\n\x15MESH_STATUS_COMPLETED\x10\x02\x12\x16\n\x12MESH_STATUS_FAILED\x10\x03\x42\x16\n\x14_geometry_version_id\"\x1c\n\x0eGetMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"O\n\x0fGetMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"$\n\x16GetMeshMetadataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"h\n\x17GetMeshMetadataResponse\x12M\n\rmesh_metadata\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata\"\xd2\x04\n\x0cMeshMetadata\x12J\n\x05zones\x18\x01 \x03(\x0b\x32;.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Zone\x1a\xcd\x01\n\tMeshStats\x12\x10\n\x08n_points\x18\x01 \x01(\x03\x12\x0f\n\x07n_faces\x18\x02 \x01(\x03\x12\r\n\x05n_cvs\x18\x03 \x01(\x03\x12\x46\n\tmin_coord\x18\x05 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12\x46\n\tmax_coord\x18\x06 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x1ai\n\x08\x42oundary\x12\x0c\n\x04name\x18\x01 \x01(\t\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x1a\xba\x01\n\x04Zone\x12S\n\nboundaries\x18\x01 \x03(\x0b\x32?.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Boundary\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x12\x0c\n\x04name\x18\x03 \x01(\t\"\'\n\x11ListMeshesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"T\n\x12ListMeshesResponse\x12>\n\x06meshes\x18\x01 \x03(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"-\n\x11UpdateMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"R\n\x12UpdateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xab\x02\n\x11\x43reateMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x16mesh_adaptation_params\x18\x03 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshAdaptationParamsH\x00\x12`\n\x16mesh_generation_params\x18\x04 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParamsH\x00\x12\x17\n\nrequest_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06paramsB\r\n\x0b_request_id\"R\n\x12\x43reateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xff\x01\n\x11UploadMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07scaling\x18\x03 \x01(\x01\x12\x14\n\x0cupload_token\x18\x04 \x01(\t\x12I\n\nfile_chunk\x18\x05 \x01(\x0b\x32\x35.luminary.proto.api.v0.luminarycloud.common.FileChunk\x12\x32\n\tmesh_type\x18\x06 \x01(\x0e\x32\x1f.luminary.proto.upload.MeshType\x12\"\n\x1a\x64o_not_read_zones_openfoam\x18\x07 \x01(\x08\"h\n\x12UploadMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\x12\x14\n\x0cupload_token\x18\x02 \x01(\t\"\x1f\n\x11\x44\x65leteMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"t\n\x14MeshAdaptationParams\x12\x1c\n\x14source_simulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftarget_cv_count\x18\x02 \x01(\x04\x12\x0f\n\x07h_ratio\x18\x03 \x01(\x01\x12\x14\n\x0c\x61spect_ratio\x18\x04 \x01(\x01\"\xcd\x10\n\x14MeshGenerationParams\x12\x33\n\x0b\x62ody_x_axis\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x33\n\x0b\x62ody_y_axis\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x16\n\x0e\x61\x64\x64_refinement\x18\x03 \x01(\x08\x12\x18\n\x10proximity_layers\x18\x04 \x01(\r\x12\x62\n\rvolume_params\x18\x05 \x03(\x0b\x32K.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.VolumeParams\x12`\n\x0cmodel_params\x18\x06 \x03(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.ModelParams\x12\x65\n\tbl_params\x18\x07 \x03(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.BoundaryLayerParams\x12l\n\rrefine_params\x18\x08 \x03(\x0b\x32U.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.RefinementRegionParams\x12\x13\n\x0bgeometry_id\x18\t \x01(\t\x12s\n\x16mesh_complexity_params\x18\n \x01(\x0b\x32S.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams\x12\x64\n\x0eoverset_params\x18\x0b \x01(\x0b\x32L.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.OversetParams\x12`\n\x0cmeshing_mode\x18\x0c \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode\x12\x10\n\x08use_wrap\x18\r \x01(\x08\x1a`\n\x0cVolumeParams\x12\x10\n\x08min_size\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x13\n\x07volumes\x18\x03 \x03(\x03\x42\x02\x18\x01\x12\x17\n\x0fvolume_entities\x18\x04 \x03(\t\x1a\x44\n\x0bModelParams\x12\x11\n\tcurvature\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\t\x1a\x64\n\x13\x42oundaryLayerParams\x12\x10\n\x08n_layers\x18\x01 \x01(\r\x12\x14\n\x0cinitial_size\x18\x02 \x01(\x01\x12\x13\n\x0bgrowth_rate\x18\x03 \x01(\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\t\x1a\x8b\x03\n\x16RefinementRegionParams\x12\x0f\n\x07h_limit\x18\x01 \x01(\x01\x12,\n\x06sphere\x18\x02 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\x37\n\x0csphere_shell\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.SphereShellH\x00\x12(\n\x04\x63ube\x18\x04 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x39\n\roriented_cube\x18\x05 \x01(\x0b\x32 .luminary.proto.cad.OrientedCubeH\x00\x12\x30\n\x08\x63ylinder\x18\x06 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12?\n\x10\x61nnular_cylinder\x18\x07 \x01(\x0b\x32#.luminary.proto.cad.AnnularCylinderH\x00\x12\n\n\x02id\x18\x08 \x01(\t\x12\x0c\n\x04name\x18\t \x01(\tB\x07\n\x05shape\x1a\xe7\x01\n\x14MeshComplexityParams\x12\x14\n\x0ctarget_cells\x18\x01 \x01(\x04\x12\x17\n\x0flimit_max_cells\x18\x02 \x01(\x04\x12p\n\x04type\x18\x03 \x01(\x0e\x32\x62.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams.ComplexityType\".\n\x0e\x43omplexityType\x12\x07\n\x03MAX\x10\x00\x12\n\n\x06TARGET\x10\x01\x12\x07\n\x03MIN\x10\x02\x1a!\n\rOversetParams\x12\x10\n\x08surfaces\x18\x01 \x03(\t\x1a\xf0\x01\n\x0bMeshingMode\x12\x65\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.DefaultH\x00\x12_\n\x04\x62\x61se\x18\x02 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.BaseH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x06\n\x04\x42\x61seB\x06\n\x04mode\"\x9e\x01\n\x14\x43reateHexMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12<\n\x0fhex_mesh_config\x18\x02 \x01(\x0b\x32#.luminary.proto.hexmesh.HexMeshSpec\x12\x12\n\nrequest_id\x18\x03 \x01(\t\x12\x14\n\x07n_vcpus\x18\x04 \x01(\x05H\x00\x88\x01\x01\x42\n\n\x08_n_vcpus\"(\n\x15\x43reateHexMeshResponse\x12\x0f\n\x07mesh_id\x18\x01 \x01(\t\"-\n\x1fGetMeshGenerationSdkCodeRequest\x12\n\n\x02id\x18\x01 \x01(\t\"4\n GetMeshGenerationSdkCodeResponse\x12\x10\n\x08sdk_code\x18\x01 \x01(\t2\x8b\x0c\n\x0bMeshService\x12\x97\x01\n\x07GetMesh\x12\x38.luminary.proto.api.v0.luminarycloud.mesh.GetMeshRequest\x1a\x39.luminary.proto.api.v0.luminarycloud.mesh.GetMeshResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/v0/meshes/{id}\x12\xba\x01\n\x0fGetMeshMetadata\x12@.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/meshes:getmeshmetadata\x12\xb1\x01\n\nListMeshes\x12;.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/projects/{project_id}/meshes\x12\xa3\x01\n\nUpdateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x32\x0f/v0/meshes/{id}:\x01*\x12\xbb\x01\n\nUploadMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshResponse\"2\x82\xd3\xe4\x93\x02,\"\'/v0/projects/{project_id}/meshes:upload:\x01*\x12z\n\nDeleteMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.DeleteMeshRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/v0/meshes/{id}\x12\x9e\x01\n\nCreateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/v0/meshes:\x01*\x12\x90\x01\n\rCreateHexMesh\x12>.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshRequest\x1a?.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshResponse\x12\xdc\x01\n\x18GetMeshGenerationSdkCode\x12I.luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeRequest\x1aJ.luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeResponse\")\x82\xd3\xe4\x93\x02#\x12!/v0/meshes/{id}:generate-sdk-codeB8Z6luminarycloud.com/core/proto/api/v0/luminarycloud/meshb\x06proto3')
26
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*proto/api/v0/luminarycloud/mesh/mesh.proto\x12(luminary.proto.api.v0.luminarycloud.mesh\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/hexmesh/hexmesh.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x1dproto/client/simulation.proto\x1a\x19proto/upload/upload.proto\"\xe2\x02\n\x04Mesh\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12I\n\x06status\x18\x04 \x01(\x0e\x32\x39.luminary.proto.api.v0.luminarycloud.mesh.Mesh.MeshStatus\x12 \n\x13geometry_version_id\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproject_id\x18\x06 \x01(\t\"v\n\nMeshStatus\x12\x1b\n\x17MESH_STATUS_UNSPECIFIED\x10\x00\x12\x18\n\x14MESH_STATUS_CREATING\x10\x01\x12\x19\n\x15MESH_STATUS_COMPLETED\x10\x02\x12\x16\n\x12MESH_STATUS_FAILED\x10\x03\x42\x16\n\x14_geometry_version_id\"\x1c\n\x0eGetMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"O\n\x0fGetMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"$\n\x16GetMeshMetadataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"h\n\x17GetMeshMetadataResponse\x12M\n\rmesh_metadata\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata\"\xd2\x04\n\x0cMeshMetadata\x12J\n\x05zones\x18\x01 \x03(\x0b\x32;.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Zone\x1a\xcd\x01\n\tMeshStats\x12\x10\n\x08n_points\x18\x01 \x01(\x03\x12\x0f\n\x07n_faces\x18\x02 \x01(\x03\x12\r\n\x05n_cvs\x18\x03 \x01(\x03\x12\x46\n\tmin_coord\x18\x05 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12\x46\n\tmax_coord\x18\x06 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x1ai\n\x08\x42oundary\x12\x0c\n\x04name\x18\x01 \x01(\t\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x1a\xba\x01\n\x04Zone\x12S\n\nboundaries\x18\x01 \x03(\x0b\x32?.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Boundary\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x12\x0c\n\x04name\x18\x03 \x01(\t\"\'\n\x11ListMeshesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"T\n\x12ListMeshesResponse\x12>\n\x06meshes\x18\x01 \x03(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"-\n\x11UpdateMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"R\n\x12UpdateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xab\x02\n\x11\x43reateMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x16mesh_adaptation_params\x18\x03 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshAdaptationParamsH\x00\x12`\n\x16mesh_generation_params\x18\x04 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParamsH\x00\x12\x17\n\nrequest_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06paramsB\r\n\x0b_request_id\"R\n\x12\x43reateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xff\x01\n\x11UploadMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07scaling\x18\x03 \x01(\x01\x12\x14\n\x0cupload_token\x18\x04 \x01(\t\x12I\n\nfile_chunk\x18\x05 \x01(\x0b\x32\x35.luminary.proto.api.v0.luminarycloud.common.FileChunk\x12\x32\n\tmesh_type\x18\x06 \x01(\x0e\x32\x1f.luminary.proto.upload.MeshType\x12\"\n\x1a\x64o_not_read_zones_openfoam\x18\x07 \x01(\x08\"h\n\x12UploadMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\x12\x14\n\x0cupload_token\x18\x02 \x01(\t\"\x1f\n\x11\x44\x65leteMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"t\n\x14MeshAdaptationParams\x12\x1c\n\x14source_simulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftarget_cv_count\x18\x02 \x01(\x04\x12\x0f\n\x07h_ratio\x18\x03 \x01(\x01\x12\x14\n\x0c\x61spect_ratio\x18\x04 \x01(\x01\"\x85\x11\n\x14MeshGenerationParams\x12\x33\n\x0b\x62ody_x_axis\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x33\n\x0b\x62ody_y_axis\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x16\n\x0e\x61\x64\x64_refinement\x18\x03 \x01(\x08\x12\x18\n\x10proximity_layers\x18\x04 \x01(\r\x12\x62\n\rvolume_params\x18\x05 \x03(\x0b\x32K.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.VolumeParams\x12`\n\x0cmodel_params\x18\x06 \x03(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.ModelParams\x12\x65\n\tbl_params\x18\x07 \x03(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.BoundaryLayerParams\x12l\n\rrefine_params\x18\x08 \x03(\x0b\x32U.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.RefinementRegionParams\x12\x13\n\x0bgeometry_id\x18\t \x01(\t\x12s\n\x16mesh_complexity_params\x18\n \x01(\x0b\x32S.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams\x12\x64\n\x0eoverset_params\x18\x0b \x01(\x0b\x32L.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.OversetParams\x12`\n\x0cmeshing_mode\x18\x0c \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode\x12\x10\n\x08use_wrap\x18\r \x01(\x08\x12\x36\n\x0blength_unit\x18\x0e \x01(\x0e\x32!.luminary.proto.client.LengthUnit\x1a`\n\x0cVolumeParams\x12\x10\n\x08min_size\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x13\n\x07volumes\x18\x03 \x03(\x03\x42\x02\x18\x01\x12\x17\n\x0fvolume_entities\x18\x04 \x03(\t\x1a\x44\n\x0bModelParams\x12\x11\n\tcurvature\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\t\x1a\x64\n\x13\x42oundaryLayerParams\x12\x10\n\x08n_layers\x18\x01 \x01(\r\x12\x14\n\x0cinitial_size\x18\x02 \x01(\x01\x12\x13\n\x0bgrowth_rate\x18\x03 \x01(\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\t\x1a\x8b\x03\n\x16RefinementRegionParams\x12\x0f\n\x07h_limit\x18\x01 \x01(\x01\x12,\n\x06sphere\x18\x02 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\x37\n\x0csphere_shell\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.SphereShellH\x00\x12(\n\x04\x63ube\x18\x04 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x39\n\roriented_cube\x18\x05 \x01(\x0b\x32 .luminary.proto.cad.OrientedCubeH\x00\x12\x30\n\x08\x63ylinder\x18\x06 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12?\n\x10\x61nnular_cylinder\x18\x07 \x01(\x0b\x32#.luminary.proto.cad.AnnularCylinderH\x00\x12\n\n\x02id\x18\x08 \x01(\t\x12\x0c\n\x04name\x18\t \x01(\tB\x07\n\x05shape\x1a\xe7\x01\n\x14MeshComplexityParams\x12\x14\n\x0ctarget_cells\x18\x01 \x01(\x04\x12\x17\n\x0flimit_max_cells\x18\x02 \x01(\x04\x12p\n\x04type\x18\x03 \x01(\x0e\x32\x62.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams.ComplexityType\".\n\x0e\x43omplexityType\x12\x07\n\x03MAX\x10\x00\x12\n\n\x06TARGET\x10\x01\x12\x07\n\x03MIN\x10\x02\x1a!\n\rOversetParams\x12\x10\n\x08surfaces\x18\x01 \x03(\t\x1a\xf0\x01\n\x0bMeshingMode\x12\x65\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.DefaultH\x00\x12_\n\x04\x62\x61se\x18\x02 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.BaseH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x06\n\x04\x42\x61seB\x06\n\x04mode\"\x9e\x01\n\x14\x43reateHexMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12<\n\x0fhex_mesh_config\x18\x02 \x01(\x0b\x32#.luminary.proto.hexmesh.HexMeshSpec\x12\x12\n\nrequest_id\x18\x03 \x01(\t\x12\x14\n\x07n_vcpus\x18\x04 \x01(\x05H\x00\x88\x01\x01\x42\n\n\x08_n_vcpus\"(\n\x15\x43reateHexMeshResponse\x12\x0f\n\x07mesh_id\x18\x01 \x01(\t\"-\n\x1fGetMeshGenerationSdkCodeRequest\x12\n\n\x02id\x18\x01 \x01(\t\"4\n GetMeshGenerationSdkCodeResponse\x12\x10\n\x08sdk_code\x18\x01 \x01(\t2\x8b\x0c\n\x0bMeshService\x12\x97\x01\n\x07GetMesh\x12\x38.luminary.proto.api.v0.luminarycloud.mesh.GetMeshRequest\x1a\x39.luminary.proto.api.v0.luminarycloud.mesh.GetMeshResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/v0/meshes/{id}\x12\xba\x01\n\x0fGetMeshMetadata\x12@.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/meshes:getmeshmetadata\x12\xb1\x01\n\nListMeshes\x12;.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/projects/{project_id}/meshes\x12\xa3\x01\n\nUpdateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x32\x0f/v0/meshes/{id}:\x01*\x12\xbb\x01\n\nUploadMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshResponse\"2\x82\xd3\xe4\x93\x02,\"\'/v0/projects/{project_id}/meshes:upload:\x01*\x12z\n\nDeleteMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.DeleteMeshRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/v0/meshes/{id}\x12\x9e\x01\n\nCreateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/v0/meshes:\x01*\x12\x90\x01\n\rCreateHexMesh\x12>.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshRequest\x1a?.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshResponse\x12\xdc\x01\n\x18GetMeshGenerationSdkCode\x12I.luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeRequest\x1aJ.luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeResponse\")\x82\xd3\xe4\x93\x02#\x12!/v0/meshes/{id}:generate-sdk-codeB8Z6luminarycloud.com/core/proto/api/v0/luminarycloud/meshb\x06proto3')
26
27
 
27
28
 
28
29
 
@@ -327,76 +328,76 @@ if _descriptor._USE_C_DESCRIPTORS == False:
327
328
  _MESHSERVICE.methods_by_name['CreateMesh']._serialized_options = b'\202\323\344\223\002\017\"\n/v0/meshes:\001*'
328
329
  _MESHSERVICE.methods_by_name['GetMeshGenerationSdkCode']._options = None
329
330
  _MESHSERVICE.methods_by_name['GetMeshGenerationSdkCode']._serialized_options = b'\202\323\344\223\002#\022!/v0/meshes/{id}:generate-sdk-code'
330
- _MESH._serialized_start=331
331
- _MESH._serialized_end=685
332
- _MESH_MESHSTATUS._serialized_start=543
333
- _MESH_MESHSTATUS._serialized_end=661
334
- _GETMESHREQUEST._serialized_start=687
335
- _GETMESHREQUEST._serialized_end=715
336
- _GETMESHRESPONSE._serialized_start=717
337
- _GETMESHRESPONSE._serialized_end=796
338
- _GETMESHMETADATAREQUEST._serialized_start=798
339
- _GETMESHMETADATAREQUEST._serialized_end=834
340
- _GETMESHMETADATARESPONSE._serialized_start=836
341
- _GETMESHMETADATARESPONSE._serialized_end=940
342
- _MESHMETADATA._serialized_start=943
343
- _MESHMETADATA._serialized_end=1537
344
- _MESHMETADATA_MESHSTATS._serialized_start=1036
345
- _MESHMETADATA_MESHSTATS._serialized_end=1241
346
- _MESHMETADATA_BOUNDARY._serialized_start=1243
347
- _MESHMETADATA_BOUNDARY._serialized_end=1348
348
- _MESHMETADATA_ZONE._serialized_start=1351
349
- _MESHMETADATA_ZONE._serialized_end=1537
350
- _LISTMESHESREQUEST._serialized_start=1539
351
- _LISTMESHESREQUEST._serialized_end=1578
352
- _LISTMESHESRESPONSE._serialized_start=1580
353
- _LISTMESHESRESPONSE._serialized_end=1664
354
- _UPDATEMESHREQUEST._serialized_start=1666
355
- _UPDATEMESHREQUEST._serialized_end=1711
356
- _UPDATEMESHRESPONSE._serialized_start=1713
357
- _UPDATEMESHRESPONSE._serialized_end=1795
358
- _CREATEMESHREQUEST._serialized_start=1798
359
- _CREATEMESHREQUEST._serialized_end=2097
360
- _CREATEMESHRESPONSE._serialized_start=2099
361
- _CREATEMESHRESPONSE._serialized_end=2181
362
- _UPLOADMESHREQUEST._serialized_start=2184
363
- _UPLOADMESHREQUEST._serialized_end=2439
364
- _UPLOADMESHRESPONSE._serialized_start=2441
365
- _UPLOADMESHRESPONSE._serialized_end=2545
366
- _DELETEMESHREQUEST._serialized_start=2547
367
- _DELETEMESHREQUEST._serialized_end=2578
368
- _MESHADAPTATIONPARAMS._serialized_start=2580
369
- _MESHADAPTATIONPARAMS._serialized_end=2696
370
- _MESHGENERATIONPARAMS._serialized_start=2699
371
- _MESHGENERATIONPARAMS._serialized_end=4824
372
- _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_start=3646
373
- _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_end=3742
374
- _MESHGENERATIONPARAMS_MODELPARAMS._serialized_start=3744
375
- _MESHGENERATIONPARAMS_MODELPARAMS._serialized_end=3812
376
- _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_start=3814
377
- _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_end=3914
378
- _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_start=3917
379
- _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_end=4312
380
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_start=4315
381
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_end=4546
382
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_start=4500
383
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_end=4546
384
- _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_start=4548
385
- _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_end=4581
386
- _MESHGENERATIONPARAMS_MESHINGMODE._serialized_start=4584
387
- _MESHGENERATIONPARAMS_MESHINGMODE._serialized_end=4824
388
- _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_start=4799
389
- _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_end=4808
390
- _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_start=4810
391
- _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_end=4816
392
- _CREATEHEXMESHREQUEST._serialized_start=4827
393
- _CREATEHEXMESHREQUEST._serialized_end=4985
394
- _CREATEHEXMESHRESPONSE._serialized_start=4987
395
- _CREATEHEXMESHRESPONSE._serialized_end=5027
396
- _GETMESHGENERATIONSDKCODEREQUEST._serialized_start=5029
397
- _GETMESHGENERATIONSDKCODEREQUEST._serialized_end=5074
398
- _GETMESHGENERATIONSDKCODERESPONSE._serialized_start=5076
399
- _GETMESHGENERATIONSDKCODERESPONSE._serialized_end=5128
400
- _MESHSERVICE._serialized_start=5131
401
- _MESHSERVICE._serialized_end=6678
331
+ _MESH._serialized_start=362
332
+ _MESH._serialized_end=716
333
+ _MESH_MESHSTATUS._serialized_start=574
334
+ _MESH_MESHSTATUS._serialized_end=692
335
+ _GETMESHREQUEST._serialized_start=718
336
+ _GETMESHREQUEST._serialized_end=746
337
+ _GETMESHRESPONSE._serialized_start=748
338
+ _GETMESHRESPONSE._serialized_end=827
339
+ _GETMESHMETADATAREQUEST._serialized_start=829
340
+ _GETMESHMETADATAREQUEST._serialized_end=865
341
+ _GETMESHMETADATARESPONSE._serialized_start=867
342
+ _GETMESHMETADATARESPONSE._serialized_end=971
343
+ _MESHMETADATA._serialized_start=974
344
+ _MESHMETADATA._serialized_end=1568
345
+ _MESHMETADATA_MESHSTATS._serialized_start=1067
346
+ _MESHMETADATA_MESHSTATS._serialized_end=1272
347
+ _MESHMETADATA_BOUNDARY._serialized_start=1274
348
+ _MESHMETADATA_BOUNDARY._serialized_end=1379
349
+ _MESHMETADATA_ZONE._serialized_start=1382
350
+ _MESHMETADATA_ZONE._serialized_end=1568
351
+ _LISTMESHESREQUEST._serialized_start=1570
352
+ _LISTMESHESREQUEST._serialized_end=1609
353
+ _LISTMESHESRESPONSE._serialized_start=1611
354
+ _LISTMESHESRESPONSE._serialized_end=1695
355
+ _UPDATEMESHREQUEST._serialized_start=1697
356
+ _UPDATEMESHREQUEST._serialized_end=1742
357
+ _UPDATEMESHRESPONSE._serialized_start=1744
358
+ _UPDATEMESHRESPONSE._serialized_end=1826
359
+ _CREATEMESHREQUEST._serialized_start=1829
360
+ _CREATEMESHREQUEST._serialized_end=2128
361
+ _CREATEMESHRESPONSE._serialized_start=2130
362
+ _CREATEMESHRESPONSE._serialized_end=2212
363
+ _UPLOADMESHREQUEST._serialized_start=2215
364
+ _UPLOADMESHREQUEST._serialized_end=2470
365
+ _UPLOADMESHRESPONSE._serialized_start=2472
366
+ _UPLOADMESHRESPONSE._serialized_end=2576
367
+ _DELETEMESHREQUEST._serialized_start=2578
368
+ _DELETEMESHREQUEST._serialized_end=2609
369
+ _MESHADAPTATIONPARAMS._serialized_start=2611
370
+ _MESHADAPTATIONPARAMS._serialized_end=2727
371
+ _MESHGENERATIONPARAMS._serialized_start=2730
372
+ _MESHGENERATIONPARAMS._serialized_end=4911
373
+ _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_start=3733
374
+ _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_end=3829
375
+ _MESHGENERATIONPARAMS_MODELPARAMS._serialized_start=3831
376
+ _MESHGENERATIONPARAMS_MODELPARAMS._serialized_end=3899
377
+ _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_start=3901
378
+ _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_end=4001
379
+ _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_start=4004
380
+ _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_end=4399
381
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_start=4402
382
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_end=4633
383
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_start=4587
384
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_end=4633
385
+ _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_start=4635
386
+ _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_end=4668
387
+ _MESHGENERATIONPARAMS_MESHINGMODE._serialized_start=4671
388
+ _MESHGENERATIONPARAMS_MESHINGMODE._serialized_end=4911
389
+ _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_start=4886
390
+ _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_end=4895
391
+ _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_start=4897
392
+ _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_end=4903
393
+ _CREATEHEXMESHREQUEST._serialized_start=4914
394
+ _CREATEHEXMESHREQUEST._serialized_end=5072
395
+ _CREATEHEXMESHRESPONSE._serialized_start=5074
396
+ _CREATEHEXMESHRESPONSE._serialized_end=5114
397
+ _GETMESHGENERATIONSDKCODEREQUEST._serialized_start=5116
398
+ _GETMESHGENERATIONSDKCODEREQUEST._serialized_end=5161
399
+ _GETMESHGENERATIONSDKCODERESPONSE._serialized_start=5163
400
+ _GETMESHGENERATIONSDKCODERESPONSE._serialized_end=5215
401
+ _MESHSERVICE._serialized_start=5218
402
+ _MESHSERVICE._serialized_end=6765
402
403
  # @@protoc_insertion_point(module_scope)
@@ -12,6 +12,7 @@ import google.protobuf.timestamp_pb2
12
12
  import luminarycloud._proto.api.v0.luminarycloud.common.common_pb2
13
13
  import luminarycloud._proto.base.base_pb2
14
14
  import luminarycloud._proto.cad.shape_pb2
15
+ import luminarycloud._proto.client.simulation_pb2
15
16
  import luminarycloud._proto.hexmesh.hexmesh_pb2
16
17
  import luminarycloud._proto.upload.upload_pb2
17
18
  import sys
@@ -773,6 +774,7 @@ class MeshGenerationParams(google.protobuf.message.Message):
773
774
  OVERSET_PARAMS_FIELD_NUMBER: builtins.int
774
775
  MESHING_MODE_FIELD_NUMBER: builtins.int
775
776
  USE_WRAP_FIELD_NUMBER: builtins.int
777
+ LENGTH_UNIT_FIELD_NUMBER: builtins.int
776
778
  @property
777
779
  def body_x_axis(self) -> luminarycloud._proto.base.base_pb2.AdVector3:
778
780
  """Body x-axis (used for refinement boxes)"""
@@ -804,6 +806,10 @@ class MeshGenerationParams(google.protobuf.message.Message):
804
806
  @property
805
807
  def meshing_mode(self) -> global___MeshGenerationParams.MeshingMode: ...
806
808
  use_wrap: builtins.bool
809
+ length_unit: luminarycloud._proto.client.simulation_pb2.LengthUnit.ValueType
810
+ """Defines the unit used for length
811
+ TODO(LC-25962) add units for angle?
812
+ """
807
813
  def __init__(
808
814
  self,
809
815
  *,
@@ -820,9 +826,10 @@ class MeshGenerationParams(google.protobuf.message.Message):
820
826
  overset_params: global___MeshGenerationParams.OversetParams | None = ...,
821
827
  meshing_mode: global___MeshGenerationParams.MeshingMode | None = ...,
822
828
  use_wrap: builtins.bool = ...,
829
+ length_unit: luminarycloud._proto.client.simulation_pb2.LengthUnit.ValueType = ...,
823
830
  ) -> None: ...
824
831
  def HasField(self, field_name: typing_extensions.Literal["body_x_axis", b"body_x_axis", "body_y_axis", b"body_y_axis", "mesh_complexity_params", b"mesh_complexity_params", "meshing_mode", b"meshing_mode", "overset_params", b"overset_params"]) -> builtins.bool: ...
825
- def ClearField(self, field_name: typing_extensions.Literal["add_refinement", b"add_refinement", "bl_params", b"bl_params", "body_x_axis", b"body_x_axis", "body_y_axis", b"body_y_axis", "geometry_id", b"geometry_id", "mesh_complexity_params", b"mesh_complexity_params", "meshing_mode", b"meshing_mode", "model_params", b"model_params", "overset_params", b"overset_params", "proximity_layers", b"proximity_layers", "refine_params", b"refine_params", "use_wrap", b"use_wrap", "volume_params", b"volume_params"]) -> None: ...
832
+ def ClearField(self, field_name: typing_extensions.Literal["add_refinement", b"add_refinement", "bl_params", b"bl_params", "body_x_axis", b"body_x_axis", "body_y_axis", b"body_y_axis", "geometry_id", b"geometry_id", "length_unit", b"length_unit", "mesh_complexity_params", b"mesh_complexity_params", "meshing_mode", b"meshing_mode", "model_params", b"model_params", "overset_params", b"overset_params", "proximity_layers", b"proximity_layers", "refine_params", b"refine_params", "use_wrap", b"use_wrap", "volume_params", b"volume_params"]) -> None: ...
826
833
 
827
834
  global___MeshGenerationParams = MeshGenerationParams
828
835
 
@@ -20,7 +20,7 @@ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
20
20
  from luminarycloud._proto.quantity import quantity_pb2 as proto_dot_quantity_dot_quantity__pb2
21
21
 
22
22
 
23
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/physics_ai/physics_ai.proto\x12.luminary.proto.api.v0.luminarycloud.physics_ai\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\"\xad\x01\n\x1cPhysicsAiArchitectureVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\tchangelog\x18\x03 \x01(\t\x12`\n\x0flifecycle_state\x18\x04 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\xa6\x01\n\x15PhysicsAiArchitecture\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x08versions\x18\x04 \x03(\x0b\x32L.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitectureVersion\"\x1a\n\x18ListArchitecturesRequest\"y\n\x19ListArchitecturesResponse\x12\\\n\rarchitectures\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitecture\"\x93\x01\n\x15PhysicsAiModelVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x0flifecycle_state\x18\x03 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\x98\x01\n\x0ePhysicsAiModel\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12W\n\x08versions\x18\x04 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModelVersion\"\x1d\n\x1bListPretrainedModelsRequest\"n\n\x1cListPretrainedModelsResponse\x12N\n\x06models\x18\x01 \x03(\x0b\x32>.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModel\"\xdb\x03\n\x1fGetSolutionDataPhysicsAIRequest\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x18\n\x10\x65xclude_surfaces\x18\x02 \x03(\t\x12\x12\n\nfill_holes\x18\x03 \x01(\x02\x12\x45\n\x16surface_fields_to_keep\x18\x04 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x44\n\x15volume_fields_to_keep\x18\x05 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x16\n\x0eprocess_volume\x18\x06 \x01(\x08\x12\x18\n\x10single_precision\x18\x07 \x01(\x08\x12~\n\x10internal_options\x18\x08 \x03(\x0b\x32\x64.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest.InternalOptionsEntry\x1a\x36\n\x14InternalOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"b\n GetSolutionDataPhysicsAIResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\";\n\x10TrainingSolution\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x12\n\ndata_split\x18\x02 \x01(\t\"\x9a\x05\n\x14PhysicsAiTrainingJob\x12\n\n\x02id\x18\x01 \x01(\t\x12\x1f\n\x17\x61rchitecture_version_id\x18\x02 \x01(\t\x12\x0f\n\x07user_id\x18\x03 \x01(\t\x12\x17\n\x0ftraining_config\x18\x04 \x01(\t\x12i\n\x19training_data_source_type\x18\x05 \x01(\x0e\x32\x46.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingDataSourceType\x12\x1c\n\x14training_description\x18\x06 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x07 \x01(\t\x12\x64\n\x13initialization_type\x18\x08 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\t \x01(\t\x12.\n\x06status\x18\n \x01(\x0b\x32\x1e.luminary.proto.base.JobStatus\x12\x15\n\rerror_message\x18\x0b \x01(\t\x12\x1f\n\x17output_model_version_id\x18\x0c \x01(\t\x12\x31\n\rcreation_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0f\x63ompletion_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xf3\x02\n\x18SubmitTrainingJobRequest\x12\x1f\n\x17\x61rchitecture_version_id\x18\x01 \x01(\t\x12\x1c\n\x14training_description\x18\x02 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x03 \x01(\t\x12\\\n\x12training_solutions\x18\x04 \x03(\x0b\x32@.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingSolution\x12\x17\n\x0ftraining_config\x18\x05 \x01(\t\x12\x64\n\x13initialization_type\x18\x06 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\x07 \x01(\t\"w\n\x19SubmitTrainingJobResponse\x12Z\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\x44.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiTrainingJob*\xb4\x01\n\x17PhysicsAiLifecycleState\x12\x1f\n\x1bLIFECYCLE_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bLIFECYCLE_STATE_DEVELOPMENT\x10\x01\x12\x1a\n\x16LIFECYCLE_STATE_ACTIVE\x10\x02\x12\x1e\n\x1aLIFECYCLE_STATE_DEPRECATED\x10\x03\x12\x1b\n\x17LIFECYCLE_STATE_RETIRED\x10\x04*\xa7\x01\n\x16TrainingDataSourceType\x12)\n%TRAINING_DATA_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x32\n.TRAINING_DATA_SOURCE_TYPE_SIMULATION_SOLUTIONS\x10\x01\x12.\n*TRAINING_DATA_SOURCE_TYPE_EXTERNAL_DATASET\x10\x02*\xc1\x01\n\x17ModelInitializationType\x12)\n%MODEL_INITIALIZATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODEL_INITIALIZATION_TYPE_RANDOM\x10\x01\x12+\n\'MODEL_INITIALIZATION_TYPE_MODEL_VERSION\x10\x02\x12(\n$MODEL_INITIALIZATION_TYPE_CHECKPOINT\x10\x03\x32\x8d\x07\n\x10PhysicsAiService\x12\xce\x01\n\x11ListArchitectures\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/v0/physics_ai/architectures\x12\xdb\x01\n\x14ListPretrainedModels\x12K.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsRequest\x1aL.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/physics_ai/pretrained_models\x12\xf5\x01\n\x18GetSolutionDataPhysicsAI\x12O.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest\x1aP.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIResponse\"6\x82\xd3\xe4\x93\x02\x30\"+/v0/physics_ai/solutions/{solution_id}/data:\x01*\x12\xd1\x01\n\x11SubmitTrainingJob\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobResponse\"\'\x82\xd3\xe4\x93\x02!\"\x1c/v0/physics_ai/training/jobs:\x01*B>Z<luminarycloud.com/core/proto/api/v0/luminarycloud/physics_aib\x06proto3')
23
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/physics_ai/physics_ai.proto\x12.luminary.proto.api.v0.luminarycloud.physics_ai\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\"\xad\x01\n\x1cPhysicsAiArchitectureVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\tchangelog\x18\x03 \x01(\t\x12`\n\x0flifecycle_state\x18\x04 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\xa6\x01\n\x15PhysicsAiArchitecture\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x08versions\x18\x04 \x03(\x0b\x32L.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitectureVersion\"\x1a\n\x18ListArchitecturesRequest\"y\n\x19ListArchitecturesResponse\x12\\\n\rarchitectures\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitecture\"\x93\x01\n\x15PhysicsAiModelVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x0flifecycle_state\x18\x03 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\x98\x01\n\x0ePhysicsAiModel\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12W\n\x08versions\x18\x04 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModelVersion\"\x1d\n\x1bListPretrainedModelsRequest\"n\n\x1cListPretrainedModelsResponse\x12N\n\x06models\x18\x01 \x03(\x0b\x32>.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModel\".\n\x0cSurfaceGroup\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x10\n\x08surfaces\x18\x02 \x03(\t\"\xb8\x04\n\x1fGetSolutionDataPhysicsAIRequest\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x18\n\x10\x65xclude_surfaces\x18\x02 \x03(\t\x12\x12\n\nfill_holes\x18\x03 \x01(\x02\x12\x45\n\x16surface_fields_to_keep\x18\x04 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x44\n\x15volume_fields_to_keep\x18\x05 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x16\n\x0eprocess_volume\x18\x06 \x01(\x08\x12\x18\n\x10single_precision\x18\x07 \x01(\x08\x12~\n\x10internal_options\x18\x08 \x03(\x0b\x32\x64.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest.InternalOptionsEntry\x12[\n\x15\x65xport_surface_groups\x18\t \x03(\x0b\x32<.luminary.proto.api.v0.luminarycloud.physics_ai.SurfaceGroup\x1a\x36\n\x14InternalOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"b\n GetSolutionDataPhysicsAIResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\";\n\x10TrainingSolution\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x12\n\ndata_split\x18\x02 \x01(\t\"\x9a\x05\n\x14PhysicsAiTrainingJob\x12\n\n\x02id\x18\x01 \x01(\t\x12\x1f\n\x17\x61rchitecture_version_id\x18\x02 \x01(\t\x12\x0f\n\x07user_id\x18\x03 \x01(\t\x12\x17\n\x0ftraining_config\x18\x04 \x01(\t\x12i\n\x19training_data_source_type\x18\x05 \x01(\x0e\x32\x46.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingDataSourceType\x12\x1c\n\x14training_description\x18\x06 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x07 \x01(\t\x12\x64\n\x13initialization_type\x18\x08 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\t \x01(\t\x12.\n\x06status\x18\n \x01(\x0b\x32\x1e.luminary.proto.base.JobStatus\x12\x15\n\rerror_message\x18\x0b \x01(\t\x12\x1f\n\x17output_model_version_id\x18\x0c \x01(\t\x12\x31\n\rcreation_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0f\x63ompletion_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xf3\x02\n\x18SubmitTrainingJobRequest\x12\x1f\n\x17\x61rchitecture_version_id\x18\x01 \x01(\t\x12\x1c\n\x14training_description\x18\x02 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x03 \x01(\t\x12\\\n\x12training_solutions\x18\x04 \x03(\x0b\x32@.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingSolution\x12\x17\n\x0ftraining_config\x18\x05 \x01(\t\x12\x64\n\x13initialization_type\x18\x06 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\x07 \x01(\t\"w\n\x19SubmitTrainingJobResponse\x12Z\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\x44.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiTrainingJob\"3\n\x18\x43\x61ncelTrainingJobRequest\x12\x17\n\x0ftraining_job_id\x18\x01 \x01(\t\"\x1b\n\x19\x43\x61ncelTrainingJobResponse*\xb4\x01\n\x17PhysicsAiLifecycleState\x12\x1f\n\x1bLIFECYCLE_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bLIFECYCLE_STATE_DEVELOPMENT\x10\x01\x12\x1a\n\x16LIFECYCLE_STATE_ACTIVE\x10\x02\x12\x1e\n\x1aLIFECYCLE_STATE_DEPRECATED\x10\x03\x12\x1b\n\x17LIFECYCLE_STATE_RETIRED\x10\x04*\xa7\x01\n\x16TrainingDataSourceType\x12)\n%TRAINING_DATA_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x32\n.TRAINING_DATA_SOURCE_TYPE_SIMULATION_SOLUTIONS\x10\x01\x12.\n*TRAINING_DATA_SOURCE_TYPE_EXTERNAL_DATASET\x10\x02*\xc1\x01\n\x17ModelInitializationType\x12)\n%MODEL_INITIALIZATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODEL_INITIALIZATION_TYPE_RANDOM\x10\x01\x12+\n\'MODEL_INITIALIZATION_TYPE_MODEL_VERSION\x10\x02\x12(\n$MODEL_INITIALIZATION_TYPE_CHECKPOINT\x10\x03\x32\x8d\x07\n\x10PhysicsAiService\x12\xce\x01\n\x11ListArchitectures\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/v0/physics_ai/architectures\x12\xdb\x01\n\x14ListPretrainedModels\x12K.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsRequest\x1aL.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/physics_ai/pretrained_models\x12\xf5\x01\n\x18GetSolutionDataPhysicsAI\x12O.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest\x1aP.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIResponse\"6\x82\xd3\xe4\x93\x02\x30\"+/v0/physics_ai/solutions/{solution_id}/data:\x01*\x12\xd1\x01\n\x11SubmitTrainingJob\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobResponse\"\'\x82\xd3\xe4\x93\x02!\"\x1c/v0/physics_ai/training/jobs:\x01*B>Z<luminarycloud.com/core/proto/api/v0/luminarycloud/physics_aib\x06proto3')
24
24
 
25
25
  _PHYSICSAILIFECYCLESTATE = DESCRIPTOR.enum_types_by_name['PhysicsAiLifecycleState']
26
26
  PhysicsAiLifecycleState = enum_type_wrapper.EnumTypeWrapper(_PHYSICSAILIFECYCLESTATE)
@@ -50,6 +50,7 @@ _PHYSICSAIMODELVERSION = DESCRIPTOR.message_types_by_name['PhysicsAiModelVersion
50
50
  _PHYSICSAIMODEL = DESCRIPTOR.message_types_by_name['PhysicsAiModel']
51
51
  _LISTPRETRAINEDMODELSREQUEST = DESCRIPTOR.message_types_by_name['ListPretrainedModelsRequest']
52
52
  _LISTPRETRAINEDMODELSRESPONSE = DESCRIPTOR.message_types_by_name['ListPretrainedModelsResponse']
53
+ _SURFACEGROUP = DESCRIPTOR.message_types_by_name['SurfaceGroup']
53
54
  _GETSOLUTIONDATAPHYSICSAIREQUEST = DESCRIPTOR.message_types_by_name['GetSolutionDataPhysicsAIRequest']
54
55
  _GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY = _GETSOLUTIONDATAPHYSICSAIREQUEST.nested_types_by_name['InternalOptionsEntry']
55
56
  _GETSOLUTIONDATAPHYSICSAIRESPONSE = DESCRIPTOR.message_types_by_name['GetSolutionDataPhysicsAIResponse']
@@ -57,6 +58,8 @@ _TRAININGSOLUTION = DESCRIPTOR.message_types_by_name['TrainingSolution']
57
58
  _PHYSICSAITRAININGJOB = DESCRIPTOR.message_types_by_name['PhysicsAiTrainingJob']
58
59
  _SUBMITTRAININGJOBREQUEST = DESCRIPTOR.message_types_by_name['SubmitTrainingJobRequest']
59
60
  _SUBMITTRAININGJOBRESPONSE = DESCRIPTOR.message_types_by_name['SubmitTrainingJobResponse']
61
+ _CANCELTRAININGJOBREQUEST = DESCRIPTOR.message_types_by_name['CancelTrainingJobRequest']
62
+ _CANCELTRAININGJOBRESPONSE = DESCRIPTOR.message_types_by_name['CancelTrainingJobResponse']
60
63
  PhysicsAiArchitectureVersion = _reflection.GeneratedProtocolMessageType('PhysicsAiArchitectureVersion', (_message.Message,), {
61
64
  'DESCRIPTOR' : _PHYSICSAIARCHITECTUREVERSION,
62
65
  '__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
@@ -113,6 +116,13 @@ ListPretrainedModelsResponse = _reflection.GeneratedProtocolMessageType('ListPre
113
116
  })
114
117
  _sym_db.RegisterMessage(ListPretrainedModelsResponse)
115
118
 
119
+ SurfaceGroup = _reflection.GeneratedProtocolMessageType('SurfaceGroup', (_message.Message,), {
120
+ 'DESCRIPTOR' : _SURFACEGROUP,
121
+ '__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
122
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.SurfaceGroup)
123
+ })
124
+ _sym_db.RegisterMessage(SurfaceGroup)
125
+
116
126
  GetSolutionDataPhysicsAIRequest = _reflection.GeneratedProtocolMessageType('GetSolutionDataPhysicsAIRequest', (_message.Message,), {
117
127
 
118
128
  'InternalOptionsEntry' : _reflection.GeneratedProtocolMessageType('InternalOptionsEntry', (_message.Message,), {
@@ -163,6 +173,20 @@ SubmitTrainingJobResponse = _reflection.GeneratedProtocolMessageType('SubmitTrai
163
173
  })
164
174
  _sym_db.RegisterMessage(SubmitTrainingJobResponse)
165
175
 
176
+ CancelTrainingJobRequest = _reflection.GeneratedProtocolMessageType('CancelTrainingJobRequest', (_message.Message,), {
177
+ 'DESCRIPTOR' : _CANCELTRAININGJOBREQUEST,
178
+ '__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
179
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CancelTrainingJobRequest)
180
+ })
181
+ _sym_db.RegisterMessage(CancelTrainingJobRequest)
182
+
183
+ CancelTrainingJobResponse = _reflection.GeneratedProtocolMessageType('CancelTrainingJobResponse', (_message.Message,), {
184
+ 'DESCRIPTOR' : _CANCELTRAININGJOBRESPONSE,
185
+ '__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
186
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CancelTrainingJobResponse)
187
+ })
188
+ _sym_db.RegisterMessage(CancelTrainingJobResponse)
189
+
166
190
  _PHYSICSAISERVICE = DESCRIPTOR.services_by_name['PhysicsAiService']
167
191
  if _descriptor._USE_C_DESCRIPTORS == False:
168
192
 
@@ -178,12 +202,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
178
202
  _PHYSICSAISERVICE.methods_by_name['GetSolutionDataPhysicsAI']._serialized_options = b'\202\323\344\223\0020\"+/v0/physics_ai/solutions/{solution_id}/data:\001*'
179
203
  _PHYSICSAISERVICE.methods_by_name['SubmitTrainingJob']._options = None
180
204
  _PHYSICSAISERVICE.methods_by_name['SubmitTrainingJob']._serialized_options = b'\202\323\344\223\002!\"\034/v0/physics_ai/training/jobs:\001*'
181
- _PHYSICSAILIFECYCLESTATE._serialized_start=3019
182
- _PHYSICSAILIFECYCLESTATE._serialized_end=3199
183
- _TRAININGDATASOURCETYPE._serialized_start=3202
184
- _TRAININGDATASOURCETYPE._serialized_end=3369
185
- _MODELINITIALIZATIONTYPE._serialized_start=3372
186
- _MODELINITIALIZATIONTYPE._serialized_end=3565
205
+ _PHYSICSAILIFECYCLESTATE._serialized_start=3242
206
+ _PHYSICSAILIFECYCLESTATE._serialized_end=3422
207
+ _TRAININGDATASOURCETYPE._serialized_start=3425
208
+ _TRAININGDATASOURCETYPE._serialized_end=3592
209
+ _MODELINITIALIZATIONTYPE._serialized_start=3595
210
+ _MODELINITIALIZATIONTYPE._serialized_end=3788
187
211
  _PHYSICSAIARCHITECTUREVERSION._serialized_start=272
188
212
  _PHYSICSAIARCHITECTUREVERSION._serialized_end=445
189
213
  _PHYSICSAIARCHITECTURE._serialized_start=448
@@ -200,20 +224,26 @@ if _descriptor._USE_C_DESCRIPTORS == False:
200
224
  _LISTPRETRAINEDMODELSREQUEST._serialized_end=1101
201
225
  _LISTPRETRAINEDMODELSRESPONSE._serialized_start=1103
202
226
  _LISTPRETRAINEDMODELSRESPONSE._serialized_end=1213
203
- _GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_start=1216
204
- _GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_end=1691
205
- _GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_start=1637
206
- _GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_end=1691
207
- _GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_start=1693
208
- _GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_end=1791
209
- _TRAININGSOLUTION._serialized_start=1793
210
- _TRAININGSOLUTION._serialized_end=1852
211
- _PHYSICSAITRAININGJOB._serialized_start=1855
212
- _PHYSICSAITRAININGJOB._serialized_end=2521
213
- _SUBMITTRAININGJOBREQUEST._serialized_start=2524
214
- _SUBMITTRAININGJOBREQUEST._serialized_end=2895
215
- _SUBMITTRAININGJOBRESPONSE._serialized_start=2897
216
- _SUBMITTRAININGJOBRESPONSE._serialized_end=3016
217
- _PHYSICSAISERVICE._serialized_start=3568
218
- _PHYSICSAISERVICE._serialized_end=4477
227
+ _SURFACEGROUP._serialized_start=1215
228
+ _SURFACEGROUP._serialized_end=1261
229
+ _GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_start=1264
230
+ _GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_end=1832
231
+ _GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_start=1778
232
+ _GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_end=1832
233
+ _GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_start=1834
234
+ _GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_end=1932
235
+ _TRAININGSOLUTION._serialized_start=1934
236
+ _TRAININGSOLUTION._serialized_end=1993
237
+ _PHYSICSAITRAININGJOB._serialized_start=1996
238
+ _PHYSICSAITRAININGJOB._serialized_end=2662
239
+ _SUBMITTRAININGJOBREQUEST._serialized_start=2665
240
+ _SUBMITTRAININGJOBREQUEST._serialized_end=3036
241
+ _SUBMITTRAININGJOBRESPONSE._serialized_start=3038
242
+ _SUBMITTRAININGJOBRESPONSE._serialized_end=3157
243
+ _CANCELTRAININGJOBREQUEST._serialized_start=3159
244
+ _CANCELTRAININGJOBREQUEST._serialized_end=3210
245
+ _CANCELTRAININGJOBRESPONSE._serialized_start=3212
246
+ _CANCELTRAININGJOBRESPONSE._serialized_end=3239
247
+ _PHYSICSAISERVICE._serialized_start=3791
248
+ _PHYSICSAISERVICE._serialized_end=4700
219
249
  # @@protoc_insertion_point(module_scope)
@@ -282,6 +282,26 @@ class ListPretrainedModelsResponse(google.protobuf.message.Message):
282
282
 
283
283
  global___ListPretrainedModelsResponse = ListPretrainedModelsResponse
284
284
 
285
+ class SurfaceGroup(google.protobuf.message.Message):
286
+ """Represents a named group of surfaces to export as a single STL file"""
287
+
288
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
289
+
290
+ NAME_FIELD_NUMBER: builtins.int
291
+ SURFACES_FIELD_NUMBER: builtins.int
292
+ name: builtins.str
293
+ @property
294
+ def surfaces(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
295
+ def __init__(
296
+ self,
297
+ *,
298
+ name: builtins.str = ...,
299
+ surfaces: collections.abc.Iterable[builtins.str] | None = ...,
300
+ ) -> None: ...
301
+ def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "surfaces", b"surfaces"]) -> None: ...
302
+
303
+ global___SurfaceGroup = SurfaceGroup
304
+
285
305
  class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
286
306
  """Request message for download and process solutions for physics ai"""
287
307
 
@@ -310,6 +330,7 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
310
330
  PROCESS_VOLUME_FIELD_NUMBER: builtins.int
311
331
  SINGLE_PRECISION_FIELD_NUMBER: builtins.int
312
332
  INTERNAL_OPTIONS_FIELD_NUMBER: builtins.int
333
+ EXPORT_SURFACE_GROUPS_FIELD_NUMBER: builtins.int
313
334
  solution_id: builtins.str
314
335
  """Required. The globally unique identifier for the solution."""
315
336
  @property
@@ -330,6 +351,9 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
330
351
  @property
331
352
  def internal_options(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
332
353
  """Internal options for physics AI processing only available for staff users."""
354
+ @property
355
+ def export_surface_groups(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SurfaceGroup]:
356
+ """List of surface groups to export as individual STL files"""
333
357
  def __init__(
334
358
  self,
335
359
  *,
@@ -341,8 +365,9 @@ class GetSolutionDataPhysicsAIRequest(google.protobuf.message.Message):
341
365
  process_volume: builtins.bool = ...,
342
366
  single_precision: builtins.bool = ...,
343
367
  internal_options: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
368
+ export_surface_groups: collections.abc.Iterable[global___SurfaceGroup] | None = ...,
344
369
  ) -> None: ...
345
- def ClearField(self, field_name: typing_extensions.Literal["exclude_surfaces", b"exclude_surfaces", "fill_holes", b"fill_holes", "internal_options", b"internal_options", "process_volume", b"process_volume", "single_precision", b"single_precision", "solution_id", b"solution_id", "surface_fields_to_keep", b"surface_fields_to_keep", "volume_fields_to_keep", b"volume_fields_to_keep"]) -> None: ...
370
+ def ClearField(self, field_name: typing_extensions.Literal["exclude_surfaces", b"exclude_surfaces", "export_surface_groups", b"export_surface_groups", "fill_holes", b"fill_holes", "internal_options", b"internal_options", "process_volume", b"process_volume", "single_precision", b"single_precision", "solution_id", b"solution_id", "surface_fields_to_keep", b"surface_fields_to_keep", "volume_fields_to_keep", b"volume_fields_to_keep"]) -> None: ...
346
371
 
347
372
  global___GetSolutionDataPhysicsAIRequest = GetSolutionDataPhysicsAIRequest
348
373
 
@@ -524,3 +549,31 @@ class SubmitTrainingJobResponse(google.protobuf.message.Message):
524
549
  def ClearField(self, field_name: typing_extensions.Literal["training_job", b"training_job"]) -> None: ...
525
550
 
526
551
  global___SubmitTrainingJobResponse = SubmitTrainingJobResponse
552
+
553
+ class CancelTrainingJobRequest(google.protobuf.message.Message):
554
+ """Request message for canceling a training job."""
555
+
556
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
557
+
558
+ TRAINING_JOB_ID_FIELD_NUMBER: builtins.int
559
+ training_job_id: builtins.str
560
+ """Training job ID to cancel."""
561
+ def __init__(
562
+ self,
563
+ *,
564
+ training_job_id: builtins.str = ...,
565
+ ) -> None: ...
566
+ def ClearField(self, field_name: typing_extensions.Literal["training_job_id", b"training_job_id"]) -> None: ...
567
+
568
+ global___CancelTrainingJobRequest = CancelTrainingJobRequest
569
+
570
+ class CancelTrainingJobResponse(google.protobuf.message.Message):
571
+ """Response message for canceling a training job."""
572
+
573
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
574
+
575
+ def __init__(
576
+ self,
577
+ ) -> None: ...
578
+
579
+ global___CancelTrainingJobResponse = CancelTrainingJobResponse