Iris314 commited on
Commit
c65a235
·
verified ·
1 Parent(s): 1797149

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ - 3d-object-detection
7
+ language:
8
+ - code
9
+ tags:
10
+ - finite-element-analysis
11
+ - meshing
12
+ - structural-engineering
13
+ - cae
14
+ - simulation
15
+ - geometry
16
+ - stress-analysis
17
+ - adaptive-mesh-refinement
18
+ - engineering-education
19
+ - ansys
20
+ - python
21
+ pretty_name: MeshRefine-FEA Corner Bracket Dataset
22
+ size_categories:
23
+ - 10k<n<100k
24
+ ---
25
+
26
+ # MeshRefine-FEA Corner Bracket Dataset
27
+
28
+ ## Overview
29
+ This dataset contains simulation-driven mesh refinement information for right-angle corner bracket geometries under various loading conditions. All simulation data was generated using the ANSYS Mechanical Python API, applying up to five localized mesh refinement iterations per case based on stress concentration analysis.
30
+
31
+ The dataset supports research in:
32
+ - Feature-aware mesh refinement
33
+ - Convergence prediction
34
+ - Intelligent simulation-preprocessing assistants
35
+ - Lightweight agentic decision-making for FEA
36
+
37
+ ---
38
+
39
+ ## Dataset Structure
40
+
41
+ ### feature_level_augmented.csv
42
+ Each record corresponds to a single CAD face and includes:
43
+ - Geometric category: `{hole, plane, fillet}`
44
+ - Spatial information: center `(cx, cy, cz)`, normal `(nx, ny, nz)`
45
+ - Area of the face
46
+ - Load relation: `{load, fixed, free}`
47
+ - Distance from load application region
48
+ - Final **local mesh size**
49
+ - Binary refinement label
50
+
51
+ Primary use: feature-level refinement recommendation & local sizing
52
+
53
+ ---
54
+
55
+ ### part_level.csv
56
+ Each record represents a full simulation case and includes:
57
+ - Total and per-type face counts
58
+ - Load type, direction, and magnitude
59
+ - Final **global mesh size**
60
+ - Convergence status (after ≤5 iterations)
61
+
62
+ Primary use: global mesh sizing & convergence prediction
63
+
64
+ ---
65
+
66
+ ## Data Generation Workflow
67
+
68
+ - CAD Source: Public STEP models from McMaster-Carr (corner brackets)
69
+ - Initial mesh based on bounding box + thickness metrics
70
+ - Stress-driven refinement:
71
+ - Local size reduction: 0.75–0.85× per iteration
72
+ - Convergence rule: <15% change in max von Mises stress
73
+ - Marked as singularity if not converged after 5 iterations
74
+
75
+ All simulations were scripted using `ansys.mechanical.core` to ensure consistency and automation.
76
+
77
+ ---
78
+
79
+ ## Target ML Tasks
80
+
81
+ This dataset enables supervised learning for 4 predictive objectives:
82
+
83
+ | Task | Level | Type |
84
+ |------|------|------|
85
+ | Region refinement decision | Feature | Binary classification |
86
+ | Local mesh sizing | Feature | Regression |
87
+ | Convergence prediction | Part | Binary classification |
88
+ | Global mesh sizing | Part | Regression |
89
+
90
+ These tasks reflect the common failure points for early-career FEA users.
91
+
92
+ ---
93
+
94
+ ## Dataset Statistics
95
+ | Property | Value |
96
+ |---------|------|
97
+ | # of CAD parts | *fill in once finalized* |
98
+ | # of simulation cases | *fill in* |
99
+ | # of features (rows) | *fill in* |
100
+ | Max refinement iterations | 5 |
101
+ | Domain | Industrial brackets |
102
+
103
+ (*Replace after upload verification*)
104
+
105
+ ---
106
+
107
+ ## Example Use Cases
108
+ - Predict stress-driven refinement regions
109
+ - Prevent non-convergent simulation setup
110
+ - Automatically adjust mesh density for faster solvers
111
+ - Provide explainable refinement guidance for students
112
+
113
+ ---
114
+
115
+ ## License
116
+ - Based on publicly accessible mechanical CAD
117
+ - Free for research and educational use
118
+ - Please cite this dataset in derivative work
119
+
120
+ ---
121
+
122
+ ## Acknowledgements
123
+ Created to support intelligent mesh refinement for beginner FEA simulation tools.
124
+
125
+ ---
126
+
127
+ ## Citation
128
+ ```bibtex
129
+ @dataset{meshrefine_fea_2025,
130
+ title={MeshRefine-FEA Corner Bracket Dataset},
131
+ author={X. Tang et al.},
132
+ year={2025},
133
+ note={Finite Element mesh refinement dataset for feature-aware learning}
134
+ }