1

Vortex Filament Drift

Classical inviscid point vortices rotating under mutual induced velocities, tracing complex filamentary chaotic orbits.

Playground
60 FPS Canvas 2D
Click + Drag to interact with field

Live Parameters

Tracer Count 1600
Number of fluid tracers
Vortex Core Radius (rc) 20
Vortex core smoothing width
ƒ

Mathematical Formulation

45 chars medium
Analytical Equation
\mathbf{u}(\mathbf{x}) = \sum_{i=1}^{N} \frac{\Gamma_i}{2\pi} \frac{\mathbf{k} \times (\mathbf{x} - \mathbf{x}_i)}{\|\mathbf{x} - \mathbf{x}_i\|^2 + r_c^2}
Compact Formula
v_θ(r) = (Γ / 2πr) * (1 - exp(-r² / r_core²))
Renderer Logic
const dx = px[i] - vortexX[v];
const dy = py[i] - vortexY[v];
const dSq = dx * dx + dy * dy;
const factor = (vortexGamma[v] / (2 * Math.PI * (dSq + coreRSq))) * 12;
vx += -dy * factor;
vy += dx * factor;
Open in Playground Zero Dependencies • Standalone

Mathematical Tags

#vortex #fluid #biot-savart #physics #turbulence #circulation
Author: Math Art Core Target: 60 FPS

Export & Embed: Vortex Filament Drift

4K PNG Snapshot

High-resolution single frame render

WebM Video (5s Loop)

60 FPS browser-captured stream

HTML Iframe Embed

<iframe src="https://art.fazleyrabbi.xyz/embed/vortex-filament" width="500" height="500" frameborder="0" loading="lazy"></iframe>
ESC
↑↓ Navigate Select
25 Mathematical Artworks