Datasets:

ArXiv:
License:
nashton commited on
Commit
aab190d
·
verified ·
1 Parent(s): d710c1e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -1
README.md CHANGED
@@ -2,4 +2,123 @@
2
  license: cc-by-4.0
3
  ---
4
 
5
- Data is in the process of being uploaded - please do not try to use the data until uploads are fully complete. Gated access for early testing. Paper will be published March 2026 with full details. Write to nashton@nvidia.com for any questions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: cc-by-4.0
3
  ---
4
 
5
+ # HiLiftAeroML: High-Fidelity Computational Fluid Dynamics Dataset for High-Lift Aircraft Aerodynamics
6
+
7
+ **Contact:**
8
+ Neil Ashton (nashton@nvidia.com)
9
+
10
+ ## Summary
11
+ This dataset provides the first-ever open-source high-fidelity CFD dataset of a high-lift aircraft for the purpose of AI surrogate model development. The dataset is composed of 1,800 samples, arising from 180 geometry variants of the NASA Common Research Model (CRM-HL) across 10 angles of attack (from 4° to 22° in 2° increments).
12
+
13
+ One of the key novelties of this dataset is the use of a GPU-accelerated high-fidelity explicit, wall-modeled LES (WMLES) approach on solution-adapted grids containing between 300M and 500M cells. By making this data publicly available, the aim is to accelerate the research and development of AI surrogate modeling within the aerospace industry by addressing the lack of high-fidelity, scale-resolving CFD training data for complex 3D airframes in the high-lift regime.
14
+
15
+ ## CFD Solver
16
+ The simulations were performed using the **"Fidelity Charles"** flow-solver, an explicit, unstructured, finite-volume solver for the compressible Navier-Stokes equations.
17
+ * **Accuracy:** 2nd-order accurate in space and 3rd-order accurate in time.
18
+ * **Meshing:** The domain was discretized using "Fidelity Stitch", an unstructured mesh generator based on Voronoi diagrams.
19
+ * **Turbulence Modeling:** To capture complex, unsteady flow phenomena such as massive flow separation, the Dynamic Smagorinsky subgrid-scale model and an equilibrium wall model were employed.
20
+
21
+ ## How to Cite This Dataset
22
+ In order to cite the use of this dataset, please cite the corresponding preprint paper:
23
+
24
+ ```bibtex
25
+ @article{ashton2026hiliftaeroml,
26
+ title={{HiLiftAeroML - High-Fidelity Computational Fluid Dynamics Dataset for High-Lift Aircraft Aerodynamics}},
27
+ year={2026},
28
+ author={Ashton, Neil and Clark, Adam and Heidt, Liam and Ivey, Christopher and Bose, Sanjeeb and Agrawal, Rahul and Goc, Konrad and Ranade, Rishi and Adams, Corey and Sharpe, Peter and Nidhan, Sheel}
29
+ }
30
+ ```
31
+
32
+ ## Dataset Structure and Files
33
+ Each folder (e.g., `geo_LHCi_AoA_j` where `i` is the geometry ID from 001 to 180 and `j` is the angle of attack) corresponds to a different geometry and angle of attack. Inside each run folder, you will find:
34
+
35
+ * `boundary_geo_LHCi_AoA_j.vtu.tgz`: Time-averaged flow quantities on the surface boundary (approx. 13 GB compressed, 21 GB unzipped).
36
+ * `volume_geo_LHCi_AoA_j.vtu.tgz`: Time-averaged flow quantities within the domain volume (approx. 23 GB compressed, 86 GB unzipped).
37
+ * `geo_LHCi_AoA_j.stl`: Surface mesh (tris) of the geometry (approx. 197 MB).
38
+ * `geo_LHCi_AoA_j.stp`: Surface geometry definition (approx. 48 MB).
39
+ * `force_mom_geo_LHCi_AoA_j.csv`: Time-averaged drag, lift, moment, and pressure/viscous coefficients.
40
+ * `geo_values_geo_LHCi_AoA_j.csv`: Reference geometry values used to define the geometry via the DoE method.
41
+ * `ref_values_geo_LHCi_AoA_j.csv`: Reference values such as area, Q, and AoA.
42
+ * `img_wss_LHCi_AoA_j.png`: Visual rendering of the wall shear stress/skin-friction on the aircraft surface.
43
+ * `plot_CD_geo_LHCi_AoA_j.png`: Convergence plot of the Drag Coefficient over time.
44
+ * `plot_CL_geo_LHCi_AoA_j.png`: Convergence plot of the Lift Coefficient over time.
45
+ * `plot_CM_geo_LHCi_AoA_j.png`: Convergence plot of the Pitching Moment Coefficient over time.
46
+
47
+ In addition to the files per run folder, there are also general summary files in the root directory:
48
+ * `geo_parameters_all.csv`: Reference geometry values used to define the geometry via the DoE method for all runs.
49
+ * `force_mom_all.csv`: Time-averaged drag, lift, moment, and pressure/viscous coefficients for all runs.
50
+
51
+ ## How to Download
52
+ The dataset is openly accessible on Hugging Face without any additional costs.
53
+
54
+ **Example 1: Download all files (≈ 63 TB compressed, 190 TB unzipped)**
55
+ Please note you will need to have `git lfs` installed first. Then, run the following command:
56
+
57
+ ```bash
58
+ git clone git@hf.co:datasets/nvidia/hiliftaeroml
59
+ ```
60
+
61
+ **Example 2: Download select files via Bash Script**
62
+ Create the following bash script to systematically download specific components (e.g., volume, boundary, force and moments) without pulling the entire repository at once:
63
+
64
+ ```bash
65
+ #!/bin/bash
66
+ # Set the Hugging Face base URL
67
+ HF_BASE="[https://huggingface.co/datasets/nvidia/HiLiftAeroML/resolve/main](https://huggingface.co/datasets/nvidia/HiLiftAeroML/resolve/main)"
68
+
69
+ # Set the local directory to download the files
70
+ LOCAL_DIR="./hiliftaeroml_data"
71
+
72
+ # Create the local directory if it doesn't exist
73
+ mkdir -p "$LOCAL_DIR"
74
+
75
+ # Loop through the Geometry IDs from 1 to 180
76
+ for i in {1..180}; do
77
+ # Format the Geometry ID with 3-digit zero-padding (e.g., 1 -> 001)
78
+ XX=$(printf "%03d" $i)
79
+
80
+ # Loop through AoA from 4 to 22 in steps of 2
81
+ for YY in $(seq 4 2 22); do
82
+ # Construct the unique identifier string
83
+ ID="geo_LHC${XX}_AoA_${YY}"
84
+
85
+ # Define the local folder for this specific run
86
+ RUN_LOCAL_DIR="$LOCAL_DIR/$ID"
87
+ echo "Processing: $ID"
88
+ mkdir -p "$RUN_LOCAL_DIR"
89
+
90
+ # List of files to download for this specific run
91
+ FILES=(
92
+ "boundary_${ID}.vtu.tgz"
93
+ "${ID}.stl"
94
+ "${ID}.stp"
95
+ "force_mom_${ID}.csv"
96
+ "geo_values_${ID}.csv"
97
+ "ref_values_${ID}.csv"
98
+ "volume_${ID}.vtu.tgz"
99
+ )
100
+
101
+ # Loop through the files and download them
102
+ for FILE in "${FILES[@]}"; do
103
+ # Construct the full URL
104
+ FILE_URL="${HF_BASE}/${ID}/${FILE}"
105
+
106
+ # Download using wget (-nc skips existing files)
107
+ wget -q --show-progress -nc "$FILE_URL" -O "$RUN_LOCAL_DIR/$FILE"
108
+ done
109
+ done
110
+ done
111
+ ```
112
+
113
+ ## Credits
114
+ The dataset was created through a collaboration between **NVIDIA**, **Cadence Design Systems**, and **The Boeing Company**.
115
+
116
+ Computing resources were generously provided by:
117
+ * Cadence
118
+ * NVIDIA
119
+ * Texas Advanced Computing Center (TACC) at The University of Texas at Austin
120
+ * Swiss National Supercomputing Centre (CSCS)
121
+ * Oak Ridge Leadership Computing Facility (ORNL)
122
+
123
+ ## License
124
+ This dataset is provided under the permissive open-source **CC-BY-4.0** license. Users are free to share and adapt the material for any purpose, even commercially, provided appropriate credit is given to the original authors.