The following is a simulation for elastic collision which means that
1. the momentum is conserved:
where
are mass for each object,
are velocity vectors before collision,
are velocity vectors after collision.
2. the total energy is conserved: 
For collision in 2D, there are four unknow, however, there are only three equations. Because the contact point is missing in the above equations.
To solve the above problem, we can break 2D collision problem into two 1D collision problem once we know the contact point (when collision happened).
We use x-y coordinate to describe the position of those two balls before and after the collision.
At the time when two balls just in contact with each other, we can choose a new coordinate system:
1. direction from center of mass of
to center of mass of
: The interaction forces bwteen those two balls during collision is limited to this direction. It become a [url=http://www.phy.ntnu.edu.tw/ntnujava/index.php?topic=5.0]1D collision problem[/url] in this direction.
2. direction which is perpendicular to the above direction: Assume there is no friction between those two balls, no rotation effect to be considered, then the velocity component for those two balls in this direction will not be changed when collision happened (Because the interaction force dose not have component in this direction).
Press the Alt key and the left mouse button to drag the applet off the browser and onto the desktop.
This simulation shows the physics of two ball collide in 2D (without any rotation motion).
What can be changed:
- The sliders on either side change the vertical position of each ball
- mass(m) and initial horizontal velocity(vx) can be adjusted with slider bar
- Use mouse click and drag to change the position (click near the center of the ball) or the velocity vector (click near the arrow)
- check out the "paused when collide" checkbox to show more detail process during collision,
Click mouse in the area to play it again
Physics processes:
- when two ball meets, the program shows two components of the velocity for each ball (along the line connect two ball and perpendicular to it)
- Interaction (force) between balls is along the line connect two balls
- Velocitys perpendicular to connection line are not changed (No force/interaction in that direction)
- The rest of the problem is similar to 1D collision problem for ball with velocity along the line
- Because this is a 2D simulation, so the radius is proportional to the square root of the mass to keep the same density (for those balls).
You need to understand conservation of momentum and conservation of energy.
The velocity of two objecs after collision (V[sub]1[/sub]',V[sub]2[/sub]')can be calculated from velocity before collisions (V[sub]1[/sub],V[sub]2[/sub]) and mass of two objects (m[sub]1[/sub],m[sub]2[/sub]).
V[sub]1[/sub]'= (m[sub]1[/sub]-m[sub]2[/sub])*V[sub]1[/sub]/(m[sub]1[/sub]+m[sub]2[/sub]) + 2*m[sub]2[/sub]*V[sub]2[/sub]/(m[sub]1[/sub]+m[sub]2[/sub])= (m[sub]1[/sub]V[sub]1[/sub]+m[sub]2[/sub]V[sub]2[/sub])/(m[sub]1[/sub]+m[sub]2[/sub])+(V[sub]2[/sub]-V[sub]1[/sub])*m[sub]2[/sub]/(m[sub]1[/sub]+m[sub]2[/sub])=V[sub]cm[/sub]+(V[sub]2[/sub]-V[sub]1[/sub])*m[sub]2[/sub]/(m[sub]1[/sub]+m[sub]2[/sub]);
V[sub]2[/sub]'=2*m[sub]1[/sub]*V[sub]1[/sub]/(m[sub]1[/sub]+m[sub]2[/sub])+(m[sub]2[/sub]-m[sub]1[/sub])*V[sub]2[/sub]/(m[sub]1[/sub]+m[sub]2[/sub])=(m[sub]1[/sub]V[sub]1[/sub]+m[sub]2[/sub]V[sub]2[/sub])/(m[sub]1[/sub]+m[sub]2[/sub])+(V[sub]1[/sub]-V[sub]2[/sub])*m[sub]1[/sub]/(m[sub]1[/sub]+m[sub]2[/sub])=V[sub]cm[/sub]+(V[sub]1[/sub]-V[sub]2[/sub])*m[sub]1[/sub]/(m[sub]1[/sub]+m[sub]2[/sub]);
Where V[sub]cm[/sub]=(m[sub]1[/sub]V[sub]1[/sub]+m[sub]2[/sub]V[sub]2[/sub])/(m[sub]1[/sub]+m[sub]2[/sub]);
Before the collision, the velocity of m[sub]1[/sub] relative to V[sub]cm[/sub] is
V[sub]1[/sub]-V[sub]cm[/sub]=V[sub]1[/sub]-(m[sub]1[/sub]V[sub]1[/sub]+m[sub]2[/sub]V[sub]2[/sub])/(m[sub]1[/sub]+m[sub]2[/sub])=m[sub]2[/sub](V[sub]1[/sub]-V[sub]2[/sub])/(m[sub]1[/sub]+m[sub]2[/sub])
compare it with the second term in V[sub]1[/sub]'
If m[sub]1[/sub]=m[sub]2[/sub] then V[sub]1[/sub]'=V[sub]2[/sub], V[sub]2[/sub]'-V[sub]1[/sub] ;
it means that both particles just exchange velocity.
If m[sub]1[/sub]>> m[sub]2[/sub] then V[sub]1[/sub]' ? V[sub]1[/sub] ; V[sub]2[/sub]'? 2V[sub]1[/sub]+V[sub]2[/sub];
i.e. [b]If a heavy car hit you with velocity V[sub]1[/sub]=50km/hr , you will fly out with velocity 2V[sub]1[/sub]=100km/hr[/b].
If m[sub]1[/sub]<< m[sub]2[/sub] then V[sub]1[/sub]' ? -V[sub]1[/sub]+2V[sub]2[/sub] ; V[sub]2[/sub]'? V[sub]2[/sub];
i.e. If a small ball hit a wall (V[sub]2[/sub]=0),then the ball will be bounced back (same magnitude,oppositive direction).
For collision 2D, the trick is to transform it into collision 1D problem:
In the direction of red arows, and another direction normal to red arrows (i.e. direction of green arrows).
If friction is not considered (which will cause both balls to rotate due to friction force),
Then green arrow velocity is not changed after the collision because there is no force in that direction.
And collision in red arrow direction is 1D collision problem, so you can use the above equation.
However, you need to calculate the component of velocity in red arrow direction. (This you need to understand the meaning of inner product -- mathematic operation).
[img]http://www.phy.ntnu.edu.tw/ntnujava/snapshotejs/4_smf_collision2D_20090118001718.gif[/img]