Aerospace · Energy · AI for Fluid Physics
Aerial Innovation Mobility Lab
We combine massively parallel computing, LES/DNS turbulence simulation, actuator-line and immersed-boundary methods, and physics-informed AI to predict complex flow physics with speed and fidelity.
Research Scope
A research map for computational fluid dynamics
AIM Lab studies safe urban air mobility, renewable energy systems, supersonic and hypersonic flow, space vehicle aerodynamics and aerothermodynamics, rotorcraft noise, fluid-structure interaction, turbulence modeling, and AI-assisted flow prediction.
In-house Code
CFD solvers built directly from numerical kernels
AIM Lab develops proprietary CFD solvers in C/C++ and CUDA, giving the group direct control over discretization, memory layout, parallel kernels, MPI scaling, and validation workflows for demanding flow simulations.
Explore Code__global__ void updateFlux(Field q, Grid grid, Metrics metric) {
int i = blockIdx.x * blockDim.x + threadIdx.x;
int j = blockIdx.y * blockDim.y + threadIdx.y;
if (!grid.interior(i, j)) return;
State qc = q(i, j);
Flux fx = reconstructHighOrder(q, metric, i, j, Direction::x);
Flux fy = reconstructHighOrder(q, metric, i, j, Direction::y);
q.residual(i, j) = divergence(fx, fy, metric(i, j));
q.dt(i, j) = localTimeStep(qc, metric(i, j), grid.cfl);
}
Explore
Navigate the lab
Research
Core research areas including UAM, wind energy, high-speed flow, space vehicles, rotorcraft, and AI physics.
02Methods
RANS, LES, DNS, ALM, IBM, and machine-learning methods used across the lab.
03In-house Code
High-performance CFD solver development with C/C++/CUDA and parallel computing.
04Projects
Selected research topics from urban flow prediction to wind-turbine wake control.
05Members
Principal investigator, research staff, student researchers, and alumni.
06Publications
Journal papers covering turbulence, UAM, wind energy, rotorcraft, and high-speed flow.
07Teaching
Course history across aerodynamics, turbulent flows, numerical analysis, CFD, and UAM topics.
08Awards
Recognition from visualization challenges and technical conference presentations.
09Conferences
Conference presentations and technical talks from 2021 onward.
10Visualization
Embedded simulation videos for STBLI, rotorcraft, UAM urban flight, and turbulent boundary-layer flows.