-
-
Notifications
You must be signed in to change notification settings - Fork 186
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
VTKHDF mesh I/O #3576
VTKHDF mesh I/O #3576
Conversation
Why have you chosen to restrict it to first order meshes (the restriction is not present in my Python implementation) |
@jorgensd - partly because higher order pyramids are not working in Paraview, partly just to keep it simpler for now. |
I really think we should include higher order right away. very few (if any uses pyramids atm, especially higher order ones, and if the issue is with Paraview it shouldn’t limit us). |
Additionally, the code complexity for higher order is not really hard (as shown in the mixed topology io branch with the Python implementation). |
* Work in progress * Work in progress * Reorganise * tidy * Add comments and test * Interface update * Work on Python layer * Add docstrings * Add mixed mesh fixture * fix? * Add typing --------- Co-authored-by: Garth N. Wells <[email protected]>
Adds a simple reader and writer for
Mesh
using theVTKHDF
format.This is currently limited to first order meshes (but can be extended to higher order).
Includes support for mixed-topology meshes.