Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdegeus/xdmfwrite_h5py
XDMF meets h5py: Write XDMF files to interpret HDF5 files
https://github.com/tdegeus/xdmfwrite_h5py
fem hdf5 paraview xdmf
Last synced: 11 days ago
JSON representation
XDMF meets h5py: Write XDMF files to interpret HDF5 files
- Host: GitHub
- URL: https://github.com/tdegeus/xdmfwrite_h5py
- Owner: tdegeus
- License: mit
- Created: 2020-06-09T12:00:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-20T09:07:10.000Z (almost 2 years ago)
- Last Synced: 2024-10-03T16:23:42.892Z (about 1 month ago)
- Topics: fem, hdf5, paraview, xdmf
- Language: Python
- Homepage: https://xdmfwrite-h5py.readthedocs.io
- Size: 40 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![CI](https://github.com/tdegeus/XDMFWrite_h5py/workflows/CI/badge.svg)](https://github.com/tdegeus/XDMFWrite_h5py/actions)
[![readthedocs](https://readthedocs.org/projects/xdmfwrite_h5py/badge/?version=latest)](https://readthedocs.org/projects/xdmfwrite_h5py/badge/?version=latest)Module to write XDMF files for HDF5 files. For example:
```python
with h5py.File(root.with_suffix(".h5")) as file, xh.Grid(root.with_suffix(".xdmf")) as xdmf:xdmf += xh.Unstructured(file["coor"], file["conn"], "Quadrilateral")
xdmf += xh.Attribute(file["stress"], "Cell")
```See
**Documentation: [xdmfwrite-h5py.readthedocs.io](https://xdmfwrite-h5py.readthedocs.io/en/latest/)**
for more information and examples.