3dit
Repository for 3D EIT measurement with a modified Ender 5 3D printer and the ScioSpec Eit device.
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.3%) to scientific vocabulary
Repository
Repository for 3D EIT measurement with a modified Ender 5 3D printer and the ScioSpec Eit device.
Basic Info
Statistics
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
3dIT
Repository for 3D Eit measurement with a modified Ender 5 3D printer and the ScioSpec Eit device.
Based on: sciospeceit
Start
The standart full measurement notebook is provided here.
Generate Measurement Coordinates
Import the required libraries:
from src.classes import BallAnomaly, HitBox, TankProperties32x2
from src.functions import compute_hitbox, create_meas_coordinates, print_coordinates_props
from src.visualization import plot_meas_coords, plot_meas_coords_wball
Define variables that contain the information and parameters of the tank, ball, and hitbox, saved in the provided dataclasses.
tank = TankProperties32x2()
ball = BallAnomaly(x=0, y=0, z=0, r=20, material=None)
hitbox = compute_hitbox(tank, ball, safety_tolerance=0)
Create the measurement coordinates using the create_meas_coordinates() function.
This function uses the numpy np.meshgrid function. Mind that the final x,y,z meshgrid is masked by the hitbox to prohibite collisions with the phantom tank.
This means that the final number of measurements is much smaller than x_pts$\cdot$y_pts$\cdot$z_pts
coordinates = create_meas_coordinates(hitbox, x_pts=20, y_pts=20, z_pts=10)
To get further information about coordinates you can apply the function print_coordinates_props().
For visualizing the created points the two functions plot_meas_coords() and plot_meas_coords_wball() are provided. For further information, call the docstring documentation.
plot_meas_coords_wball(tank=tank, meas_coords=coordinates, ball=ball, p_select=34)

For ground truth visualization a point cloud is used. The corresponding class and "mesh" generation can be used by:
# define tank and object properties
tank = TankProperties32x2()
ball = BallAnomaly(x=0, y=0, z=50, r=20, perm=10, material="acryl-glass")
mesh_obj = create_mesh(tank)
# visualization
plot_mesh(mesh_obj, tank, show_tank_brdr=True)
# set the perm
mesh_obj = set_perm(mesh_obj, ball)
Ender 5 Information
The Ender 5 is used for object placement and movement inside the phantom tank. The nozzle for printing was replaced with a mounting construction. The coordinate system for controlling the Ender 5 is different from the python standard coordinate axis. The $x$ and $y$ axis has to be switched.
Measurement Objects
In total 18 measurement combination are planned.

Measurement Configuration

Show Injection Pattern

Owner
- Login: JacobTh98
- Kind: user
- Repositories: 2
- Profile: https://github.com/JacobTh98
Citation (citation.cff)
cff-version: 1.2.0
title: >-
Repository for 3D EIT measurement with a modified Ender 5 3D printer and the ScioSpec Eit device.
message: >-
If you use this repository, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Jacob Peter
family-names: Thönes
email: jacob.thoenes@uni-rostock.de
affiliation: Universität Rostock
orcid: 'https://orcid.org/0000-0003-2826-5281'
repository-code: 'https://github.com/JacobTh98/3dIT'
url: 'https://github.com/JacobTh98/3dIT'
keywords:
- EIT
- Sciospec
license: MIT
version: 0.1.0
date-released: '2023-12-01'
GitHub Events
Total
- Watch event: 1
Last Year
- Watch event: 1
Issues and Pull Requests
Last synced: 12 months ago
All Time
- Total issues: 0
- Total pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: 5 days
- Total issue authors: 0
- Total pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
- JacobTh98 (3)