Calculating Velocity Vector After Polygon Collision - Madison

AI Thread Summary
Madison is developing a 2D game and needs help calculating the resulting velocity vector after a polygon collision. The collision detection is straightforward, but determining the new velocity vector post-collision is challenging. The discussion clarifies that during a totally inelastic collision, the perpendicular component of the object's velocity to the collision edge should be eliminated, allowing the object to move parallel to the edge. A suggested equation for the final velocity vector involves projecting the initial velocity vector onto the edge vector of the polygon. Madison confirms that the provided equation effectively solves the problem.
mbrown3391
Messages
6
Reaction score
0
I am currently programming a 2-dimensional game and am creating a class that will allow for collision detection with any polygon defined by a set of points. The actual collision detection was easy, however i am having trouble coming up with an equation to describe the resulting velocity vector of an object after the collision.

http://www.cheeseparade.com/diagram.png

Based on the diagram above, can anyone give me an equation that will return the blue vector as a function of the green vector, regardless of the angle of the green vector? All the red points are known information at any given time.

Thanks,
Madison
 
Last edited by a moderator:
Physics news on Phys.org
I'm not quite sure what I'm looking at here... what should the relationship be between the blue vector and green vector? Or in other words, what kind of physical situation are you trying to simulate? What happens to the object that collides with the polygon?
 
when the object collides, the component of its velocity that is perpendicular to the edge that it collides with should be eliminated so that the object continues on a path parallel to the edge. i don't need to worry about bouncing at this point.
 
OK, I see... you're talking about a totally inelastic collision. I'm assuming you have (or can calculate) the velocity vector \vec{v} as well as the vector pointing along the edge of the polygon in the direction of the blue arrow, which I'll call \vec{p}, and also that you either have or can write a function to take dot products. Then you can just project \vec{v} on to \vec{p} to get your final velocity:
\vec{v}\,' = \frac{\vec{v}\cdot\vec{p}}{\vec{p}\cdot\vec{p}}\ \vec{p}

Incidentally, a general formula for inelastic collisions can be found on Wikipedia, http://en.wikipedia.org/wiki/Coefficient_of_restitution.
 
Thank you! that equation worked perfectly.
 
I have recently been really interested in the derivation of Hamiltons Principle. On my research I found that with the term ##m \cdot \frac{d}{dt} (\frac{dr}{dt} \cdot \delta r) = 0## (1) one may derivate ##\delta \int (T - V) dt = 0## (2). The derivation itself I understood quiet good, but what I don't understand is where the equation (1) came from, because in my research it was just given and not derived from anywhere. Does anybody know where (1) comes from or why from it the...
Back
Top