knotekjaroslav commited on
Commit
d55a6f2
·
verified ·
1 Parent(s): 7883433

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -3
README.md CHANGED
@@ -1,3 +1,92 @@
1
- ---
2
- license: gpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ pretty_name: Nuclear Fuel Assembly (NFA) Inspection Videos
4
+ ---
5
+
6
+
7
+ # Nuclear Fuel Assembly (NFA) Inspection Videos
8
+
9
+
10
+
11
+ This repository contains inspection data from three nuclear fuel assemblies (NFAs) of varying ages and deformation levels. Each assembly is inspected on all six hexagonal faces, with corresponding videos and supplementary data files provided for each face.
12
+ Dataset Contents. This dataset was generated by a simulator described in the publication **TODO**.
13
+
14
+ Each NFA contains the following data per face:
15
+
16
+ - Inspection video
17
+ - Video Report Card: Human readable PDF document with summarizing inspection parameters
18
+ - Shifts CSV: Frame-wise displacement data (x, y, z)
19
+ - 3D Model and visualizations: PLY format 3D representation of the assembly and its visualizations
20
+ - Simulation Parameters: JSON file containing input simulation settings
21
+ - Results Parameters: JSON file containing result of some simulated features
22
+
23
+
24
+ ## Use Cases
25
+
26
+ This dataset was used for:
27
+
28
+ - Validation/Evaluation of existing algorithms
29
+ - Training models for detection/segmentation tasks
30
+
31
+
32
+ ## Folder Structure
33
+
34
+ Each NFA has one video for each of its 6 faces (F1, ..., F6).
35
+
36
+ ```
37
+ videos/
38
+ ├── NFA_1/
39
+ │ ├── F1/
40
+ │ │ ├── video.mp4
41
+ │ │ ├── video_report.pdf
42
+ | | ├── metadata/
43
+ | | | ├── shifts.csv
44
+ | | | ├── fa_model.ply
45
+ | | | ├── results.json
46
+ | | | ├── simulation_parameters.json
47
+ | | | ├── bow_div.png
48
+ | │ │ └── shrunk.png
49
+ │ ├── F2/ (same structure)
50
+ │ └── ... (remaining faces)
51
+ ├── NFA_2/ (same structure as NFA_1)
52
+ └── NFA_3/ (same structure as NFA_1)
53
+ ```
54
+
55
+
56
+ ### Detailed Input Simulation Parameters
57
+
58
+ The `simulation_parameters.json` file contains metadata describing the simulation and inspection setup. Below is a detailed breakdown of the keys:
59
+
60
+ 1. **General Simulation Settings**:
61
+ - `n_textures`: Number of unique surface textures applied to the fuel rods during simulation.
62
+ - `seed`: Random seed value for reproducibility of simulation results.
63
+
64
+ 2. **Geometrical Properties of the Assembly**:
65
+ - `rod_height_mm`: Height of each fuel rod in millimeters.
66
+ - `rod_width_mm`: Width (diameter) of each fuel rod in millimeters.
67
+ - `rod_gap_mm`: Distance (gap) between adjacent fuel rods in millimeters.
68
+ - `grid_tops_mm`: Array specifying the vertical positions of the grid spacers along the fuel rods in millimeters.
69
+ - `span_margin_mm`: Area around grid unaffected by bow millimeters for assembly rod positioning.
70
+ - `rods_per_face`: Number of rods on each hexagonal face of the assembly.
71
+ - `rod_centers`: Array of coordinates representing the positions of rod centers (likely in a local reference frame).
72
+
73
+ 3. **Deformation Parameters**:
74
+ - `max_bow_mm`: Maximum lateral bowing (curvature) of the rods in millimeters.
75
+ - `max_divergence_mm`: Maximum bow of indivial rods in millimeters (final bow of each rod consists of rod bow added to NFA bow).
76
+ - `max_z_displacement_mm`: Maximum axial displacement of the rods in millimeters. Used as a simulation of rod growth.
77
+
78
+ 5. **Visual and Environmental Settings**:
79
+ - `cloudiness`: Level of homogenous surface oxidation.
80
+ - `cam_res_x`: Horizontal resolution of the simulated inspection camera in pixels.
81
+ - `cam_res_y`: Vertical resolution of the simulated inspection camera in pixels.
82
+
83
+ ### Detailed Output Parameters
84
+
85
+ The `results.json` contains parameters calculated by the simulator.
86
+
87
+ - `rod_growth_mm` - An array of growth for each rod in millimeters.
88
+ - `cam_speed_mm_per_s` - A speed of a camera mm/s.
89
+
90
+ ## Contact
91
+
92
+ For any questions or issues, please contact [email protected]