How to find torque of rotational friction on an axle?

AI Thread Summary
To find the torque of rotational friction on an axle, it is essential to understand that the retarding torque can be modeled as proportional to the tightness of the axle and the angular velocity. The basic equation for friction torque involves the tangential friction force, which is derived from the normal force at the contact point multiplied by the radius of the pivot. In a dry bearing, this friction torque can be calculated simply, while lubricated bearings introduce complexities due to viscous drag effects. It's important to note that friction only opposes motion, so it cannot be subtracted from external torque in a way that leads to acceleration in the opposite direction. A free body diagram can help clarify the forces acting on the pendulum arm and aid in accurately applying these concepts.
CK_KoopaTroopa
Messages
8
Reaction score
2
Hi, I'm trying to program a simple physics engine from scratch as an exercise, and I'm starting with manipulating a stick with the mouse pointer. As of now, it dangles from one end demonstrating simple pendulum physics. Now, I want to add a friction component to the "axle" it's rotating on to avoid perpetual motion, like when you put a pencil through the end of a ruler and swing it back and forth.

I can create this illusion by making a line that says "omega = omega * 0.9" (omega being angular velocity) each frame, because right now I'm bypassing torque altogether and skipping straight to acceleration (which I realized this morning was a terrible idea... I know how to fix this though).

However, even though that appears right when I run the program, it doesn't seem to line up with real-life physics at all. What I need is a torque that goes against the torque of gravity (-m*g*L*sin (theta)); I just don't know how to find what that torque is. I'm pretty sure there's one equation I'm looking for, but I forget how friction works mathematically and I can't find it online or in my high school physics notes for the life of me! Anyone got it?
 
Physics news on Phys.org
The simplest model just has the retarding torque proportional to how tight the turning section fits the axle.
The next most complicated has the retarding torque proportional to the angular velocity.

I'd use the first one for the case of a ruler swinging on a pencil ... the "tightness" is the normal force at the contact point. The second works better for larger systems, and where there are bearings, lube, and so on. Also see:
https://au.mathworks.com/help/physm...iction.html?requestedDomain=www.mathworks.com
http://lpsa.swarthmore.edu/Systems/MechRotating/RotMechSysElem.html
http://www.mogi.bme.hu/TAMOP/robot_applications/ch07.html
 
Thanks for the response! The links you provided certainly do have a lot of information, but maybe too much! If I have to go through it all I will, but I feel like this is a lot simpler... I was thinking along the same lines of getting the tightness at the contact point, and originally tried to just think up the analog for rotational friction from translational (which, if I remember right, is Fnet = Fexternal + Ffriction for Fexternal = ma and Ffriction = -μFnormal) which would go to τnet = τexternal + τfriction for τexternal = Iα and τfriction = -μτnormal but I can't figure out what the "normal torque" (?) would be for that joint.

Come to think of it, I forget how regular normal force works... Because I remember it's just Fnormal = mg sinθ, but if that was the case, let's say Fexternal = 0 then Fnet would just be -μmg sinθ, meaning it would decelerate past 0 and accelerate in the other direction! That can't be right...?
 
In a dry bearing the pivot pin only touches the bearing over a relatively small area . The normal force on that area and the coefficient of friction give you the tangential friction force . Force times radius of pivot pin gives you the friction torque .

The mechanics of what happens in a dry bearing can be more complex than this in reality but the simple calculation is what is commonly used and gives reasonably accurate results .

In a lubricated bearing friction torque is mainly due to viscous drag effects . Can be estimated theoretically but calculations are not easy for real bearing systems .

Retarding torque on pendulum arm may in any case be due to air resistance as well as pivot friction .
 
Ahh, ok. The tangential friction force times radius makes perfect sense, but now how do I apply that? I can't simply subtract it from the external torque, because unless I'm doing something wrong that would make it continue to accelerate in the opposite direction even after decelerating to a complete stop.
 
Friction only acts to oppose motion .

Try drawing a free body diagram for the pendulum arm .
 
Hi there, im studying nanoscience at the university in Basel. Today I looked at the topic of intertial and non-inertial reference frames and the existence of fictitious forces. I understand that you call forces real in physics if they appear in interplay. Meaning that a force is real when there is the "actio" partner to the "reactio" partner. If this condition is not satisfied the force is not real. I also understand that if you specifically look at non-inertial reference frames you can...
This has been discussed many times on PF, and will likely come up again, so the video might come handy. Previous threads: https://www.physicsforums.com/threads/is-a-treadmill-incline-just-a-marketing-gimmick.937725/ https://www.physicsforums.com/threads/work-done-running-on-an-inclined-treadmill.927825/ https://www.physicsforums.com/threads/how-do-we-calculate-the-energy-we-used-to-do-something.1052162/
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