How to Calculate Deceleration of a Spinning Roulette Wheel and Ball?

  • Thread starter Thread starter PhilippeIngels
  • Start date Start date
  • Tags Tags
    Deceleration
AI Thread Summary
To calculate the deceleration of a roulette wheel stopping over 370 degrees, the correct formula is a_{wheel} = -v_{wheel}^2 / (2 * d_{wheel}), where d is the stopping distance, Vi is the initial velocity, and Vf is the final velocity of 0. The ball's deceleration can be calculated using a_{ball} = (0.04 - v_{ball}^2) / (2 * d_{ball}), taking into account the wheel's deceleration. The challenge arises from the need to consider the relative motion of the ball and the decelerating wheel. Additionally, questions about the units of measurement and the meaning of "wheel stop distance" were raised, indicating a need for clarification on these terms.
PhilippeIngels
Messages
2
Reaction score
0
I have a roulette wheel and a ball spinning in opposite directions

First I need to know how to calculate the deceleration of the wheel if I want it to stop over a distance of 370 degrees. I have d, Vi, and Vf=0. I have this formula which seems to work but does not look right:

this.wheelDeceleration = (this.wheelInitSpeed/this.wheelStopDistance)*2;

Then I need to know how to calculate the ball's deceleration so its final velocity will be 0.2 when it reaches to winning slot. I know the distance to the winning slot, I know the velocity of the ball and the velocity of the wheel. I also know the wheel's constant deceleration (a).

The trick is the fact that the wheel is also decelerating and that's where I'm stuck.

Thanks

Philippe
__________________
 
Computer science news on Phys.org
PhilippeIngels said:
I have a roulette wheel and a ball spinning in opposite directions

First I need to know how to calculate the deceleration of the wheel if I want it to stop over a distance of 370 degrees. I have d, Vi, and Vf=0. I have this formula which seems to work but does not look right:

this.wheelDeceleration = (this.wheelInitSpeed/this.wheelStopDistance)*2;
This should be:
this.wheelDeceleration = (this.wheelInitSpeed*this.wheelInitSpeed)/(2*this.wheelStopDistance);
or
this.wheelAcceleration = -(this.wheelInitSpeed*this.wheelInitSpeed)/(2*this.wheelStopDistance);

a_{wheel} = \frac{-v_{wheel}^2}{2d_{wheel}}

PhilippeIngels said:
Then I need to know how to calculate the ball's deceleration so its final velocity will be 0.2 when it reaches to winning slot. I know the distance to the winning slot, I know the velocity of the ball and the velocity of the wheel. I also know the wheel's constant deceleration (a).

The trick is the fact that the wheel is also decelerating and that's where I'm stuck.
I assume that you calculate the motion of the ball relative to the wheel.
In that case the acceleration of the ball would be:

a_{ball} = \frac{0.04-v_{ball}^2}{2d_{ball}}

You can combine the acceleration of the ball with the acceleration of the wheel in case you want to know the acceleration of the ball relative to the table. Because the ball moves in opposite direction than the wheel the acceleration of the ball relative to the table would be:

a_{ball}-a_{wheel}
 
Thanks

Thank you very much for your help. I really appreciate it. :smile:
 
Hello, I'm an italian newbie and I'm sorry for my bad english.
First I need to know how to calculate the deceleration of the wheel if I want it to stop over a distance of 370 degrees. I have d, Vi, and Vf=0.
first of all I don't understand what is d, Vi and Vf
I suppose d is the distance (what distance?), Vi is the instant velocity and Vf is the final velocity.

I would like to know:

1) in what measure units are expressed these values?
2) what is the meaning of "wheel stop distance"?

------------------------------------------------------------------------------------

I am trying to study the roulette physical and i have other questions to place.
I know this data:
  1. the time that employs the ball to complete first round (this is T1) expressed in milliseconds
  2. the time that employs the ball to complete second round (this is T2) expressed in milliseconds
  3. the time that employs the ball to complete last round (this is Tf) expressed in milliseconds
  4. the time that employs the rotor of the wheel to complete a round (this is Tr) expressed in milliseconds
I would like to know:
  1. the ball's deceleration (dB)
  2. the rotor's deceleration (dR)
  3. the part of the rotor that finds when the ball completes the last round (Tf)

This could be an example:

T1 = 800 ms/round
T2 = 890 ms/round
Tf = 2160 ms/round
Tr = 6142 ms/round

Thanks of all in advance
 
Is nobody able to answer my questions?

Thanks
 
In my discussions elsewhere, I've noticed a lot of disagreement regarding AI. A question that comes up is, "Is AI hype?" Unfortunately, when this question is asked, the one asking, as far as I can tell, may mean one of three things which can lead to lots of confusion. I'll list them out now for clarity. 1. Can AI do everything a human can do and how close are we to that? 2. Are corporations and governments using the promise of AI to gain more power for themselves? 3. Are AI and transhumans...
Thread 'ChatGPT Examples, Good and Bad'
I've been experimenting with ChatGPT. Some results are good, some very very bad. I think examples can help expose the properties of this AI. Maybe you can post some of your favorite examples and tell us what they reveal about the properties of this AI. (I had problems with copy/paste of text and formatting, so I'm posting my examples as screen shots. That is a promising start. :smile: But then I provided values V=1, R1=1, R2=2, R3=3 and asked for the value of I. At first, it said...

Similar threads

Back
Top