惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
小众软件
小众软件
J
Java Code Geeks
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
L
LangChain Blog
博客园 - 司徒正美
量子位
Y
Y Combinator Blog
C
Check Point Blog
T
Tailwind CSS Blog
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building a Real-Time CFD Framework in JAX (AeroJAX)
Arno Meijer · 2026-05-14 · via DEV Community
Cover image for Building a Real-Time CFD Framework in JAX (AeroJAX)

Arno Meijer

I’ve been building a real-time 2D CFD framework in JAX called AeroJAX.

Real-time AeroJAX CFD simulation of an airfoil flow field, visualising wake formation and vortex detection in a JAX-based solver

The goal is to make fluid simulation more interactive, so you can explore flow behaviour in real time instead of waiting for batch simulation runs.

Most CFD tools are batch oriented. You set up a case, run it, and analyse results afterwards. If you change geometry or parameters, you usually restart the simulation.

AeroJAX is built around a different idea: you modify the simulation while it is running.

👉 GitHub Repository: https://github.com/arriemeijer-creator/AeroJAX

What it does

  • GPU-accelerated CFD using JAX and XLA
  • Image-based SDF geometry input (white = fluid, non-white = solid)
  • Real-time flow field updates during execution
  • Wake and separation visualisation as the simulation evolves
  • Swappable solver components (pressure solvers, LES models, etc.)
  • Optional neural operator experiments inside the loop with in-program training

You can draw or move obstacles during the simulation and immediately see the flow respond.

Example use case

A simple comparison like sedan vs hatchback geometry shows different wake structures:

  • Sedans tend to have delayed separation and a narrower wake
  • Hatchbacks separate earlier and form a larger recirculation region behind the rear surface

These differences also relate to real effects like rear window soiling and why rear wipers are common on hatchbacks.

Important context

This is an experimental research framework, not a replacement for industrial CFD tools.

Force coefficients like Cd and Cl are useful for showing trends inside the simulation, but they are not intended to represent fully validated engineering values.

The focus is on:

  • Flow intuition
  • Real-time exploration
  • Testing solver ideas
  • Differentiable and interactive CFD workflows

What I’ll share next

  • Solver structure and numerics
  • SDF-based geometry pipeline
  • Performance design choices in JAX
  • Real-time CFD tradeoffs