Physics & Simulation


Formulae

Trajectories (Parabolic Motion)


Y = (vy*(x/vx)) - (.5*g*(x/vx)*(x/vx))

xv = initial velocity in the X direction
yv = initial velocity in the Y direction
g = gravity


Vehicle Simulation


Skidding


if (v*v > f*g*r) wheel skids (goes straight)

v = velocity
f = friction
g = gravity
r = bend radius


BACK