Gravity Sim

The Sim


gravity sim thumbnail

The Gravity Sim is a canvas element that emulates gravity of celestial bodies using real math.

Looking for a better understanding of vectors, I decided to work on a project that would apply vectors and be a lot of fun to work on, and that lead me to making a model of the solar system using HTML's canvas element and Javascript.

Details

Hit start up above to see it for yourself, not really much else to it. Looping through a list of celestial bodies and applying the formula for gravity (below) between each body, I can calculate the Force between two bodies.

$$F_{g} = G \frac{m_{1} m_{2}}{r^{2}}$$

And then once I have the force, I can calculate the acceleration by using the equation for force from mass and acceleration (below) and add that to the vector.

$$F = ma$$ $$a = \frac{F}{m}$$

After that, it's all about rendering it, which I did using HTML's canvas element.