https://github.com/tkarabela/ensight-reader
A pure Python reader for the EnSight Gold format
https://github.com/tkarabela/ensight-reader
cae cfd data-format ensight ensight-gold file-format-library python
Last synced: 2 months ago
JSON representation
A pure Python reader for the EnSight Gold format
- Host: GitHub
- URL: https://github.com/tkarabela/ensight-reader
- Owner: tkarabela
- License: mit
- Created: 2022-03-26T21:26:55.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-11-13T22:23:59.000Z (5 months ago)
- Last Synced: 2025-11-14T00:11:09.368Z (5 months ago)
- Topics: cae, cfd, data-format, ensight, ensight-gold, file-format-library, python
- Language: Python
- Homepage: https://ensight-reader.readthedocs.io
- Size: 438 KB
- Stars: 9
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://github.com/tkarabela/ensight-reader/actions)
[](https://app.codecov.io/github/tkarabela/ensight-reader)
[](https://github.com/tkarabela/pysubs2/actions)




# ensight-reader
This library provides a pure Python reader (with some writing capability) for the EnSight Gold data format,
a common format for results of computational fluid dynamics (CFD) simulations.
It also comes with a few CLI tools, notably `ensight_transform` which
allows you to perform in-place scaling/translation/etc. of the geometry in your case.
The library designed for efficient, selective, memory-mapped access to data from EnSight Gold case –
something that would be useful when importing the data into other systems. If you're looking for a more "batteries included" solution, look at
[`vtkEnSightGoldBinaryReader`](https://vtk.org/doc/nightly/html/classvtkEnSightGoldBinaryReader.html)
from the VTK library ([see docs for comparison](https://ensight-reader.readthedocs.io/en/latest/design-howto.html#comparison-with-vtk-library)).
### Requirements
- Python 3.9+
- NumPy 1.22+
### Installation
```sh
pip install ensight-reader
```
### Example – Python API
```python
import ensightreader
import numpy as np
case = ensightreader.read_case("example.case")
geofile = case.get_geometry_model()
part_names = geofile.get_part_names() # ["internalMesh", ...]
part = geofile.get_part_by_name(part_names[0])
N = part.number_of_nodes
with geofile.open() as fp_geo:
node_coordinates = part.read_nodes(fp_geo) # np.ndarray((N, 3), dtype=np.float32)
variable = case.get_variable("UMean")
with variable.mmap_writable() as mm_var:
data = variable.read_node_data(mm_var, part.part_id)
data[:] = np.sqrt(data) # transform variable data in-place
```
### Example – CLI
```sh
# increment X coordinate
ensight_transform --translate 1 0 0 sphere.case
# scale by 1000 (eg. m -> mm conversion)
ensight_transform --scale 1e3 1e3 1e3 sphere.case
# rotation matrix
ensight_transform --matrix \
0 -1 0 0 \
1 0 0 0 \
0 0 1 0 \
0 0 0 1 \
sphere.case
# transform only "internalMesh" part
ensight_transform --translate 1 0 0 --only-parts internalMesh motorbike.case
```
To learn more, please [see the documentation](https://ensight-reader.readthedocs.io).