Zeiss GOM Aramis Data Exporter
Project description
Data exporter for Zeiss GOM Inspect/ARAMIS Professional
The data exporter is a third-party Python package that enables the export of 3D digital image correlation (DIC) data from a Zeiss GOM Inspect/ARAMIS Professional project in a neutral and human-readable ASCII data format. The export contains the mesh, displacement and strain data, as well as metadata. This provides high flexibility for further processing using open source software. The package has been designed for usage within the Python environment of the Zeiss GOM Inspect/ARAMIS Professional software. It has minimal dependencies and is straightforward to install.
The outputs are as follows:
- nodemap.txt: A combined table of metadata and the nodes with their coordinates, displacement, strain data.
- connections.txt: A list of all elements and their connecting codes of the triangular mesh.
- nodemap.vtk: A file readable for Visualization Toolkit (VTK), which contains both nodal data and mesh data in a standardised ASCII data format.
This enables the data to be read by CrackPy, a Python package for the analysis of crack propagation based on DIC data. CrackPy offers a wide range of methods for reading, processing and plotting the data. Furthermore, the VTK file can be imported into ParaView for visualization.
Table of Contents
- Installation
- Usage
- ARAMIS project preparation
- Nodemap
- Connections
- VTK
- Dependencies
- License
- Intellectual Property and Authorship
Installation
You've multiple options to install the ARAMIS Exporter package, depending on your needs.
Install the ARAMIS Exporter
To install the package, ensure you have administrative rights, then run in a Windows command prompt:
Version <2025
cd "C:\Program Files\GOM\2020\python\"
python.exe -m pip install --upgrade git+https://github.com/dlr-wf/aramis-data-exporter.git
Version ≥2025
cd "C:\Program Files\Zeiss\INSPECT\2025\python\"
python.exe -m pip install --upgrade git+https://github.com/dlr-wf/aramis-data-exporter.git
Install in development mode
For development purposes, you can also clone the package, which allows you to make changes without reinstalling.
- Clone the repository:
git clone https://github.com/dlr-wf/aramis-data-exporter.git "C:\OurPythonLibraries"
- Navigate to the package directory:
cd "C:\OurPythonLibraries\aramis_exporter"
- Install in development mode:
Version <2025
"C:\Program Files\GOM\2020\python\python.exe" setup.py develop
Version ≥2025 (No admin rights are required)
"C:\Program Files\Zeiss\INSPECT\2025\python\python.exe" -m pip install --user -e .
This will create an aramis-exporter.egg-link file in the site-packages directory of the Python environment (e.g., C:\Users\<user>\AppData\Roaming\Python\...), which links to the package directory and allows the package to be imported directly.
- To uninstall the package, run:
Version <2025
"C:\Program Files\GOM\2020\python\python.exe" setup.py develop --uninstall
Version ≥2025
"C:\Program Files\Zeiss\INSPECT\2025\python\python.exe" -m pip uninstall aramis_exporter
Install in App
In Version ≥2025, you can also install the package directly in the Zeiss Inspect App environment:
- Open the Zeiss Inspect application
- Navigate to Apps → App-editor
- Press Crtl + N to create a new app
- RMB on scripts/modules to install either from pip (aramis_exporter) or from local build (*.whl or *.zip).
Usage
The package can be used in the Python environment of Zeiss GOM Inspect/ARAMIS Professional. The following code snippet shows how to use the package:
import gom
from aramis_exporter.exporter import AramisExporter, ExportConfig
# Define the project name, specimen name and experiment name
PROJECT_NAME = "TestProject"
SPECIMEN_NAME = "TestSpecimen"
EXP_NUMBER = "0001"
# Baseline configuration for the exporter
# Filenames and export paths will be generated automatically
# See documentation for overwrites
config = ExportConfig(
stage_indxs="all",
project_name=PROJECT_NAME,
specimen_name=SPECIMEN_NAME,
experiment_name=EXP_NUMBER,
)
# Initialize gom_project with tom functionalities
exporter = AramisExporter(gom,
config,
metadata={'Custom_tag': 123.456},
)
# export data of txt format (nodemap & connections)
exporter.export_data_to_txt()
# export data to vtk format
exporter.export_data_to_vtk()
ARAMIS project preparation
The initialization of the AramisExporter class prepares the GOM project as follows:
- Checks if all necessary data are calculated, otherwise create and compute
surface_componentfor $u_{x}$, $u_{y}$, $u_{z}$, $\varepsilon_{x}$, $\varepsilon_{y}$, $\varepsilon_{xy}$, $\varepsilon_{\mathrm{eqv}}$. - Checks if rigid body motion compensation (RBMC) was conducted and is active. If this is not the case, the RBMC is performed.
- Gathers all process data from the open ARAMIS DIC project like process data, calibration data, facet size, facet distance, analog input, value elements, sensor setup, etc.
- Create output folder and export data for all stages to individual files.
Nodemap
The nodemap file stores the nodal or facet data. Metadata or comments can be stored in the header, identified by the
symbol #. The data section includes individual columns containing nodal coordinates, displacement vector, and strain
tensor defined for plane strain conditions.
# Process data:
# specimen : Dummy2
####################################################################################################
# SIGNALS:
# force : value_element : 14985.6119156
# displacement : value_element : -9.17953395844
#
# force_analog : analog_input : 15102.5390625
# displacement_analog : analog_input : -7.6751708984375
####################################################################################################
# ID; x_undef [mm]; y_undef [mm]; z_undef [mm]; u [mm]; v [mm]; w [mm]; epsx [%]; epsy [%]; epsxy [1]; epseqv [%]
1; -80.0564567626; 84.9779203814; 0.1509636527; 0.003655774286017; 0.059203740209341; -0.158300071954727; -0.185958549380302; -0.112336091697216; -0.000613267708104; 0.310294896364212
2; -79.2904753387; 85.0053386055; 0.1975326408; 0.001983210910112; 0.060109287500381; -0.155325025320053; -0.209498479962349; -0.005866464227438; -0.000913561263587; 0.267783910036087
Here:
IDis the node number.x_undef,y_undef,z_undefare the nodal coordinates in the undeformed reference coordinate system, given in millimeters.u,v,ware the displacements in x, y and z direction, given in millimeters.epsx,epsy,epsxyare the components of the Cauchy's strain tensor. Note thatepsxandepsyare given in %, whileepsxyis given without a ratio!epseqvis the equivalent von Mises strain.- The separator is a semicolon
;
Connections
The connection file defines the relationships between nodes within the elements of the triangular mesh. Each row in the file represents a single triangular element and specifies which nodes are connected to form that triangle. The connection data is formatted as follows:
Type; Element #; Node 1; Node 2; Node 3
3; 1; 108; 1; 0
3; 2; 109; 2; 1
3; 3; 110; 3; 2
VTK
The Visualization Toolkit (VTK) provides file formats for storing mesh data in a standardized and neutral format.
It can be used in many post-processing tools. We use
the VTK legacy
format. The VTK files can subsequently be imported into, e.g., ParaView for visualization. Further options to
read and process the data in Python are pyvista (pip install pyvista)
and vtk (pip install vtk).
The following scalars are available:
x [mm],y [mm],z [mm]u_x [mm],u_y [mm],u_z [mm]eps_x [%],eps_y [%],eps_xy [1],eps_vm [%]
Export directory structure
The export process creates the following directory structure:
export_directorynodemap_subfolder: Contains the nodemap files for each stage.connection_subfolder: Contains the connection files for each stage.vtk_subfolder: Contains the VTK files for each stage (if VTK export is performed).
Dependencies
- Zeiss GOM Inspect/ARAMIS Professional (Version > 2020)
- numpy (This should already be part of the Python environment in Zeiss Gom Inspect/Aramis)
- gom (Internal Zeiss Gom Inspect/ARAMIS Python package)
Manual Installation of Python Packages in the ZEISS Inspect Python Environment
Open a Command Prompt window and enter the following commands:
cd "C:\Program Files\Zeiss\INSPECT\2025\python\"
python.exe -m pip install fastapi
License
The package is developed for research only and must not be used for any production or specification purposes. The package is under current development and all functionalities are on a prototype level. Feel free to use the code, however, we do not guarantee in any form for its flawless implementation and execution. However, if you run into errors in the code or find any bugs, we will be happy if you contact us. Licensed under MIT License (see LICENSE file)
Intellectual Property and Authorship
Authors
Tobias Strohmann
Ferdinand Dömling
David Melching
Eric Breitbarth (eric.breitbarth@dlr.de)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aramis_exporter-1.4.0.tar.gz.
File metadata
- Download URL: aramis_exporter-1.4.0.tar.gz
- Upload date:
- Size: 88.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25c928f8c3745839a0fb9a1f50b3131233433f509c0f96a86a824474e6854505
|
|
| MD5 |
5ce721cb9f4a41b18a76aab71fade186
|
|
| BLAKE2b-256 |
7f046765067d7492ac5f93efe1b68ecd0a3d1b7a25509590db36ee702e441a7b
|
File details
Details for the file aramis_exporter-1.4.0-py3-none-any.whl.
File metadata
- Download URL: aramis_exporter-1.4.0-py3-none-any.whl
- Upload date:
- Size: 88.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c45a9ec3227f39390f1bac79d544cc84fe8bacfdfd4769adb27c35f7167e45e8
|
|
| MD5 |
098647de2bcb7684a767c3dfec883e52
|
|
| BLAKE2b-256 |
23b6e292b3c83ade6939af85ba880b54c71716ab96c218ea7869efcb6843aa1e
|