File size: 3,484 Bytes
c65a235
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72b8d22
 
c65a235
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
license: mit
task_categories:
  - tabular-classification
  - tabular-regression
language: 
  - code
tags:
  - finite-element-analysis
  - meshing
  - structural-engineering
  - cae
  - simulation
  - geometry
  - stress-analysis
  - adaptive-mesh-refinement
  - engineering-education
  - ansys
  - python
pretty_name: MeshRefine-FEA Corner Bracket Dataset
size_categories:
  - 10k<n<100k
---

# MeshRefine-FEA Corner Bracket Dataset

## Overview
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.

The dataset supports research in:
- Feature-aware mesh refinement
- Convergence prediction
- Intelligent simulation-preprocessing assistants
- Lightweight agentic decision-making for FEA

---

## Dataset Structure

### feature_level_augmented.csv
Each record corresponds to a single CAD face and includes:
- Geometric category: `{hole, plane, fillet}`
- Spatial information: center `(cx, cy, cz)`, normal `(nx, ny, nz)`
- Area of the face
- Load relation: `{load, fixed, free}`
- Distance from load application region
- Final **local mesh size**
- Binary refinement label

Primary use: feature-level refinement recommendation & local sizing

---

### part_level.csv
Each record represents a full simulation case and includes:
- Total and per-type face counts
- Load type, direction, and magnitude
- Final **global mesh size**
- Convergence status (after ≤5 iterations)

Primary use: global mesh sizing & convergence prediction

---

## Data Generation Workflow

- CAD Source: Public STEP models from McMaster-Carr (corner brackets)
- Initial mesh based on bounding box + thickness metrics
- Stress-driven refinement:
  - Local size reduction: 0.75–0.85× per iteration
  - Convergence rule: <15% change in max von Mises stress
- Marked as singularity if not converged after 5 iterations

All simulations were scripted using `ansys.mechanical.core` to ensure consistency and automation.

---

## Target ML Tasks

This dataset enables supervised learning for 4 predictive objectives:

| Task | Level | Type |
|------|------|------|
| Region refinement decision | Feature | Binary classification |
| Local mesh sizing | Feature | Regression |
| Convergence prediction | Part | Binary classification |
| Global mesh sizing | Part | Regression |

These tasks reflect the common failure points for early-career FEA users.

---

## Dataset Statistics
| Property | Value |
|---------|------|
| # of CAD parts | 25 |
| # of simulation cases | 7,500 |
| Max refinement iterations | 5 |
| Domain | Industrial brackets |


---

## Example Use Cases
- Predict stress-driven refinement regions
- Prevent non-convergent simulation setup
- Automatically adjust mesh density for faster solvers
- Provide explainable refinement guidance for students

---

## License
- Based on publicly accessible mechanical CAD
- Free for research and educational use
- Please cite this dataset in derivative work

---

## Acknowledgements
Created to support intelligent mesh refinement for beginner FEA simulation tools.

---

## Citation
```bibtex
@dataset{meshrefine_fea_2025,
title={MeshRefine-FEA Corner Bracket Dataset},
author={X. Tang et al.},
year={2025},
note={Finite Element mesh refinement dataset for feature-aware learning}
}