Contents
- 1 What is the formula for perfectly elastic collision?
- 2 What is elastic collision give an example?
- 3 What is the difference between elastic and inelastic collisions?
- 4 Why do objects stick together in an elastic collision?
- 5 Why did I write elastic collision simulation in Python?
- 6 How to detect a wall collision in Python?
What is the formula for perfectly elastic collision?
An elastic collision is a collision where both the Kinetic Energy, KE, and momentum, p are conserved. In other words, it means that KE0 = KEf and po = pf. When we recall that KE = 1/2 mv2, we will write 1/2 m1(v1i)2 + 1/2 m2(vi)2 = 1/2 m1(v1f)2 + 1/2 m2 (v2f)2.
What are the necessary conditions for elastic collision?
1. Momentum should be conserved. 2. Kinetic energy should be conserved.
What is elastic collision give an example?
When a ball at a billiard table hits another ball, it is an example of elastic collision. When you throw a ball on the ground and it bounces back to your hand, there is no net change in the kinetic energy and hence, it is an elastic collision.
Do objects stick together in an elastic collision?
When objects collide, they can either stick together or bounce off one another, remaining separate. In an elastic collision, the objects separate after impact and don’t lose any of their kinetic energy. Kinetic energy is the energy of motion and is covered in detail elsewhere.
What is the difference between elastic and inelastic collisions?
An elastic collision can be defined as a state where there is no net loss in kinetic energy in the system as the result of the collision. An inelastic collision can be defined as a type of collision where this is a loss of kinetic energy.
How do you know if it is elastic or inelastic collision?
If the kinetic energy is the same, then the collision is elastic. If the kinetic energy changes, then the collision is inelastic regardless of whether the objects stick together or not. In either case, for collisions with no external forces, momentum is conserved.
Why do objects stick together in an elastic collision?
The larger initial momentum has a larger effect on the final direction of motion. Two lumps of clay of equal mass are traveling at right angles with equal speeds as shown, when they collide and stick together.
What does it mean if a collision is perfectly elastic?
An elastic collision is a collision in which there is no net loss in kinetic energy in the system as a result of the collision. They collide, bouncing off each other with no loss in speed. This collision is perfectly elastic because no energy has been lost.
Why did I write elastic collision simulation in Python?
So this is a short write-up of an elastic collision simulation I wrote in Python. The reasons for this were 1) a bit of fun, and 2) I’m interested in playing in around with neural-network-based reinforcement learning in an object oriented framework, similar to this work being done at MIT.
What do you need to know about elastic collisions?
To handle it, you either need use an a priori technique (scanning ahead of time so that your particle never clips the wall) or an a posteriori technique (detecting clipping after it has occurred, and then running a collision routine).
How to detect a wall collision in Python?
When we detect a wall collision using an a posteriori technique, we need to do two things: 1) move the edge of the particle to the edge of the wall, and, 2) reverse the velocity component perpendicular to the reflection axis (i.e. when bouncing off of a vertical wall, we want to flip the velocity vector in the x-direction).