Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions flow360/_public_namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
ReferenceGeometry,
SeedpointVolume,
Sphere,
VoxelGrid,
)
from flow360.component.simulation.run_control.run_control import RunControl
from flow360.component.simulation.run_control.stopping_criterion import (
Expand Down Expand Up @@ -347,6 +348,7 @@ def configure(apikey: str, environment: str = None, profile: str = "default") ->
"PointArray",
"AngleExpression",
"Box",
"VoxelGrid",
"GenericReferenceCondition",
"TransitionModelSolver",
"TurbulenceModelControls",
Expand Down
6 changes: 5 additions & 1 deletion flow360/component/simulation/primitives.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
_MirroredEntityBase,
compute_bbox_tolerance,
)
from flow360_schema.models.entities.volume_entities import (

# VoxelGrid lands in flow360_schema alongside the schema-side flex PR; drop
# the inline pylint disable once the new flow360_schema release is pinned.
from flow360_schema.models.entities.volume_entities import ( # pylint: disable=no-name-in-module
AxisymmetricBody,
AxisymmetricSegment,
Box,
Expand All @@ -37,5 +40,6 @@
GenericVolume,
SeedpointVolume,
Sphere,
VoxelGrid,
)
from flow360_schema.models.reference_geometry import ReferenceGeometry
Loading