Datasets:

Tasks:
Other
ArXiv:
License:
HaixuWu commited on
Commit
1ef944d
·
verified ·
1 Parent(s): 2b2963d

docs: update README

Browse files
Files changed (1) hide show
  1. README.md +62 -23
README.md CHANGED
@@ -1,23 +1,62 @@
1
- # AIAA Applied Aerodynamics Surrogate Modeling - Case 4
2
-
3
- This folder contains the data available for the AIAA Applied Surrogate Modeling
4
- benchmark case 4 which consists out of in total 149 surface solutions solving
5
- the RANS equations. The corresponding AIAA SciTech2025 Paper provides more
6
- information about the dataset.
7
-
8
- The data is split in training and test samples in separat folders. All are
9
- available in two hdf5 files, one for training samples and one for test samples.
10
- These files provide parameter information (Mach, AoA, innerAileron,
11
- outerAileron, htp angle and elevator) and surface values (cp, cf, coords,
12
- normals, surface areas). An additional file is available providing connectivity
13
- information.
14
-
15
- Note that, if validation data is needed for your surrogate modeling technique
16
- these should be taken from the training samples.
17
-
18
- In addition to the data a simple python script *h5Import_NASA-CRM.py* is
19
- available. This file provides a function which reads the data from h5 file. It
20
- returns a dictionary with the sample numbers as keys. Under each key another
21
- dictionary is available with global informations such as parameters values and
22
- global coefficients and surface solutions as numpy arrays.
23
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+
4
+ ---
5
+
6
+ # <img src=".\assets\logo.png" alt="Logo" width="55" style="vertical-align: middle;">GeoPT
7
+
8
+ This repository contains the physics simulation data for the paper GeoPT: Scaling Physics Simulation via Lifted Geometric Pre-Training.
9
+
10
+ GeoPT is a unified model pre-trained on large-scale geometric data for general physics simulation, unlocking a scalable path for neural simulation.
11
+
12
+ <p align="center">
13
+ <img src=".\assets\GeoPT.png" height = "120" alt="" align=center />
14
+ <br><br>
15
+ </p>
16
+
17
+ ## Overview
18
+
19
+ GeoPT is evaluated on the following five simulation tasks.
20
+
21
+ | Dataset | Mesh Size | Variable | Training | Test | Total Size | Source |
22
+ | --------- | --------- | ------------------------------ | -------- | ---- | ---------- | ------------------------------------------------------------ |
23
+ | DrivAerML | ~160M | Geometry | 100 | 20 | ~6TB | [Link][https://huggingface.co/datasets/neashton/drivaerml] |
24
+ | NASA-CRM | ~450K | Geometry, Speed, AoA | 105 | 44 | ~3GB | [Link](https://drive.google.com/drive/folders/1KhoZiEHlZhGI8omMwHrp2mZRKGiSAydO) |
25
+ | AirCraft | ~330K | Geometry, Speed, AoA, Sideslip | 100 | 50 | ~7GB | [Transolver++](https://arxiv.org/abs/2502.02414) |
26
+ | DTCHull | ~240K | Geometry, Yaw Angle | 100 | 20 | ~2GB | GeoPT |
27
+ | Car-Crash | ~1M | Impact Angle | 100 | 30 | ~8GB | GeoPT |
28
+
29
+ ## Load Data
30
+
31
+ ```python
32
+ from datasets import load_dataset
33
+ load_dataset("GeoPT/Downstream_Physics_Simulation") # for AirCraft, DTCHull, Car-Crash, Radiosity
34
+ load_dataset("neashton/drivaerml") # for DrivAerML
35
+ ```
36
+
37
+ NASA-CRM can be obtained from [Google Drive](https://drive.google.com/drive/folders/1KhoZiEHlZhGI8omMwHrp2mZRKGiSAydO).
38
+
39
+ ## Examples
40
+
41
+ <p align="center">
42
+ <img src=".\assets\examples.png" height = "140" alt="" align=center />
43
+ <br><br>
44
+ </p>
45
+
46
+ ## Citation
47
+
48
+ If you find this repo useful, please cite our paper.
49
+
50
+ ```
51
+ @article{wu2026GeoPT,
52
+ title={GeoPT: Scaling Physics Simulation via Lifted Geometric Pre-Training},
53
+ author={Haixu Wu, Minghao Guo, Zongyi Li, Zhiyang Dou, Mingsheng Long, Kaiming He, Wojciech Matusik},
54
+ booktitle={arXiv preprint arXiv:},
55
+ year={2026}
56
+ }
57
+ ```
58
+
59
+ ## Contact
60
+
61
+ If you have any questions or want to use the code, please contact Haixu Wu (wuhaixu98@gmail.com) and Minghao Guo (guomh2014@gmail.com).
62
+