Closed form of the position of a bouncing ball

AI Thread Summary
The discussion focuses on deriving the closed form for the position of a bouncing ball, starting with the height equation before the first bounce. After the first bounce, the position can be calculated by resetting the time origin and using the ball's velocity at impact, incorporating the coefficient of restitution. The fraction of kinetic energy lost during each bounce is established as 1 minus the square of the coefficient of restitution (1 - e²). The conversation also touches on determining the duration of the nth bounce. Overall, the participants are working towards a comprehensive mathematical model for the motion of a bouncing ball.
Bibibis
Messages
2
Reaction score
0
Homework Statement
This is not a physics homework per se, but I'm implementing an explosion shader in OpenGL for class and I want the triangles to bounce when hitting the y=0 plane. In my current setup it is not possible to save the triangle's velocity or position and so each frame I compute the position of each triangle with a ballistic equation, and for now I simply set y=0 for triangles that would go below the plane y=0.

Is there a closed form for the position (or rather height as the x axis is irrelevant here) of a bouncing ball, and if not why can't there be one?
Relevant Equations
Ballistic equation: ##y = g * t * t + v_0 * t + y_0##
Elasticity of ball: ##e##
Velocity after bounce: ##v_{after} = e * -v_{before}##
I know that the height before the first bounce will be ##y = g * t * t + v_0 * t + y_0##.
After the first bounce, I can find y by pretending the ball was thrown from the ground with velocity ##e * -v_f## with ##v_f## being the velocity of the ball when hitting the ground, but I have to reset the origin of time by subtracting the time it took until the first bounce (##t_1##) so ##y = g * (t - t_1) * (t - t_1) + (e * -v_f) * (t - t_1)##. I can repeat this for as many bounces as needed so this is easy to do in a step-by-step simulation, but I can't seem to figure out how to find a rigorous closed form from here.
 
Physics news on Phys.org
Bibibis said:
how to find a rigorous closed form
Can you figure out the fraction of KE lost each bounce?
 
haruspex said:
Can you figure out the fraction of KE lost each bounce?
Right before bouncing, KE is ##\frac{1}{2}mv_{before}^2## and right after the bounce it is ##\frac{1}{2}e^2mv_{before}^2##, thus the fraction of KE lost each bounce should be ##1-e^2##, correct?
 
Bibibis said:
Right before bouncing, KE is ##\frac{1}{2}mv_{before}^2## and right after the bounce it is ##\frac{1}{2}e^2mv_{before}^2##, thus the fraction of KE lost each bounce should be ##1-e^2##, correct?
Right.
Next, can you figure out the duration of the nth bounce?
 
Thread 'Voltmeter readings for this circuit with switches'
TL;DR Summary: I would like to know the voltmeter readings on the two resistors separately in the picture in the following cases , When one of the keys is closed When both of them are opened (Knowing that the battery has negligible internal resistance) My thoughts for the first case , one of them must be 12 volt while the other is 0 The second case we'll I think both voltmeter readings should be 12 volt since they are both parallel to the battery and they involve the key within what the...
Thread 'Struggling to make relation between elastic force and height'
Hello guys this is what I tried so far. I used the UTS to calculate the force it needs when the rope tears. My idea was to make a relationship/ function that would give me the force depending on height. Yeah i couldnt find a way to solve it. I also thought about how I could use hooks law (how it was given to me in my script) with the thought of instead of having two part of a rope id have one singular rope from the middle to the top where I could find the difference in height. But the...
Back
Top