node_coordinates_x list | node_coordinates_y list |
|---|---|
[
0.29716095,
0.29152372,
0.2859677,
0.28049176,
0.27509477,
0.26977563,
0.26453326,
0.25936661,
0.25427461,
0.24925623,
0.24431045,
0.23943627,
0.23463269,
0.22989872,
0.22523341,
0.22063581,
0.21610498,
0.21164,
0.20723996,
0.20290397,
0.19863113,
0.1944206,
0.19027149,
... | [
-0.060003951,
-0.059990521,
-0.059962714,
-0.059920744,
-0.059864875,
-0.059795406,
-0.059712612,
-0.059616738,
-0.059508073,
-0.059386863,
-0.059253294,
-0.059107644,
-0.058950155,
-0.058781092,
-0.058600699,
-0.058409148,
-0.058206703,
-0.057993589,
-0.057769938,
-0.057536017... |
Airfoil Transonic Flow - Boundary Dataset
Dataset Description
This dataset contains transonic flow simulations around an airfoil, focusing on boundary (airfoil surface) quantities with varying angle of attack.
Dataset Summary
The Airfoil Transonic Boundary dataset provides numerical simulations of compressible transonic flow around an airfoil profile. The dataset focuses on aerodynamic quantities at the airfoil surface (boundary), including pressure and wall shear stress distributions, making it valuable for aerodynamic analysis, design optimization, and machine learning applications in aerospace engineering.
Dataset Structure
Data Instances
The dataset consists of three configurations:
- geometry: Airfoil surface node coordinates
- snapshots: Aerodynamic field solutions at the boundary
- parameters: Flow condition parameters (angle of attack)
Data Fields
Geometry Configuration
node_coordinates_x: Sequence of x-coordinates of airfoil surface nodes (float64)node_coordinates_y: Sequence of y-coordinates of airfoil surface nodes (float64)
Snapshots Configuration
pressure: Pressure distribution along the airfoil surface (float64)wall_shear_stress: Wall shear stress distribution along the airfoil surface (float64)
Parameters Configuration
angle_of_attack: angle of attack for each simulation (float64)
Data Splits
default: Contains all simulations with varying angle of attack
Dataset Creation
Source Data
The dataset was generated using computational fluid dynamics simulations of the Euler equations for compressible transonic flow around an airfoil. The transonic regime is characterized by mixed subsonic and supersonic flow regions, often exhibiting shock waves.
Preprocessing
Only boundary quantities (at the airfoil surface) are included in this dataset. Solutions are stored as 1D arrays corresponding to the nodes on the airfoil surface.
Usage
from datasets import load_dataset
import numpy as np
import matplotlib.pyplot as plt
# Load geometry
ds_geom = load_dataset("SISSAmathLab/airfoil-transonic-boundary", name="geometry")
# Load snapshots
ds_data = load_dataset("SISSAmathLab/airfoil-transonic-boundary", name="snapshots")
# Load parameters
ds_params = load_dataset("SISSAmathLab/airfoil-transonic-boundary", name="parameters")
# Visualize pressure distribution on airfoil surface
pts_x = np.asarray(ds_geom['default']['node_coordinates_x']).flatten()
pts_y = np.asarray(ds_geom['default']['node_coordinates_y']).flatten()
pressure = ds_data['default']['pressure'][0]
angle_of_attack = ds_params['default']['angle_of_attack'][0]
plt.figure(figsize=(12, 4))
plt.scatter(pts_x, pts_y, c=pressure, cmap='RdBu_r', s=20)
plt.colorbar(label='Pressure')
plt.title(f'Airfoil Surface Pressure (angle of attack={angle_of_attack:.2f})')
plt.xlabel('x')
plt.ylabel('y')
plt.axis('equal')
plt.grid(True, alpha=0.3)
plt.show()
Related Datasets
See also: Airfoil Transonic Internal dataset for flow field quantities in the internal domain around the airfoil.
Contact
For questions or issues, please contact SISSA mathLab.
- Downloads last month
- 13