Lesson 13 of 16
Stokes' Law and Sedimentation
Stokes' Law and Sedimentation
When a small sphere moves slowly through a viscous fluid (), the drag is dominated by viscous forces rather than inertia. Stokes' law gives an exact analytical result:
where:
- — dynamic viscosity of the fluid (Pa·s)
- — radius of the sphere (m)
- — velocity of the sphere relative to the fluid (m/s)
This is linear in velocity — very different from the quadratic drag seen at high Reynolds numbers.
Terminal Velocity (Sedimentation)
A particle settling through a fluid under gravity reaches a constant terminal velocity when the net downward force (weight minus buoyancy) balances the Stokes drag:
Solving for :
where is the particle density and is the fluid density.
Applications
- Viscometry: measuring by timing a sphere's fall
- Sedimentation: designing centrifuges and settling tanks
- Aerosol science: predicting how dust or droplets settle in air
Your Task
Implement:
stokes_drag(mu, r, v)— Stokes drag force (N)stokes_terminal_velocity(r, rho_particle, rho_fluid, mu)— terminal velocity (m/s). Use m/s² inside the function.
Python runtime loading...
Loading...
Click "Run" to execute your code.