Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7ddd2f7
first version
alexxu-flex Mar 9, 2026
bdc0285
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Mar 11, 2026
d62042e
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Mar 11, 2026
6dbf834
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Mar 12, 2026
69c56f8
black
alexxu-flex Mar 12, 2026
c7fc526
bugfix: unit conversion in dicts
alexxu-flex Mar 19, 2026
55c50bd
resolve merge conflict; improve test location
alexxu-flex Mar 19, 2026
f77647f
cursor comment: unify recursive preprocess dimension
alexxu-flex Mar 19, 2026
c04f7d6
add Face class, switch API to axisymm_body.face(n)
alexxu-flex Mar 24, 2026
bdc9aaf
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Mar 24, 2026
8e45cfc
add face class standalone unit test
alexxu-flex Mar 24, 2026
359b8e1
use entity name for face_spacing to align with C++ parser
alexxu-flex Mar 25, 2026
b19cd53
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Mar 25, 2026
200f6b4
Merge branch 'main' into alexxu/varying-refinement-faces
benflexcompute Mar 31, 2026
b1021ec
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Apr 3, 2026
ecd9921
refactor face_spacing to dict[segment, length], cleaner validation
alexxu-flex Apr 3, 2026
a6336cb
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Apr 3, 2026
ffce319
Merge branch 'alexxu/varying-refinement-faces' of github.com:flexcomp…
alexxu-flex Apr 3, 2026
4b64c60
cursor feedback: check face_spacing entities against entity list, w/ …
alexxu-flex Apr 3, 2026
5d30a22
Merge branch 'main' of github.com:flexcompute/Flow360 into alexxu/var…
alexxu-flex Apr 29, 2026
abbaac0
bump version + add axisymmetricsegment
alexxu-flex Apr 29, 2026
17371b1
Update lock
benflexcompute May 1, 2026
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
1 change: 1 addition & 0 deletions flow360/component/simulation/primitives.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
)
from flow360_schema.models.entities.volume_entities import (
AxisymmetricBody,
AxisymmetricSegment,
Box,
BoxCache,
CustomVolume,
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pydantic = ">=2.8,<2.12"
# -- Local dev (editable install, schema changes take effect immediately):
# flow360-schema = { path = "..../flex/share/flow360-schema", develop = true }
# -- CI / release (install from CodeArtifact, swap comments before pushing):
flow360-schema = { version = "= 25.10.10b1", source = "codeartifact" }
flow360-schema = { version = "= 25.10.11b1", source = "codeartifact" }
pytest = "^7.1.2"
click = "^8.1.3"
toml = "^0.10.2"
Expand Down
Loading