Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the post doc related to the latest work on CFX face zone refac… #556

Merged
merged 2 commits into from
Dec 4, 2023
Merged
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
8 changes: 6 additions & 2 deletions src/ansys/dpf/post/fluid_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ def cell_zones(self) -> dict:

@property
def face_zones(self) -> dict:
"""Return a dictionary of the face zones in the simulation."""
"""Return a dictionary of the face zones in the simulation.

For CFX files, we gather face zones in COMPOSITE entities more physics-related.
"""
return self.mesh_info.face_zones

@property
Expand Down Expand Up @@ -558,7 +561,8 @@ def density(
node_ids:
List of IDs of nodes to get results for.
face_ids:
List of IDs of faces to get results for.
List of faces IDs to get results for. For CFX files, these IDs correspond
to the COMPOSITE that gathers the related face zones.
cell_ids:
List of IDs of cells to get results for.
zone_ids:
Expand Down