SIM-AI.XYZ

Build. Simulate. Share.

Open Sandbox

Simulation Templates

Particle System

Configurable particle physics with gravity, bounce, and collision

Load →

Fluid Dynamics

Navier-Stokes based fluid simulation with real-time rendering

Load →

Swarm Intelligence

Boid flocking algorithms with configurable separation and cohesion

Load →

Live Editor

sim.config.js
1234567891011
import { Sim } from "sim-ai";

const sim = new Sim({
  type: "particles",
  count: 1000,
  gravity: [0, -9.8],
  bounce: 0.7,
  color: "#00D4AA"
});

sim.run();
Output Canvas