MyPhysicsLab – Roller Coaster with Spring

Instructions: drag the square or ball, or try changing control values (gravity, damping, etc.)

graph type:

Click to select a different track:
hump loop circle infinity oval spiral

Physics of the Roller Coaster with Spring

This simulation is a variation of the Simple Roller Coaster, please see that page for more information on the physics and how the simulation is done. The only difference here is that the spring force is added to the differential equation.

Define the following variables:


Let the width and height of the spring be given by:

sx = qx - px
sy = qy - py

The length of the spring is then √(sx2 + sy2). The magnitude of the spring force is c (√(sx2 + sy2) - R) The direction of the spring force is towards Q, the fixed end of the spring. The component of the spring force that is parallel to the track is

F = cos(θ) c (√(sx2 + sy2) - R)    (eqn 1)

It is this parallel component of the spring force that will accelerate the ball along the track. Consider a couple of cases to convince yourself of this: If the spring is perpendicular to the track, then θ ≈ 90° and cos(θ) ≈ 0 so the spring doesn't accelerate the ball. Conversely, if θ ≈ 0 then the spring will accelerate the ball in the positive track direction. Or, if θ ≈ 180° then the spring accelerates the ball in the negative track direction.

We can find cos(θ) by using the formula for the angle between two vectors A,B

          A · B
cos(θ) = ———————
         |A| |B|

where the numerator is the dot product, and the denominator is the product of the magnitudes. Define our two vectors by

This leads to

               sx + k sy
cos(θ) = ————————————————————
         √(1 + k2) √(sx2 + sy2)

Put this expression into equation (1) and combine with the gravity and friction forces developed for the Simple Roller Coaster to get

      -g k                  c (√(sx2 + sy2) - R) (sx + k sy)
a = —————————  - (b/m) v  + ——————————————————————————————
    √(1 + k2)                  m √(1 + k2) √(sx2 + sy2)

where b= damping constant and v= velocity. Keep in mind that the slope k and spring stretch sx, sy are functions of the position p.

Besides this change to the force equation, the simulation is similar to the Simple Roller Coaster. Please see that page for more information on how the simulation is implemented.