yirens commited on
Commit
0fe603f
·
verified ·
1 Parent(s): d82f2ff

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: lgpl-2.1
3
+ task_categories:
4
+ - feature-extraction
5
+ Author: Yiren Shen, Juan J. Alonso (c) 2026
6
+ ---
7
+ # Double-Delta Multi-Fidelity Aerodynamics Dataset - Part 2/2
8
+
9
+ ## Dataset Summary
10
+
11
+ This dataset provides an open-source **multi-fidelity aerodynamic benchmark** for a parametric family of **double-delta (cranked-delta) wings**, designed to support research in **data-driven surrogate modeling**, **multi-fidelity learning**, **parametric sensitivity studies and Uncertainty Quantification (UQ)** and **Physics AI models**.
12
+
13
+ The dataset contains paired [**low-fidelity Vortex Lattice Method (VLM)**](https://suave.stanford.edu/) and [**high-fidelity Reynolds-Averaged Navier–Stokes (RANS CFD)**](https://su2code.github.io/) solutions over a shared multi-fidelity representation of geometry.
14
+
15
+ The test problem is relatively simple in geometry, but rich in flow features due to the vortical structures induced by delta wings at higher angle of attack. This dataset provides:
16
+ - CFD: surface results.
17
+ - CFD: volume results.
18
+ - CFD: integrated FOIs (CL, CD, CM, CFx, ...)
19
+ - VLM: induced pressure.
20
+
21
+
22
+ This datasetis the overflow training set of double-delta aero dataset due to Huggingface's 1TB dataset limit. The main repo is at: yirens/double-delta-aero. This repo contains 4 zip files, all belongs to the trainingSet of the main repo.
23
+ ---
24
+
25
+ ## Supported Tasks
26
+
27
+ - Aerodynamic **field prediction**
28
+ - **Multi-fidelity learning** (VLM → CFD correction)
29
+ - Surface or volume Physics AI model development.
30
+ - **Data-scaling and model-scaling law** studies
31
+ - Variance-based sensitivity analysis (Sobol)
32
+ - Surrogate modeling (DV → FOIs)
33
+
34
+ ---
35
+
36
+ ## Dataset Structure
37
+
38
+ Each sample corresponds to a **geometry–flow-condition snapshot** and includes:
39
+
40
+ ### Geometry
41
+ - Parametric **double-delta wing** defined by 6 design variables:
42
+ - Camber deflection angle (δ)
43
+ - Inboard leading-edge sweep (Λ_in)
44
+ - Outboard leading-edge sweep (Λ_out)
45
+ - Outboard trailing-edge sweep (Λ_te)
46
+ - Break-chord location (BW2)
47
+ - Wing span (B)
48
+ ### Flow Conditions
49
+ - Mach number: **0.3**
50
+ - Angle of attack: **11°–19°** (1° increments)
51
+ ### Low-Fidelity Data (VLM)
52
+ - Panel-wise pressure coefficients
53
+ - Lattice geometry and connectivity
54
+ - Stored in **JSON** format
55
+ ### High-Fidelity Data (CFD)
56
+ - RANS solutions using **SU2** with SA-R turbulence model
57
+ - Surface and volume solutions in **VTK**
58
+ - Convergence histories
59
+ - Integrated aerodynamic coefficients (CL, CD, CM)
60
+ ---
61
+ ## Dataset Size
62
+ - **272 unique geometries**
63
+ - **9 angles of attack per geometry**
64
+ - **2,448 total flow snapshots**
65
+ - Nested training subsets enabling controlled scaling:
66
+ - Dataset sizes: **40, 80, 160, 320, 640, 1280** snapshots
67
+ - Separate **holdout test set** of 16 geometries (80 snapshots)
68
+ The nested structure ensures that increasing dataset size refines sampling density without repeating prior simulations.
69
+ ---
70
+ ## Design of Experiments (DOE)
71
+ - Sampling method: [**Nested Saltelli (Sobol) sampling**](https://salib.readthedocs.io/en/latest/_modules/SALib/sample/saltelli.html)
72
+ - Properties:
73
+ - Deterministic and reproducible
74
+ - Uniform space-filling
75
+ - Extendable without re-running prior simulations
76
+ - Supports Sobol sensitivity analysis and UQ
77
+ ---
78
+ ## Out-of-Scope Uses
79
+ - Unsteady or massively separated flows
80
+ - High-speed (compressible/transonic/supersonic) regimes
81
+ - Shocks and shocks interactions
82
+ - Production-level aerodynamic certification
83
+ ---
84
+ ## Data Format and Organization
85
+ <pre>
86
+ ├── geometryDefinition/
87
+ │ ├── designs_&lt;sampleLevels&gt;samples.csv # design variable values for vehicle configurations
88
+ │ └── wing_reference.csv # wing reference area and moment center
89
+ ├── holdoutSet/
90
+ │ ├── &lt;vehicle_call_sign&gt;/
91
+ │ │ ├── &lt;AOA&gt;degAOA/
92
+ │ │ │ ├── config.cfg # SU2 configuration file
93
+ │ │ │ ├── flow.vtu # volume solution
94
+ │ │ │ ├── forces_breakdown.dat # aerodynamic forces, integrated quantities
95
+ │ │ │ ├── history.csv # SU2 convergence history
96
+ │ │ │ └── surface_flow.vtu # surface solution
97
+ │ │ └── ...
98
+ │ └── &lt;vehicle_call_sign&gt;.json # VLM results at all AOAs
99
+ ├── trainingSet/
100
+ │ └── ... # same structure as holdoutSet
101
+ </pre>
102
+ ## Note:
103
+ Part of the dataset, due to HF dataset size limit, is in a seperate repo as yirens/double-delta-aero