luminarycloud 0.15.5__py3-none-any.whl → 0.16.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/_helpers/__init__.py +1 -0
- luminarycloud/_helpers/_code_representation.py +18 -3
- luminarycloud/_helpers/download.py +67 -1
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +9 -9
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +7 -4
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +45 -21
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +65 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +194 -7
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +403 -1
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +171 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +64 -0
- luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.py +4 -2
- luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/assistant/assistant_pb2.py +82 -61
- luminarycloud/_proto/assistant/assistant_pb2.pyi +40 -0
- luminarycloud/_proto/assistant/assistant_pb2_grpc.py +34 -0
- luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/base/base_pb2.py +7 -6
- luminarycloud/_proto/base/base_pb2.pyi +4 -0
- luminarycloud/_proto/client/simulation_pb2.py +188 -186
- luminarycloud/_proto/client/simulation_pb2.pyi +10 -2
- luminarycloud/_proto/geometry/geometry_pb2.py +62 -62
- luminarycloud/_proto/geometry/geometry_pb2.pyi +5 -1
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +11 -11
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +12 -4
- luminarycloud/_proto/quantity/quantity_pb2.py +11 -2
- luminarycloud/_proto/quantity/quantity_pb2.pyi +6 -0
- luminarycloud/_proto/table/table_pb2.pyi +4 -2
- luminarycloud/_proto/upload/upload_pb2.py +27 -7
- luminarycloud/_proto/upload/upload_pb2.pyi +31 -0
- luminarycloud/enum/quantity_type.py +15 -0
- luminarycloud/mesh.py +8 -1
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py +1 -0
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_auto_.py +30 -0
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py +1 -1
- luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py +6 -2
- luminarycloud/params/simulation/physics/fluid/solution_controls_fluid_.py +4 -0
- luminarycloud/physics_ai/__init__.py +4 -0
- luminarycloud/physics_ai/inference.py +140 -4
- luminarycloud/physics_ai/solution.py +60 -0
- luminarycloud/tables.py +6 -8
- luminarycloud/vis/data_extraction.py +4 -5
- luminarycloud/vis/display.py +26 -11
- luminarycloud/vis/filters.py +98 -65
- luminarycloud/vis/primitives.py +3 -2
- luminarycloud/vis/visualization.py +197 -40
- {luminarycloud-0.15.5.dist-info → luminarycloud-0.16.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.15.5.dist-info → luminarycloud-0.16.0.dist-info}/RECORD +52 -50
- {luminarycloud-0.15.5.dist-info → luminarycloud-0.16.0.dist-info}/WHEEL +0 -0
|
@@ -13,6 +13,7 @@ from luminarycloud.types import Vector3, Vector3Like
|
|
|
13
13
|
|
|
14
14
|
from .._client import get_default_client
|
|
15
15
|
from .._helpers._get_project_id import _get_project_id
|
|
16
|
+
from .._helpers._code_representation import CodeRepr
|
|
16
17
|
from .._proto.quantity import quantity_pb2 as quantitypb
|
|
17
18
|
from .._proto.api.v0.luminarycloud.vis import vis_pb2
|
|
18
19
|
from ..types import SimulationID, MeshID
|
|
@@ -23,9 +24,6 @@ from luminarycloud.enum import (
|
|
|
23
24
|
EntityType,
|
|
24
25
|
SceneMode,
|
|
25
26
|
VisQuantity,
|
|
26
|
-
FieldComponent,
|
|
27
|
-
Representation,
|
|
28
|
-
ColorMapPreset,
|
|
29
27
|
)
|
|
30
28
|
from ..exceptions import NotFoundError
|
|
31
29
|
from ..geometry import Geometry, get_geometry
|
|
@@ -46,6 +44,7 @@ from .filters import (
|
|
|
46
44
|
ScaledVectorGlyphs,
|
|
47
45
|
FixedSizeVectorGlyphs,
|
|
48
46
|
Isosurface,
|
|
47
|
+
_filter_to_obj_name,
|
|
49
48
|
)
|
|
50
49
|
from .interactive_scene import InteractiveScene
|
|
51
50
|
from .vis_util import _InternalToken, _download_file, _get_status
|
|
@@ -58,7 +57,7 @@ def _is_valid_color(obj: common_pb2.Vector3) -> bool:
|
|
|
58
57
|
|
|
59
58
|
|
|
60
59
|
@dc.dataclass
|
|
61
|
-
class DirectionalCamera:
|
|
60
|
+
class DirectionalCamera(CodeRepr):
|
|
62
61
|
"""
|
|
63
62
|
Class defining a directional camera for visualization. Directional
|
|
64
63
|
camera are oriented around the visible objects in the scene and will
|
|
@@ -102,7 +101,7 @@ class DirectionalCamera:
|
|
|
102
101
|
|
|
103
102
|
|
|
104
103
|
@dc.dataclass
|
|
105
|
-
class LookAtCamera:
|
|
104
|
+
class LookAtCamera(CodeRepr):
|
|
106
105
|
"""
|
|
107
106
|
Class defining a look at camera for visualization. Unlike the directional
|
|
108
107
|
camera which is placed relative to what is visisble, the the look at camera
|
|
@@ -335,7 +334,7 @@ class RenderOutput:
|
|
|
335
334
|
self._deleted = True
|
|
336
335
|
|
|
337
336
|
|
|
338
|
-
class Scene:
|
|
337
|
+
class Scene(CodeRepr):
|
|
339
338
|
"""
|
|
340
339
|
The scene class is the base for any visualization. The scene is constructed
|
|
341
340
|
with what "entity" you want to visualize: a solution, a mesh, or
|
|
@@ -427,20 +426,18 @@ class Scene:
|
|
|
427
426
|
simulation = get_simulation(self._solution.simulation_id)
|
|
428
427
|
mesh_meta = get_mesh_metadata(simulation.mesh_id)
|
|
429
428
|
mesh = get_mesh(simulation.mesh_id)
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
except NotFoundError:
|
|
429
|
+
geo_ver = mesh.geometry_version()
|
|
430
|
+
if geo_ver is None:
|
|
433
431
|
self._has_tags = False
|
|
434
|
-
|
|
435
|
-
|
|
432
|
+
else:
|
|
433
|
+
geom = geo_ver.geometry()
|
|
436
434
|
elif self._entity_type == EntityType.MESH:
|
|
437
435
|
mesh_meta = get_mesh_metadata(self._mesh.id)
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
except NotFoundError:
|
|
436
|
+
geo_ver = self._mesh.geometry_version()
|
|
437
|
+
if geo_ver is None:
|
|
441
438
|
self._has_tags = False
|
|
442
|
-
|
|
443
|
-
|
|
439
|
+
else:
|
|
440
|
+
geom = geo_ver.geometry()
|
|
444
441
|
else:
|
|
445
442
|
geom = self._geometry
|
|
446
443
|
|
|
@@ -858,6 +855,158 @@ class Scene:
|
|
|
858
855
|
raise ValueError(f"Scene.clone: id {id} not present in tags or surface ids")
|
|
859
856
|
return cloned
|
|
860
857
|
|
|
858
|
+
def to_code(self, obj_name: str, hide_defaults: bool = True) -> str:
|
|
859
|
+
"""
|
|
860
|
+
This function will produce a code string that reproduces the scene
|
|
861
|
+
in its current state.
|
|
862
|
+
|
|
863
|
+
Parameters
|
|
864
|
+
----------
|
|
865
|
+
obj_name: str
|
|
866
|
+
the object name of the scene.
|
|
867
|
+
hide_defaults: bool, optional
|
|
868
|
+
If True, the code will make a best effort not include default values for attributes.
|
|
869
|
+
"""
|
|
870
|
+
imports = "import luminarycloud as lc\n"
|
|
871
|
+
imports += "import luminarycloud.vis as vis\n"
|
|
872
|
+
imports += "from luminarycloud.types import Vector3\n"
|
|
873
|
+
imports += "from luminarycloud.enum import (\n"
|
|
874
|
+
imports += " ColorMapPreset,\n"
|
|
875
|
+
imports += " FieldComponent,\n"
|
|
876
|
+
imports += " CameraProjection,\n"
|
|
877
|
+
imports += " CameraDirection,\n"
|
|
878
|
+
imports += " RenderStatusType,\n"
|
|
879
|
+
imports += " Representation,\n"
|
|
880
|
+
imports += " VisQuantity,\n"
|
|
881
|
+
imports += " StreamlineDirection,\n"
|
|
882
|
+
imports += " SurfaceStreamlineMode,\n"
|
|
883
|
+
imports += ")\n"
|
|
884
|
+
|
|
885
|
+
# This isn't technically needed, but I think its useful.
|
|
886
|
+
code = f"# project id = '{self._project_id}'\n"
|
|
887
|
+
code += "\n# Find the entity to build the scene from\n"
|
|
888
|
+
if self._entity_type == EntityType.SIMULATION:
|
|
889
|
+
imports += "from luminarycloud.simulation import get_simulation\n"
|
|
890
|
+
|
|
891
|
+
code += f"simulation = get_simulation('{self._solution.simulation_id}')\n"
|
|
892
|
+
code += "for sol in simulation.list_solutions():\n"
|
|
893
|
+
code += f" if sol.id == '{self._solution.id}':\n"
|
|
894
|
+
code += f" solution = sol\n"
|
|
895
|
+
code += f" break\n"
|
|
896
|
+
code += "scene = vis.Scene(solution)\n"
|
|
897
|
+
elif self._entity_type == EntityType.MESH:
|
|
898
|
+
imports += "from luminarycloud.mesh import get_mesh\n"
|
|
899
|
+
|
|
900
|
+
code += f"mesh = get_mesh('{self._mesh.id}')\n"
|
|
901
|
+
code += "scene = vis.Scene(mesh)\n"
|
|
902
|
+
else:
|
|
903
|
+
imports += "from luminarycloud.geometry import get_geometry\n"
|
|
904
|
+
code += f"geom = get_geometry('{self._geometry.id}')\n"
|
|
905
|
+
code += "scene = vis.Scene(geom)\n"
|
|
906
|
+
|
|
907
|
+
code += "\n"
|
|
908
|
+
|
|
909
|
+
code += "# Set the scene attributes\n"
|
|
910
|
+
code += self.global_display_attrs._to_code_helper(
|
|
911
|
+
obj_name=f"{obj_name}.global_display_attrs", hide_defaults=hide_defaults
|
|
912
|
+
)
|
|
913
|
+
code += "\n"
|
|
914
|
+
|
|
915
|
+
code += f"{obj_name}.triad_visible = {self.triad_visible}\n"
|
|
916
|
+
code += f"{obj_name}.axes_grid_visible = {self.axes_grid_visible}\n"
|
|
917
|
+
code += f"{obj_name}.background_color = {self.background_color}\n"
|
|
918
|
+
code += f"{obj_name}.auto_color_map_annotations = {self.auto_color_map_annotations}\n"
|
|
919
|
+
code += f"{obj_name}.supersampling = {self.supersampling}\n"
|
|
920
|
+
|
|
921
|
+
code += "\n"
|
|
922
|
+
code += "# Set surface visibilities\n"
|
|
923
|
+
for surface_id, visible in self._surface_visibilities.items():
|
|
924
|
+
if surface_id in self._surface_ids:
|
|
925
|
+
code += f"{obj_name}.surface_visibility('{surface_id}', {visible})\n"
|
|
926
|
+
elif surface_id in self._tag_ids:
|
|
927
|
+
code += f"{obj_name}.tag_visibility('{surface_id}', {visible})\n"
|
|
928
|
+
else:
|
|
929
|
+
raise ValueError(f"Surface id {surface_id} not found in surface or tag ids")
|
|
930
|
+
code += "\n"
|
|
931
|
+
|
|
932
|
+
cam_count = 0
|
|
933
|
+
|
|
934
|
+
code += "# Add cameras\n"
|
|
935
|
+
for camera in self._cameras:
|
|
936
|
+
camera_name = f"camera{cam_count}"
|
|
937
|
+
code += camera._to_code_helper(camera_name, hide_defaults=hide_defaults)
|
|
938
|
+
code += f"scene.add_camera({camera_name})\n"
|
|
939
|
+
cam_count += 1
|
|
940
|
+
code += "\n"
|
|
941
|
+
|
|
942
|
+
# We can have many of the same type of filter so we need to track how
|
|
943
|
+
# many times we have seen a filter type to create the object name.
|
|
944
|
+
name_map: Dict[str, int] = {}
|
|
945
|
+
# Filters can be connected so we need to track what the ids are so we
|
|
946
|
+
# can connected them.
|
|
947
|
+
ids_to_obj_name: Dict[str, str] = {}
|
|
948
|
+
has_connections = False
|
|
949
|
+
for filter in self._filters:
|
|
950
|
+
# Name objects numerically: slice0, slice1, etc.
|
|
951
|
+
if filter._parent_id != "":
|
|
952
|
+
has_connections = True
|
|
953
|
+
name = _filter_to_obj_name(filter)
|
|
954
|
+
if name in name_map:
|
|
955
|
+
name_map[obj_name] += 1
|
|
956
|
+
else:
|
|
957
|
+
name_map[obj_name] = 0
|
|
958
|
+
obj_name = f"{name}{name_map[obj_name]}"
|
|
959
|
+
ids_to_obj_name[filter.id] = obj_name
|
|
960
|
+
code += filter._to_code_helper(obj_name, hide_defaults=hide_defaults)
|
|
961
|
+
code += f"scene.add_filter({obj_name})\n"
|
|
962
|
+
code += "\n"
|
|
963
|
+
|
|
964
|
+
if has_connections:
|
|
965
|
+
code += "# Connect filters\n"
|
|
966
|
+
for filter in self._filters:
|
|
967
|
+
if filter._parent_id != "":
|
|
968
|
+
code += f"{ids_to_obj_name[filter.id]}.set_parent({ids_to_obj_name[filter._parent_id]})\n"
|
|
969
|
+
code += "\n"
|
|
970
|
+
if len(self._color_maps) != 0:
|
|
971
|
+
cmap_count = 0
|
|
972
|
+
code += "# Add color maps\n"
|
|
973
|
+
for color_map in self._color_maps:
|
|
974
|
+
cmap_name = f"color_map{cmap_count}"
|
|
975
|
+
code += color_map._to_code_helper(cmap_name, hide_defaults=hide_defaults)
|
|
976
|
+
code += f"scene.add_color_map({cmap_name})\n"
|
|
977
|
+
cmap_count += 1
|
|
978
|
+
code += "\n"
|
|
979
|
+
|
|
980
|
+
imports += "\n"
|
|
981
|
+
# The code gen is very verbose, so we can do some string replacements
|
|
982
|
+
# since we are importing the luminarycloud.vis package.
|
|
983
|
+
cleanup_list: List[str] = [
|
|
984
|
+
"luminarycloud.vis.display",
|
|
985
|
+
"luminarycloud.vis.visualization",
|
|
986
|
+
"luminarycloud.vis.filters",
|
|
987
|
+
]
|
|
988
|
+
for cleanup in cleanup_list:
|
|
989
|
+
code = code.replace(cleanup, "vis")
|
|
990
|
+
# Many classes initialize the attributes, so we don't need to explicitly
|
|
991
|
+
# creat new objects for them. Additionally, its easier to do this here than
|
|
992
|
+
# in the individual classes.
|
|
993
|
+
remove_list: List[str] = [
|
|
994
|
+
"vis.DataRange()",
|
|
995
|
+
"luminarycloud.vis.primitives.Plane()",
|
|
996
|
+
"luminarycloud.vis.primitives.Box()",
|
|
997
|
+
"vis.DisplayAttributes()",
|
|
998
|
+
]
|
|
999
|
+
# Remove entire lines containing any remove_list item
|
|
1000
|
+
code_lines = code.splitlines()
|
|
1001
|
+
filtered_lines = [
|
|
1002
|
+
line
|
|
1003
|
+
for line in code_lines
|
|
1004
|
+
if not any(remove_item in line for remove_item in remove_list)
|
|
1005
|
+
]
|
|
1006
|
+
code = "\n".join(filtered_lines)
|
|
1007
|
+
|
|
1008
|
+
return imports + code
|
|
1009
|
+
|
|
861
1010
|
|
|
862
1011
|
def list_quantities(solution: Solution) -> List[VisQuantity]:
|
|
863
1012
|
"""
|
|
@@ -954,7 +1103,7 @@ def list_renders(entity: Geometry | Mesh | Solution) -> List[RenderOutput]:
|
|
|
954
1103
|
return results
|
|
955
1104
|
|
|
956
1105
|
|
|
957
|
-
def
|
|
1106
|
+
def _spec_to_scene(spec: vis_pb2.ExtractSpec) -> Scene:
|
|
958
1107
|
"""
|
|
959
1108
|
This function reconstructs a scene from an extract id and project id. The
|
|
960
1109
|
resulting scene should produce an identical image to the one that was
|
|
@@ -965,28 +1114,24 @@ def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
|
965
1114
|
When we get the extract back, we don't know if it was auto-generated or not.
|
|
966
1115
|
Thus, the resulting color maps will be much more verbose than the original.
|
|
967
1116
|
"""
|
|
968
|
-
|
|
969
|
-
req.extract_id = extract_id
|
|
970
|
-
req.project_id = project_id
|
|
971
|
-
res: vis_pb2.GetExtractSpecResponse = get_default_client().GetExtractSpec(req)
|
|
972
|
-
if res.spec.data_only:
|
|
1117
|
+
if spec.data_only:
|
|
973
1118
|
raise ValueError("Error: cannot reconstruct a scene from a data only extract")
|
|
974
1119
|
|
|
975
|
-
entity =
|
|
1120
|
+
entity = spec.entity_type.WhichOneof("entity")
|
|
976
1121
|
if entity == "geometry":
|
|
977
|
-
geom = get_geometry(
|
|
1122
|
+
geom = get_geometry(spec.entity_type.geometry.id)
|
|
978
1123
|
scene = Scene(geom)
|
|
979
1124
|
elif entity == "mesh":
|
|
980
|
-
mesh_id = MeshID(
|
|
1125
|
+
mesh_id = MeshID(spec.entity_type.mesh.id)
|
|
981
1126
|
mesh = get_mesh(mesh_id)
|
|
982
1127
|
scene = Scene(mesh)
|
|
983
1128
|
elif entity == "simulation":
|
|
984
|
-
sim_id = SimulationID(
|
|
1129
|
+
sim_id = SimulationID(spec.entity_type.simulation.id)
|
|
985
1130
|
sim = get_simulation(sim_id)
|
|
986
1131
|
sols = sim.list_solutions()
|
|
987
1132
|
found = False
|
|
988
1133
|
for sol in sols:
|
|
989
|
-
if sol.id ==
|
|
1134
|
+
if sol.id == spec.entity_type.simulation.solution_id:
|
|
990
1135
|
scene = Scene(sol)
|
|
991
1136
|
found = True
|
|
992
1137
|
break
|
|
@@ -1003,7 +1148,7 @@ def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
|
1003
1148
|
# keep track of filter ids so we connect them later and keep track of
|
|
1004
1149
|
# surface and tag visibilties.
|
|
1005
1150
|
filter_ids: List[str] = []
|
|
1006
|
-
for filter in
|
|
1151
|
+
for filter in spec.filters:
|
|
1007
1152
|
filter_ids.append(filter.id)
|
|
1008
1153
|
typ = filter.WhichOneof("value")
|
|
1009
1154
|
pfilter: Filter | None = None
|
|
@@ -1042,13 +1187,13 @@ def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
|
1042
1187
|
pfilter._from_proto(filter)
|
|
1043
1188
|
# Set the display attributes
|
|
1044
1189
|
pattrs = DisplayAttributes()
|
|
1045
|
-
attrs =
|
|
1190
|
+
attrs = spec.display_attributes[pfilter.id]
|
|
1046
1191
|
assert attrs is not None, "Internal error: display attributes not set"
|
|
1047
1192
|
pfilter.display_attrs._from_proto(attrs)
|
|
1048
1193
|
scene.add_filter(pfilter)
|
|
1049
1194
|
|
|
1050
1195
|
# Connect filters to their parents.
|
|
1051
|
-
for parent_id, children in
|
|
1196
|
+
for parent_id, children in spec.filter_connections.items():
|
|
1052
1197
|
parent_filter = next((f for f in scene._filters if f.id == parent_id), None)
|
|
1053
1198
|
if parent_filter is not None:
|
|
1054
1199
|
for child_id in children.children_id:
|
|
@@ -1063,17 +1208,17 @@ def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
|
1063
1208
|
raise ValueError(f"Error: parent filter {parent_id} not found in the scene filters")
|
|
1064
1209
|
|
|
1065
1210
|
# scene attributes
|
|
1066
|
-
scene.supersampling =
|
|
1067
|
-
scene.triad_visible =
|
|
1068
|
-
scene.axes_grid_visible =
|
|
1211
|
+
scene.supersampling = spec.supersampling_ratio
|
|
1212
|
+
scene.triad_visible = spec.triad_properties.visible
|
|
1213
|
+
scene.axes_grid_visible = spec.axes_grid_properties.visible
|
|
1069
1214
|
scene.background_color = Vector3(
|
|
1070
|
-
x=
|
|
1071
|
-
y=
|
|
1072
|
-
z=
|
|
1215
|
+
x=spec.background_properties.color.r,
|
|
1216
|
+
y=spec.background_properties.color.g,
|
|
1217
|
+
z=spec.background_properties.color.b,
|
|
1073
1218
|
)
|
|
1074
|
-
scene.global_display_attrs._from_proto(
|
|
1219
|
+
scene.global_display_attrs._from_proto(spec.global_display_attributes)
|
|
1075
1220
|
|
|
1076
|
-
for id, attrs in
|
|
1221
|
+
for id, attrs in spec.display_attributes.items():
|
|
1077
1222
|
if id in filter_ids:
|
|
1078
1223
|
continue # Skip filters, we already processed them.
|
|
1079
1224
|
if id in scene._surface_ids or id in scene._tag_ids:
|
|
@@ -1081,7 +1226,7 @@ def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
|
1081
1226
|
# attributes are set in the global display attributes.
|
|
1082
1227
|
scene._surface_visibilities[id] = attrs.visible
|
|
1083
1228
|
|
|
1084
|
-
for static_ani in
|
|
1229
|
+
for static_ani in spec.animation_properties.statics.items:
|
|
1085
1230
|
cam_typ = static_ani.camera.WhichOneof("specification")
|
|
1086
1231
|
if cam_typ == "direction":
|
|
1087
1232
|
cam = DirectionalCamera()
|
|
@@ -1093,8 +1238,20 @@ def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
|
1093
1238
|
scene.add_camera(l_cam)
|
|
1094
1239
|
|
|
1095
1240
|
# Add color maps
|
|
1096
|
-
for color_map in
|
|
1241
|
+
for color_map in spec.color_maps:
|
|
1097
1242
|
cmap = ColorMap()
|
|
1098
1243
|
cmap._from_proto(color_map)
|
|
1099
1244
|
scene.add_color_map(cmap)
|
|
1100
1245
|
return scene
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
def _reconstruct(extract_id: str, project_id: str) -> Scene:
|
|
1249
|
+
"""
|
|
1250
|
+
Helper function to reconstruct a scene from an extract id and project id.
|
|
1251
|
+
This helper exists to do sdk integration testing.
|
|
1252
|
+
"""
|
|
1253
|
+
req = vis_pb2.GetExtractRequest()
|
|
1254
|
+
req.extract_id = extract_id
|
|
1255
|
+
req.project_id = project_id
|
|
1256
|
+
res: vis_pb2.GetExtractSpecResponse = get_default_client().GetExtractSpec(req)
|
|
1257
|
+
return _spec_to_scene(res.spec)
|
|
@@ -6,7 +6,7 @@ luminarycloud/exceptions.py,sha256=gerI_d6lkribrQ4mcgJrpO_1CebHvxEP8XQHo-CNWhI,1
|
|
|
6
6
|
luminarycloud/feature_modification.py,sha256=-XG0LNHeMWkgoTvZLIaSDGADWdP0rsvCt7y9IQKQmuo,30754
|
|
7
7
|
luminarycloud/geometry.py,sha256=GXomLPrW43riU-lsEweA2zF3qK866a3eyLA1tplYviM,18883
|
|
8
8
|
luminarycloud/geometry_version.py,sha256=y2mlAq-vLPvSxQpS9g3R5argS9qz-qalUMEMS6Q0E-0,4487
|
|
9
|
-
luminarycloud/mesh.py,sha256=
|
|
9
|
+
luminarycloud/mesh.py,sha256=STbOtt2dt0HiSGXEO_WYsQuXn6QX96Wb6PmmkKLbk10,4332
|
|
10
10
|
luminarycloud/named_variable_set.py,sha256=TdWLQ9WVf57xyTq_UKEiHstO2kRcHGSiVP2B9RBP7Gw,4524
|
|
11
11
|
luminarycloud/project.py,sha256=D5QDA8ARBtJGyoJLUkK7ZYSvcf4Fpx2_NIii2o1r5PU,28848
|
|
12
12
|
luminarycloud/reference_values.py,sha256=vWIX1VXMctspeQIjNtjmZdex55K0jHf1xz5gsGeMCfo,4357
|
|
@@ -14,7 +14,7 @@ luminarycloud/simulation.py,sha256=Z7IfncUXCW7wcuYoGc-tG_JMVPDiMXYCqfeGT2cC4XA,1
|
|
|
14
14
|
luminarycloud/simulation_param.py,sha256=NGzi2GEEbSkhQcRPbYEpwmm0aoJvVCPYkKsvGeLGdp4,16304
|
|
15
15
|
luminarycloud/simulation_template.py,sha256=kS-BawCedJLZSuC3tziazx0cAHycUdjP5xkk9BCtFjM,20473
|
|
16
16
|
luminarycloud/solution.py,sha256=tz0nNdum2dZ59IFNHtkU-u0f5hki1DaP69ITt1HZmeY,6825
|
|
17
|
-
luminarycloud/tables.py,sha256=
|
|
17
|
+
luminarycloud/tables.py,sha256=_MKBahto4eDfRErHhSfoG4LvhGAsvaN4-vAwy9XlVhw,6905
|
|
18
18
|
luminarycloud/tag.py,sha256=aC1xnHFVOEk7V6tp16b0wdwuGAJoqq7u3tzuYwbkkY0,1384
|
|
19
19
|
luminarycloud/volume_selection.py,sha256=wTEC-9p0hhPI3bQoxrCaLj-K_8PDMOqHIgoV4tVevyA,23583
|
|
20
20
|
luminarycloud/_auth/__init__.py,sha256=nfdTjXQONhMBVOWOGAglb1cP-4kaABJ6HxrGIW-hj6U,89
|
|
@@ -32,8 +32,8 @@ luminarycloud/_client/logging_interceptor.py,sha256=I7xJzTQoV5O_Ioi7OjWXI2mQWxdp
|
|
|
32
32
|
luminarycloud/_client/retry_interceptor.py,sha256=XrgBXAbFK53lu2m7JILQ0WAR-KwSIH-FnwoS8oqo98U,2470
|
|
33
33
|
luminarycloud/_client/rpc_error.py,sha256=Dop2up292j45A9o0rbTMq4izM3flxLkuY_DcUHhAI3A,1177
|
|
34
34
|
luminarycloud/_client/tracing.py,sha256=B4Ig9qehB_Fd4R2Ptlo0apdedDfVYeafUnze1okd7b4,6053
|
|
35
|
-
luminarycloud/_helpers/__init__.py,sha256=
|
|
36
|
-
luminarycloud/_helpers/_code_representation.py,sha256=
|
|
35
|
+
luminarycloud/_helpers/__init__.py,sha256=YcoXEa67nN7Kx1wxoELk4tGXcnKqt2v0bWZrYx8yjs4,1547
|
|
36
|
+
luminarycloud/_helpers/_code_representation.py,sha256=7wOEqB8TqtRdEncxhMPShSF95ZXORBYr4-84QtQWrnI,8365
|
|
37
37
|
luminarycloud/_helpers/_create_geometry.py,sha256=YHO2dhzGJssMYB0E515Ssaf8qljUhNocKtd4p5nyZn0,3224
|
|
38
38
|
luminarycloud/_helpers/_create_simulation.py,sha256=P1S38LmzzTidlbrFsfuBqPjme5R5QtYkccN7OE0663M,1430
|
|
39
39
|
luminarycloud/_helpers/_entity_identifier.py,sha256=Elb9gD5NFVxUxngiikGuNvNZ5YfSv_Jil1iy5IHzzXA,200
|
|
@@ -46,7 +46,7 @@ luminarycloud/_helpers/_wait_for_mesh.py,sha256=9aKBsqw118WldRmuow3nUmZcrRQaqPwE
|
|
|
46
46
|
luminarycloud/_helpers/_wait_for_simulation.py,sha256=Hj_p1C4xl9ixUVhahUOLYaDn4Ox4lnBZNCDG_Q6y_t8,3500
|
|
47
47
|
luminarycloud/_helpers/cond.py,sha256=QaNy4VF-8XSHokDbJTszO2KPc2VecaUK0D8qDNKglJE,16798
|
|
48
48
|
luminarycloud/_helpers/defaults.py,sha256=jj6J3F2cjqO1CR5_F4ICxr44hTLC1GypD9Q4YQJRw68,1550
|
|
49
|
-
luminarycloud/_helpers/download.py,sha256=
|
|
49
|
+
luminarycloud/_helpers/download.py,sha256=R1wWWgzZsaC7tnPHeu8pZvim0bS-o_DHc_yKUzXNC6g,9495
|
|
50
50
|
luminarycloud/_helpers/file_chunk_stream.py,sha256=Z5dfuGWZMZ3JDhZH9jgxSqgkFu_e8g57epUBOT3lKpY,2371
|
|
51
51
|
luminarycloud/_helpers/named_variables.py,sha256=GLjBEQxf0SwfzLemY6_hnNbReD2gTcX0N9Hfvrk3-xc,481
|
|
52
52
|
luminarycloud/_helpers/proto_decorator.py,sha256=Jrls0V2epTjH1P1ezwAsn24_I2e3Lyys87ftivTdqGg,1429
|
|
@@ -61,8 +61,8 @@ luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py,sha256=xc6b_e
|
|
|
61
61
|
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi,sha256=BFsmggmpcfK6DK2WXCod3-INBOjazQg9I0Ord7x6Hj0,53065
|
|
62
62
|
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py,sha256=lcsGBTvbUiJ8Hddv0dQNAw5wsAuTaPmII0M3XHfAO-4,47965
|
|
63
63
|
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi,sha256=tg43ovCITUcX2zhjryqYQoKwxtkZtq41iw9g0TzwTb4,17530
|
|
64
|
-
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py,sha256=
|
|
65
|
-
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi,sha256=
|
|
64
|
+
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py,sha256=_afPAw72eHTzt_-0eo0bkFfhjQkxEJCz898LDXRv0nk,4274
|
|
65
|
+
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi,sha256=HfjaTENblLxYNKXAWGqX6fhuFb0Or27aphFe6RncBTE,3054
|
|
66
66
|
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.py,sha256=kPfG5fIgEWRghcAf0UPk_LsRFBS4IDxiZ6JEx4fTsjc,3259
|
|
67
67
|
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.pyi,sha256=w7uRtY0S39MDkOQC75pdGplIzoVxE7EyielgLZpvpvE,1167
|
|
68
68
|
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py,sha256=6y0lLj1YsQ_xIJlB3_H4-BQ-YhmfA7ozgxYEcNlPxcg,29997
|
|
@@ -81,10 +81,10 @@ luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.py,sha256=
|
|
|
81
81
|
luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.pyi,sha256=H2K7EGKLHOe5xNunVkFuY4sHN3LTVjZHLlnTwYqFk-A,7654
|
|
82
82
|
luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.py,sha256=lLpk0zvSn4XsvE5JEJVF7V2x2ZAX6rCHTgIzjVN9xU0,11209
|
|
83
83
|
luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.pyi,sha256=N7KiftsEfElduhrGpevNqC7Ri3FGpYsiZ1LQJ4RwDrw,3738
|
|
84
|
-
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py,sha256=
|
|
85
|
-
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi,sha256=
|
|
86
|
-
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py,sha256=
|
|
87
|
-
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi,sha256=
|
|
84
|
+
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py,sha256=9c3pC4Lj7rr8IFS2nHb4a2KwuZuM8rsiI52LK8Qg93Y,11983
|
|
85
|
+
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi,sha256=CmQcr9PXicj2YKYUfcUjxZlK_WkjBCaZvEFnP87_vEM,12616
|
|
86
|
+
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py,sha256=hO3M3nhh84q91TewVWM-PQVGsB7jzwjRpyLUq5WsurU,7417
|
|
87
|
+
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi,sha256=ujiijRqdZHjXEjNHjJsZloDyMuQUSjO886PCVbhT5ik,2687
|
|
88
88
|
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py,sha256=iWiIeNEqW7-jSiEHqi3UzoJjTYgaVZ2T4Cz3FW5Ubw0,12295
|
|
89
89
|
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi,sha256=ZFfjZMAyiCQqiimEDDjQn917tNw02lylzwpdlowdhaw,11361
|
|
90
90
|
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.py,sha256=aKHZ_ivh5KKUsh5HOTy-hiIKYrxrdPYBNiBc8P7L51A,12762
|
|
@@ -105,24 +105,24 @@ luminarycloud/_proto/api/v0/luminarycloud/stopping_condition/stopping_condition_
|
|
|
105
105
|
luminarycloud/_proto/api/v0/luminarycloud/stopping_condition/stopping_condition_pb2.pyi,sha256=1jRrt1G8BAoQ45weCEgkptoI2TNKct2XdTJet0KT8HM,17317
|
|
106
106
|
luminarycloud/_proto/api/v0/luminarycloud/stopping_condition/stopping_condition_pb2_grpc.py,sha256=5XtL97RYR6tmJrnF0OAd9DVupkTeI2doZvPRnYV7XpA,15408
|
|
107
107
|
luminarycloud/_proto/api/v0/luminarycloud/stopping_condition/stopping_condition_pb2_grpc.pyi,sha256=XvnTtTBaisI7_EHkgfYbhKAwJM2ISaZunr9wadyS-4o,6188
|
|
108
|
-
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py,sha256=
|
|
109
|
-
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi,sha256=
|
|
110
|
-
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py,sha256=
|
|
111
|
-
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi,sha256=
|
|
112
|
-
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.py,sha256=
|
|
108
|
+
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py,sha256=_q1WEv4fNDstJPACsTwPpgEeMaRWOTmwM8H3TDNk4bo,24382
|
|
109
|
+
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi,sha256=2IhF9Ep0FmWXZkIBV4LVHaehW8Vou7xPa00glrqdnIM,19631
|
|
110
|
+
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py,sha256=ZQRlNCrzlaCwVoefWGpEP7Zh78b1M0dUXW49gI_ZGUA,17676
|
|
111
|
+
luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi,sha256=XFtWJQBeLO0Z7iAsaGgt6_Hg_txVmZ49SlVfFm7MEBo,6875
|
|
112
|
+
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.py,sha256=GSBDw-gXRDjwY82uWrw7IoPsJFJuD4C1yo4VyeTflQ4,3871
|
|
113
113
|
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.pyi,sha256=XbFvpZvvrS7QcH5AFXfpRGl4hQvhd3QdKO6x0oTlCCU,165
|
|
114
|
-
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.py,sha256=
|
|
115
|
-
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.pyi,sha256=
|
|
114
|
+
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.py,sha256=eyC9tE7Rid-6OvRiSohEim8mkORz-cVa-ml4T3S8qBU,12767
|
|
115
|
+
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.pyi,sha256=Xknd7R7907K_Sv4rtixxvcBnyz5lA_RzgbHcrwM7qLo,6431
|
|
116
116
|
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py,sha256=JQbk9mvvDMVPSxb71NMIioRTe8rc8CdH8eYYl28EFZM,70307
|
|
117
117
|
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi,sha256=cI1l-oxEkgvzGo7QMmK_T5jDGa2-__xkH4hsqGJqvMw,88350
|
|
118
118
|
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py,sha256=PULOpPrMZzNEC7IiCqjiIvddOGZVRr5K4vEK2z5mqtA,16410
|
|
119
119
|
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi,sha256=8ArvZODsOVFgSTxDnpa_t3enWP13WROfP_UDZMqq8qs,4496
|
|
120
|
-
luminarycloud/_proto/assistant/assistant_pb2.py,sha256=
|
|
121
|
-
luminarycloud/_proto/assistant/assistant_pb2.pyi,sha256
|
|
122
|
-
luminarycloud/_proto/assistant/assistant_pb2_grpc.py,sha256=
|
|
123
|
-
luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi,sha256=
|
|
124
|
-
luminarycloud/_proto/base/base_pb2.py,sha256=
|
|
125
|
-
luminarycloud/_proto/base/base_pb2.pyi,sha256=
|
|
120
|
+
luminarycloud/_proto/assistant/assistant_pb2.py,sha256=zG3T15gNuEZE5yajkWfMUjl_nSdTJ6C-Mbd90_H_Svo,21590
|
|
121
|
+
luminarycloud/_proto/assistant/assistant_pb2.pyi,sha256=-IwjZXxwyMtts9T3yiCWszonhfoD8t5U5SuIQHb2SKs,26829
|
|
122
|
+
luminarycloud/_proto/assistant/assistant_pb2_grpc.py,sha256=jFKPYswcJ7jQaZFb1R3meXMDxmwUZyWwaj5tIOBfQ_U,13195
|
|
123
|
+
luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi,sha256=jmfwQBQ0klqfYjC7do6zlWkeJ3QLfI_BY3zpIdnC9Pk,4077
|
|
124
|
+
luminarycloud/_proto/base/base_pb2.py,sha256=zul4258WGapCugYM-aCZR8pEblfaRvU_0y2fbF4dfS8,13611
|
|
125
|
+
luminarycloud/_proto/base/base_pb2.pyi,sha256=0DcTWgaOWE5_xBdnZLH-CfFQ3-WXT1XAZTdHh4iGq_A,23540
|
|
126
126
|
luminarycloud/_proto/cad/boolean_pb2.py,sha256=q_6ttv2pZVDpuJB1LmSzQxZ-eja6LqndcZN44G1xiIM,3652
|
|
127
127
|
luminarycloud/_proto/cad/boolean_pb2.pyi,sha256=UcDRXfejwXptwjrIpyzDfKmlK_m79tVjJEvCYvrGRbQ,7427
|
|
128
128
|
luminarycloud/_proto/cad/shape_pb2.py,sha256=sqndAVktb1nq3xudkszpUJt5o-N0THInfCcOttLJB6M,6470
|
|
@@ -133,8 +133,8 @@ luminarycloud/_proto/cadmetadata/cadmetadata_pb2.py,sha256=bJoJXDLcAqmtHfgR6JKNZ
|
|
|
133
133
|
luminarycloud/_proto/cadmetadata/cadmetadata_pb2.pyi,sha256=ilRDD1oOkFffy4bpgPblZHU2j_2PR_gqdL-_5tRBiU0,4463
|
|
134
134
|
luminarycloud/_proto/client/entity_pb2.py,sha256=LmCbzEBTtsBnfgofVEsYFvVCvw-tDzU9o3eOn0-JqmY,1442
|
|
135
135
|
luminarycloud/_proto/client/entity_pb2.pyi,sha256=nUZ93BId89hhsZhyzMoFohDRRYtKUza458dOLNJVENk,1111
|
|
136
|
-
luminarycloud/_proto/client/simulation_pb2.py,sha256=
|
|
137
|
-
luminarycloud/_proto/client/simulation_pb2.pyi,sha256=
|
|
136
|
+
luminarycloud/_proto/client/simulation_pb2.py,sha256=iQR0P3XHoKaRVKKDGW9--faSaY-OvzgE0eVBkY4mN7M,431261
|
|
137
|
+
luminarycloud/_proto/client/simulation_pb2.pyi,sha256=Ka18bRlDMT8uKs__tLLIGqALpwv5lIunvE02KgCgeBE,366515
|
|
138
138
|
luminarycloud/_proto/condition/condition_pb2.py,sha256=0WWoUz2yYAJ8Ux9J7Yqap6UdvvzLxnF_tlBceqk76Us,5144
|
|
139
139
|
luminarycloud/_proto/condition/condition_pb2.pyi,sha256=eZ6hTW0F9RDDCDni4IELnCHBSyPZmcw6aKayrKGuQSU,5914
|
|
140
140
|
luminarycloud/_proto/entitygroup/entitygroup_pb2.py,sha256=tkyRcUY1HzMaV0u6_rhotd60iR8lkszoLNqiDVOK4b8,3877
|
|
@@ -153,12 +153,12 @@ luminarycloud/_proto/fvm/solver_results_pb2.py,sha256=HjFqY63sRX3QEeksmRngF1Ppg6
|
|
|
153
153
|
luminarycloud/_proto/fvm/solver_results_pb2.pyi,sha256=h3Qa1bVX5k8PMpo09vOd1eF4d8PoruitcKiinizEO5Q,7833
|
|
154
154
|
luminarycloud/_proto/fvm/vof_initialization_pb2.py,sha256=sojYSJKPETIecEc1uQYQAto0d1mvrvnNFqlAIPIsiU4,5483
|
|
155
155
|
luminarycloud/_proto/fvm/vof_initialization_pb2.pyi,sha256=Lz18bv9OvARqs5IN78OL51J9HQh3wrnwulFBF04-ChY,8650
|
|
156
|
-
luminarycloud/_proto/geometry/geometry_pb2.py,sha256=
|
|
157
|
-
luminarycloud/_proto/geometry/geometry_pb2.pyi,sha256=
|
|
156
|
+
luminarycloud/_proto/geometry/geometry_pb2.py,sha256=h3IyXeZmYhiUiGrzoJvAEYa2-i67sjw7b6gcTeGZt3g,22327
|
|
157
|
+
luminarycloud/_proto/geometry/geometry_pb2.pyi,sha256=PA0BGopauo77s2tyhoUzjA1CHTURkCUa5VCTCQiOgYE,43863
|
|
158
158
|
luminarycloud/_proto/hexmesh/hexmesh_pb2.py,sha256=oZ4ArEocXE1OV4fkSbAJdi3eoK9n04hNsKatXj4NDVQ,28975
|
|
159
159
|
luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi,sha256=eXaxCbxxaCjV-dJ5YDE3m62Ob0D40txUVCkeYjIB6hE,40221
|
|
160
|
-
luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py,sha256=
|
|
161
|
-
luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi,sha256=
|
|
160
|
+
luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py,sha256=YNdH34jgQA59jSGNYexlsyosGeO-4c504ZvgyUohavc,4565
|
|
161
|
+
luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi,sha256=84v9dtOa0qPA98T2xyUKtCEcqrt3Ubd2uapC25aY4T4,3000
|
|
162
162
|
luminarycloud/_proto/lcn/lcmesh_pb2.py,sha256=Wezvq8djXrRv9luuNU7FYj3Pm5gjt4YBM7-wnwJaF6E,7479
|
|
163
163
|
luminarycloud/_proto/lcn/lcmesh_pb2.pyi,sha256=CFplaZIMsA-txXrU5HcsTkja9OxtLHj2ZEF_qN7jhuY,21738
|
|
164
164
|
luminarycloud/_proto/lcn/lcmeshcheckpoint_pb2.py,sha256=8hZnavu4HEBXhjNqQBAS0kAwjJmqvhSHzCp4NYqJ7aM,3887
|
|
@@ -191,16 +191,16 @@ luminarycloud/_proto/parametricworker/parametricworker_pb2_grpc.py,sha256=sxVIAG
|
|
|
191
191
|
luminarycloud/_proto/parametricworker/parametricworker_pb2_grpc.pyi,sha256=T8RFKXUxrTOGMpXpjAE-b43Nw8LJjetckFC_d-aDIu4,3378
|
|
192
192
|
luminarycloud/_proto/quantity/quantity_options_pb2.py,sha256=x7mjevQEMY-sCnUcRG-Sn0lws9M-T-11bmzbiCZsnq0,7005
|
|
193
193
|
luminarycloud/_proto/quantity/quantity_options_pb2.pyi,sha256=vc0UZFXVRIqkFq_2l0p5BxnawJnkgzr8CDxx6RtzmIQ,12912
|
|
194
|
-
luminarycloud/_proto/quantity/quantity_pb2.py,sha256=
|
|
195
|
-
luminarycloud/_proto/quantity/quantity_pb2.pyi,sha256=
|
|
194
|
+
luminarycloud/_proto/quantity/quantity_pb2.py,sha256=TN6QoD0DwGACq7hixYTw3xdggAqXrRC6Ex0zHuL2DvM,134269
|
|
195
|
+
luminarycloud/_proto/quantity/quantity_pb2.pyi,sha256=KSVWKECIBXGpwrls9gqkYMRtfTjNPhoBT5qDCao7Ujo,17760
|
|
196
196
|
luminarycloud/_proto/ratelimit/ratelimit_pb2.py,sha256=AfCGUbaiTuJ2aoXvfOtzVBitrTD_m41eS8RLjVvobgI,2025
|
|
197
197
|
luminarycloud/_proto/ratelimit/ratelimit_pb2.pyi,sha256=hvaZ__zpz3cabrs4KGyKGIz4yHbkahoy39fTXvD_msA,1515
|
|
198
198
|
luminarycloud/_proto/ratelimit/ratelimit_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
199
199
|
luminarycloud/_proto/ratelimit/ratelimit_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
200
200
|
luminarycloud/_proto/table/table_pb2.py,sha256=zMOMa37Gw9HxSsqTp4QS2FfsmDe52ed5OPYQD71ftQk,7204
|
|
201
|
-
luminarycloud/_proto/table/table_pb2.pyi,sha256=
|
|
202
|
-
luminarycloud/_proto/upload/upload_pb2.py,sha256=
|
|
203
|
-
luminarycloud/_proto/upload/upload_pb2.pyi,sha256=
|
|
201
|
+
luminarycloud/_proto/table/table_pb2.pyi,sha256=pKiMK-Gp9Z1FCEgxqzMcctr63Qjr1vuhZ5uJAVAZlrM,10666
|
|
202
|
+
luminarycloud/_proto/upload/upload_pb2.py,sha256=T7T2bYDYm4iSnA2e0JPvu8H-wf9NdNrW4KgiolSYj8I,15910
|
|
203
|
+
luminarycloud/_proto/upload/upload_pb2.pyi,sha256=Y-oUv-uoblT4TQKh0yAaIKBy9DPlh02hmBPahYh3uEM,19464
|
|
204
204
|
luminarycloud/enum/__init__.py,sha256=NijeZyJdSDsNco0UV5Z4AyQ8BPSwctdE1O4hy_trVs8,1256
|
|
205
205
|
luminarycloud/enum/averaging_type.py,sha256=C_KlxVZavrQRgeIW1dwkSBOuppS2k9zEkSnXnvfMr6o,679
|
|
206
206
|
luminarycloud/enum/calculation_type.py,sha256=3_5nFDYLw56794BTiRlVQYK0f74hXAFEbQHZgLGfibQ,1035
|
|
@@ -212,7 +212,7 @@ luminarycloud/enum/mesh_type.py,sha256=9Fg10uszfLJ-TsKN0Z05YcNI2JYHv5tq8uQGLjdSM
|
|
|
212
212
|
luminarycloud/enum/output_definition_includes.py,sha256=gSE1SQbrLXi8Lt-D4MEKyaU3EEYhAu0f0n5TmlfBgOo,1065
|
|
213
213
|
luminarycloud/enum/output_node_includes.py,sha256=xpTObKRhy3B5RbppzlyvW6lejs1JtWgjGKyNzptoZHY,821
|
|
214
214
|
luminarycloud/enum/physics_ai_lifecycle_state.py,sha256=3WuvlEq0onV9SxRi3JboKAnrMUXa_UI9vXrMu4b3ijw,1056
|
|
215
|
-
luminarycloud/enum/quantity_type.py,sha256=
|
|
215
|
+
luminarycloud/enum/quantity_type.py,sha256=eeE0vfEWhD-kSA-Ty9N43s6K2L3tCLcYvBO0EPeCyRE,7904
|
|
216
216
|
luminarycloud/enum/reference_values_type.py,sha256=XZr77KFD2HeEyOWDADXZFGLlcmHUjle0IGe14mnPS6o,786
|
|
217
217
|
luminarycloud/enum/residual_normalization.py,sha256=SZvPFa2pXEytkE2Kt8m4zkdUsNdLYTMKVwmMCP3NQAc,640
|
|
218
218
|
luminarycloud/enum/residual_type.py,sha256=rasxJT7qOEc2lJzblwcejJruxwoQSa0pk_rxCl81zps,486
|
|
@@ -327,7 +327,7 @@ luminarycloud/params/simulation/physics/fluid/boundary_conditions_fluid_.py,sha2
|
|
|
327
327
|
luminarycloud/params/simulation/physics/fluid/initialization_fluid_.py,sha256=obTG9Vcm7jdW1GMeIjgFQ4ueC60pYoUrfHY6tainHms,1218
|
|
328
328
|
luminarycloud/params/simulation/physics/fluid/physical_behavior_.py,sha256=1aoLWYwC2m9yJ38MXsVPN23XztKY92_n4ZRw_sYRdjY,19687
|
|
329
329
|
luminarycloud/params/simulation/physics/fluid/porous_behavior_.py,sha256=OrhG1qb5PFjWE7Zyn9qCwLZ73FfTG2aj0sKcNCi7E7M,3135
|
|
330
|
-
luminarycloud/params/simulation/physics/fluid/solution_controls_fluid_.py,sha256=
|
|
330
|
+
luminarycloud/params/simulation/physics/fluid/solution_controls_fluid_.py,sha256=g22h-MyeIURtJlNzAwM4hJNw6LJAtTy02rM3aGkIHJA,13452
|
|
331
331
|
luminarycloud/params/simulation/physics/fluid/spatial_discretization_fluid_.py,sha256=JMZhsjqiqnp2QFxcyLZSw1vp1TQXQAraP97axvqZ1pc,10147
|
|
332
332
|
luminarycloud/params/simulation/physics/fluid/turbulence_.py,sha256=KObS-_68bLH4uBORczNb-E9CFC1yTgB-oXJgr7lmZns,8376
|
|
333
333
|
luminarycloud/params/simulation/physics/fluid/boundary_conditions/__init__.py,sha256=XQZbzFDlESRHN_9ueDZYCIXSPdAswNCD5k2TDuRxIpk,276
|
|
@@ -389,12 +389,13 @@ luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation
|
|
|
389
389
|
luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method_.py,sha256=JE-HGJGWlG5EdhowGp7GPUvkYb4jB4zxy69rVe4h6dY,1060
|
|
390
390
|
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/__init__.py,sha256=S3gKCldr-etZHbjb0cipPdDqwRu_rgc0AYIwJfSP2Ks,168
|
|
391
391
|
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_explicit_relaxation_.py,sha256=b4veTDj8xEOVv7mWAi6U2cdlY-fwxHS3xdgPcW2ZVvM,1359
|
|
392
|
-
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py,sha256=
|
|
392
|
+
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation_.py,sha256=UjtvpfWtXfAZDZuNDqQxj35Puj754MzkOG1SvfYzGnk,5099
|
|
393
393
|
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/__init__.py,sha256=c7-PkNtHUmhzrvgY_s1oC5SHAKgSYb44tzVgWIcaLGU,72
|
|
394
394
|
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup_.py,sha256=-2QFz60aslr_Jdi_wEydIUc4ussJEtiBCmjQUWlHmKc,1036
|
|
395
|
-
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py,sha256=
|
|
395
|
+
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py,sha256=Zzaz3CvEC7cQP6zDiqz_9KIhOANuRB4-YsC6YYELMWQ,150
|
|
396
|
+
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_auto_.py,sha256=3lTDOVlsDquOwGKp7fBSBoVDdYhPbLuI300D_qglMsA,1289
|
|
396
397
|
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_off_.py,sha256=99XtEeEkrpkmT9hTHmqznQSz7W4FqMkem1QKud-AROI,1248
|
|
397
|
-
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py,sha256=
|
|
398
|
+
luminarycloud/params/simulation/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/robust_startup_on_.py,sha256=6AaTSwkRJXkM0JVeI7xj5VGQ73Dy_Fu7vxeKmaQaNcI,1541
|
|
398
399
|
luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method/__init__.py,sha256=dtoz9FTnK6QJwJrJnrPeodZM1SF1N9M2b89SEj85xU8,90
|
|
399
400
|
luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method/cfl_based_.py,sha256=P9-WHG4CH6xBd0Ef4OaXz6oacaeseO7bntCb21bZ7Ug,1274
|
|
400
401
|
luminarycloud/params/simulation/physics/fluid/solution_controls/pseudo_time_step_method/fixed_pseudo_time_step_.py,sha256=HA6XbBDqd8ExrNVH9E9Cu36dfgiGDh7LKZvDD4oDyZ0,1249
|
|
@@ -482,10 +483,11 @@ luminarycloud/params/simulation/time/time_marching/time_implicit_.py,sha256=rz8K
|
|
|
482
483
|
luminarycloud/params/simulation/time/time_step_ramp/__init__.py,sha256=fBLjMyx7njsLJloj3DNQFpK7M331VhRi8cOBCsUQqlw,96
|
|
483
484
|
luminarycloud/params/simulation/time/time_step_ramp/time_step_ramp_off_.py,sha256=K91Qd0rlNS8XvUF96et38VRbw_aCN-CSE8m8Ff17DIQ,1089
|
|
484
485
|
luminarycloud/params/simulation/time/time_step_ramp/time_step_ramp_on_.py,sha256=IYtJRE1urILLXfhCYcFhEExELObHgYzAeAmHDix_1Yc,1445
|
|
485
|
-
luminarycloud/physics_ai/__init__.py,sha256=
|
|
486
|
+
luminarycloud/physics_ai/__init__.py,sha256=zSdYA5L3kqGsCfHZVvbYpXd25j8CyAjaHZQFCaQp8ps,478
|
|
486
487
|
luminarycloud/physics_ai/architectures.py,sha256=QDON0p9CsX-wxkfJUFG0_B7OmbKXt1mcTHvUXfX5hAg,2401
|
|
487
|
-
luminarycloud/physics_ai/inference.py,sha256=
|
|
488
|
+
luminarycloud/physics_ai/inference.py,sha256=33WkWSKgyMQYygj3lG_igPHnVjXu-JMjMllxFgAcc94,6199
|
|
488
489
|
luminarycloud/physics_ai/models.py,sha256=xHtxonFAta6dFNxhswj7eQjuV5ic3eo1JI4zwXagYg0,2222
|
|
490
|
+
luminarycloud/physics_ai/solution.py,sha256=5E0HXWQf2G8uw-lAg4n1hPbd0fyr5kx6Mlqb432YNiE,2390
|
|
489
491
|
luminarycloud/pipeline_util/dictable.py,sha256=_YhxibnVCUqSpBH-IHBqvjiYlnAYMbuQv9dWK0eZn7Y,1073
|
|
490
492
|
luminarycloud/pipeline_util/yaml.py,sha256=RG3Gqv4ORaYX4lTyRVBsGVGE138zsxJIYzoWr4Aczrs,1883
|
|
491
493
|
luminarycloud/pipelines/__init__.py,sha256=PVYnZsUWTL7oBYUlTEZaJ77vpf_SKintkRKWJCYRZB4,1012
|
|
@@ -498,13 +500,13 @@ luminarycloud/types/ids.py,sha256=1N0K4xezmi2Dno8TH68tvBgZZCmqYUPbNKujudrzkNg,71
|
|
|
498
500
|
luminarycloud/types/matrix3.py,sha256=7E2CyDZBGL_YPiPyOKve2fhr0COL-7y2yJqqW70W7d8,922
|
|
499
501
|
luminarycloud/types/vector3.py,sha256=agzBz6_vBN6YzKQUlqB94BYOdOaFAbetJKqOtCthkDQ,3381
|
|
500
502
|
luminarycloud/vis/__init__.py,sha256=Jq7PbgcGie3u0oD2ft7u-Ihr18PQFW0y6du1XIsD6qk,1166
|
|
501
|
-
luminarycloud/vis/data_extraction.py,sha256=
|
|
502
|
-
luminarycloud/vis/display.py,sha256=
|
|
503
|
-
luminarycloud/vis/filters.py,sha256=
|
|
503
|
+
luminarycloud/vis/data_extraction.py,sha256=V-n17PosKrBDJoUIyFVmCAMa6P9TYPvlxFvYb2-3d8w,20476
|
|
504
|
+
luminarycloud/vis/display.py,sha256=VxnBtFTGjKINt2cMrJ_SbBI1y_csin9kMVqR5jsHpLo,10312
|
|
505
|
+
luminarycloud/vis/filters.py,sha256=N3PCTXzBad5mwB8GlwZBcFQjN9q8z0kUIzvZ4aljcXg,39846
|
|
504
506
|
luminarycloud/vis/interactive_scene.py,sha256=XQWLpxkw92cz8yULjQiF3tdEgA637C1YB-XfeP6R9kI,7989
|
|
505
|
-
luminarycloud/vis/primitives.py,sha256=
|
|
507
|
+
luminarycloud/vis/primitives.py,sha256=1XkQ-0QQ9cocKEY82XcnMIt3wOP5kB4c4YPo5r9ij1Y,1390
|
|
506
508
|
luminarycloud/vis/vis_util.py,sha256=AWGmHcfYXGmfe5t5Jbb1Fqe2nxVdEQbBitCaWSeT89M,1821
|
|
507
|
-
luminarycloud/vis/visualization.py,sha256=
|
|
508
|
-
luminarycloud-0.
|
|
509
|
-
luminarycloud-0.
|
|
510
|
-
luminarycloud-0.
|
|
509
|
+
luminarycloud/vis/visualization.py,sha256=UuEcce_sRvHKl9jnx417W3cwJzmOW2ni4sX48tJWUiY,53742
|
|
510
|
+
luminarycloud-0.16.0.dist-info/METADATA,sha256=CHtGipS-iNdNsDrLw34qeZ0XwIk5BhgDErE8rITgcoA,2589
|
|
511
|
+
luminarycloud-0.16.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
512
|
+
luminarycloud-0.16.0.dist-info/RECORD,,
|
|
File without changes
|