Pendulum Simulator
This is a pendulum simulator which I made when I graduated university. It is in fact the thesis for my master's degree. Since it is a simple gravitational pendulum, no friction or air resistance is taken into account, which means it never loses energy and it will therefore never stop.
Have fun playing with it or if it seems too complicated, read how to use it first.
I used the standard gravity pendulum equation and the Runge-Kutta method for solving it continuously in small time steps, which allowed me to render it as animation. All the model code is written in Javascript and the animation is visualized in an HTML <canvas>. If you are interested in more geek stuff, take a look behind the scenes.
How to use it?
Before starting the simulation, we need to set the initial values of the differential equation, or in other words – the state of the pendulum. Imagine this like filming the pendulum's motion with a camera. The initial values represent the angle, the velocity and so on, right before hitting the "record" button.
The initial angle is denoted with the Greek letter φ (phi). The velocity used here is called angular velocity and it is used for measuring rotational speed. It is denoted with φ' or θ (phi prime or theta).
There are also a few more important things, described below.
Controls
"Initial values" is the section where you can control the starting parameters of the simulation. They directly correlate to the initial values of the differential equation. The units are indicated next to each input field and can be any real number (positive or negative). As you can see, they are almost self-explanatory:
"Angle" is the initial angle at which the pendulum will start swinging (or falling down, depending on how you set it). It is measured from the "Y" axis of the coordinate system (0 radians is at 6 o'clock). Increasing the angle will turn the rod counter-clockwise, and decreasing it will turn it clockwise.
Just type a number, then press ENTER or the RESTART button and it will automatically rotate, so you can adjust it visually.
"Velocity" determines how fast the pendulum is spinning (or swinging) right before the start. In other words, this is how hard you want "push" it and at what direction. A positive value "pushes" the pendulum counter-clockwise, and of course a negative one is for clockwise. As you have probably guessed, a greater absolute value means higher velocity.
"Pendulum Length" is the length of the rod in centimeters. It is automatically constrained within sane limits, to prevent algorithm errors making the simulation too unrealistic.
"Gravity" allows you to choose how strong the gravity is, hence simulating a pendulum on different planets.
"FPS Limit" controls time step for solving the equations. This is the same as setting the maximum animation frames per second. 60 FPS or more should result in real-time motion. Use it to benchmark your browser or experiment with algorithm accuracy.
Note that this is the maximum allowed animation rate, but depending on your browser and operating system, it may actually run slower or fluctuate a bit. Also, each browser has a Javascript loop limit that prevents excessive CPU usage. For this reason anything higher than 250 FPS (4 ms step time) is hardly achievable.
Finally, "PLAY" / "PAUSE" work like in any audio or video player and "RESTART" stops and rewinds the simulation to 0 seconds.
Statistics
Right below the pendulum is the statistics panel. First, you can see the differential equation that "powers" the pendulum. And below it you can turn on/off the displaying of the variable values as the pendulum swings.
Behind the Scenes
This paragraph is still to be written...