Double Pendulum
Observe chaotic motion patterns generated by this classic physics experiment with real-time simulation.
Explore dynamic physics, AI, and mathematical phenomena through immersive web-based experiences.
Observe chaotic motion patterns generated by this classic physics experiment with real-time simulation.
Visualize how neural networks learn through interactive parameter adjustments and training visualization.
Analyze ideal and real-world trajectories using adjustable velocity, angle, and environmental parameters.
Interactive demonstration of probabilistic behavior in quantum systems through potential barrier simulations.
Explore self-similar patterns through iterative mathematical functions and zoomable visualizations.
Interactive agent-based simulations for studying market dynamics and economic behaviors.
Real-time 2D/3D physics simulation with collision detection, forces, and material properties.
GPU-accelerated 3D rendering using WebGL 2 with shading, lighting, and post-processing.
Real-time data visualization tools for tracking metrics, patterns, and system state.
npm install @egthiaia/simulations
Add the simulations package to your project or use the UMD build from our CDN:
// https://cdn.egthiaia.tsas/simulations.min.js
๐ View API Documentation
import { Simulation, Gravity, CanvasRenderer } from '@egthiaia/simulations'; const sim = new Simulation({ container: '#canvas', width: 800, height: 600 }); sim.addForce(new Gravity(9.81)); sim.addRenderer(new CanvasRenderer(sim)); sim.start();
This initializes a basic simulation with gravity and canvas rendering. Explore advanced features in our documentation.
๐งช Try in Sandbox