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

docs: mesh #3340

Merged
merged 2 commits into from
Oct 2, 2024
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
7 changes: 6 additions & 1 deletion src/ansys/fluent/core/filereader/case_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,15 @@ class MeshType(Enum):


class Mesh:
"""Class to provide mesh data.
"""Class to provide data from and information about Fluent mesh files.

This class is applicable only to HDF5, Fluent's default format for mesh files.
HDF5 (Hierarchical Data Format version 5) is commonly used for storing large amounts
of scientific data, including Fluent mesh data.

Methods
-------

get_surface_ids
Get a list of surface ids.
get_surface_names
Expand Down