Skip to content
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
6 changes: 6 additions & 0 deletions src/ansys/dpf/core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ class locations:

elemental_and_faces = "ElementalAndFaces"
data available in elements and faces of the model

modal = "Modal"
relative to modes
"""

none = "none"
Expand Down Expand Up @@ -100,6 +103,9 @@ class locations:
# data available in elements and faces of the model
elemental_and_faces = "ElementalAndFaces"

# data available at modes
modal = "Modal"


def _camel_to_snake_case(name):
return re.sub(r"(?<!^)(?=[A-Z])", "_", name).lower()
Expand Down
Loading