You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We sometimes need to know the pitch diameter of a sprocket or pulley when we're converting from rotational motion to linear motion (like in the offseason elevator).
It would be nice to have functions that return a Distance so you could do something like sprocket25Diameter(16) to get the pitch diameter of a #25 16 tooth sprocket.
Pitch diameter equations:
3mm pitch pulley (in mm): 3 * teeth / pi
5mm pitch pulley (in mm): 5 * teeth / pi
RT25 pulley (in inches): 0.25 * teeth / pi
#25 chain sprocket (in inches): 0.25 / sin(pi / teeth)
#35 chain sprocket (in inches): 0.375 / sin(pi / teeth)
20DP gear (in inches): teeth / 20
32DP gear (in inches): teeth / 32
The text was updated successfully, but these errors were encountered:
@Samson560915 I think this will be a good introduction because you can learn how we write code in our projects without having to do anything insanely complex.
We sometimes need to know the pitch diameter of a sprocket or pulley when we're converting from rotational motion to linear motion (like in the offseason elevator).
It would be nice to have functions that return a Distance so you could do something like
sprocket25Diameter(16)
to get the pitch diameter of a #25 16 tooth sprocket.Pitch diameter equations:
The text was updated successfully, but these errors were encountered: