Friction: Dry Contact, Belts, and Screws
Friction turns statics from pure equality into a problem with inequalities and impending motion. A normal force may be determined by force balance, but the friction force adjusts as needed up to a limit. That limit depends on the contact model and on whether the surfaces are sticking, sliding, wrapping, or acting through a screw thread.
This page collects the engineering friction models most often used in statics: dry Coulomb friction, belt friction, and square-thread screw friction. These models are idealizations, but they are practical when the surfaces are dry, the contact state is known or can be tested, and the goal is a first-order force estimate rather than detailed tribology.
Definitions
For dry contact, the normal reaction acts perpendicular to the contact surface. The friction force acts tangent to the surface and opposes relative motion or impending relative motion.
In static friction, the surfaces do not slip. The friction magnitude satisfies
where is the coefficient of static friction. The actual value of is whatever equilibrium requires, up to the maximum.
At impending slip,
In kinetic friction, the surfaces are sliding. The usual model is
where is the coefficient of kinetic friction. Typically , though measured values depend on materials, speed, lubrication, and surface condition.
The friction angle is defined by
At impending slip, the resultant contact force is tilted by angle from the normal.
For a flexible belt or rope wrapped around a fixed drum through wrap angle in radians, the capstan equation is
at impending slip. This assumes a flexible belt, uniform coefficient of friction, and no belt bending stiffness effects.
For a square-thread screw, the lead angle satisfies
where is the lead per revolution and is the mean thread radius. Thread friction is often modeled with the friction angle .
Key results
The most important dry-friction result is that static friction is not automatically . It is bounded:
Use equality only when the problem states impending motion or when a trial equilibrium solution reaches the friction limit. A typical procedure is:
- Assume the body sticks.
- Solve equilibrium for the required friction force.
- Check whether .
- If the check fails, sticking is impossible and motion or another contact state must be analyzed.
For a block on an incline at angle , with no other applied forces, impending downward sliding occurs when
so
This is a useful interpretation of the friction angle.
For belt friction, consider a small belt element. Tangential equilibrium leads to
at impending slip, and integration gives
The result is exponential: more wrap angle produces a large holding advantage.
For square-thread screws, a common torque estimate for raising a load is
and for lowering,
when . If , the screw is self-locking in the simplified model; the load will not back-drive the screw without applied torque. If , the screw can overhaul.
These equations neglect collar friction. If collar friction is present, add an additional collar torque such as for a simple mean collar radius model.
Friction problems should also be read as contact-state problems. The equations for a body at rest, a body just about to slip, and a body already sliding are not the same model with different numbers; they are different assumptions about the contact. A good solution states the assumed tendency of motion before assigning the friction direction. If the solved static friction force changes sign, the assumed tendency was opposite. If its magnitude exceeds , the assumed sticking state cannot exist. If the normal force solves as negative, the contact has opened and the friction model at that contact is invalid because dry friction requires compression.
The friction cone gives a compact geometric test. At a rough point contact, the resultant contact force must lie inside a cone whose half-angle is measured from the normal. For a 2D contact this is a wedge. If equilibrium demands a contact resultant outside that wedge, sticking is impossible. This viewpoint is helpful for ladders, wedges, blocks with multiple contacts, and machine elements where the normal and friction components are easier to visualize as one resultant reaction.
For screws and wedges, friction can either help hold a load or make motion inefficient. A self-locking screw is useful in a jack because the load does not descend by itself, but the same friction means extra input torque is needed to raise the load. The ideal equations on this page are therefore best treated as force estimates; real designs also check thread form, bearing friction, material strength, wear, lubrication, and safety factors.
Visual
| Model | Governing relation | Equality means | Main caution |
|---|---|---|---|
| Static dry friction | Impending slip only | Do not set equality automatically | |
| Kinetic dry friction | Sliding contact | Direction opposes relative motion | |
| Belt friction | Impending slip | must be in radians | |
| Screw friction | Raising load, square thread | Collar torque may be separate |
Worked example 1: Block on a rough incline
Problem. A kg block rests on a incline. The coefficient of static friction is . Determine whether it remains at rest. If it does, find the friction force. Use m/s.
Method. Assume static equilibrium. Resolve weight into components normal and parallel to the incline. Solve for required friction and compare with .
- Weight:
- Components relative to the plane:
This component tends to pull the block down the plane.
- Normal equilibrium:
- Tangential equilibrium requires friction up the plane:
- Maximum static friction:
- Compare:
The required static friction exceeds the available maximum. The checked conclusion is
At impending slip, friction would act up the incline with magnitude N, but that is not enough to balance the downhill component of weight.
Worked example 2: Belt holding force around a drum
Problem. A rope wraps around a fixed drum through . The coefficient of static friction is . If the slack-side tension is N, find the largest tight-side tension that can be held without slipping.
Method. Use the capstan equation at impending slip. Convert the wrap angle to radians.
- Convert angle:
- Capstan relation:
- Substitute:
- Compute exponent:
- Exponential factor:
- Tight-side tension:
The checked answer is
If the applied tight-side tension is less than this, static friction can supply the difference. If it is larger, the rope slips with the tight side moving relative to the drum.
Code
import math
def block_on_incline(mass, theta_deg, mu_s, g=9.81):
theta = math.radians(theta_deg)
W = mass * g
required = W * math.sin(theta)
normal = W * math.cos(theta)
maximum = mu_s * normal
return required, normal, maximum, required <= maximum
required, normal, maximum, sticks = block_on_incline(40.0, 25.0, 0.35)
print(f"required friction = {required:.1f} N")
print(f"normal force = {normal:.1f} N")
print(f"max static friction = {maximum:.1f} N")
print("sticks?", sticks)
mu = 0.28
beta = math.radians(210.0)
T_slack = 150.0
T_tight = T_slack * math.exp(mu * beta)
print(f"tight-side limit = {T_tight:.1f} N")
Common pitfalls
- Setting even when the contact is merely sticking.
- Forgetting to test whether the required static friction is within its limit.
- Drawing friction in the direction of motion rather than opposite impending or relative motion.
- Using degrees instead of radians in the belt-friction exponent.
- Confusing tight side and slack side in the capstan equation.
- Ignoring collar friction in screw problems when the problem states a collar is present.
- Assuming coefficients of friction are exact material constants; they are model parameters with experimental scatter.