Lesson 10 of 16
Viscosity and Shear Stress
Viscosity and Shear Stress
Viscosity is a fluid's resistance to shear deformation — its internal "stickiness". Honey is highly viscous; water is only mildly so; air has very low viscosity.
Newton's Law of Viscosity
For a Newtonian fluid, shear stress is proportional to the velocity gradient perpendicular to the flow:
where:
- — shear stress (Pa)
- — dynamic viscosity (Pa·s), also written mPa·s or cP
- — velocity gradient (s⁻¹); how fast velocity changes across the fluid layer
The shear force on an area is simply:
Kinematic Viscosity
Kinematic viscosity normalises dynamic viscosity by density:
Units: m²/s (also written as cSt, where 1 cSt = 10⁻⁶ m²/s). It appears naturally in the Reynolds number .
Temperature Dependence
| Fluid | (°C) | (Pa·s) |
|---|---|---|
| Water | 20 | |
| Water | 80 | |
| Air | 20 |
Liquids become less viscous as temperature rises (thermal agitation breaks intermolecular bonds). Gases become more viscous as temperature rises (more molecular collisions transfer momentum).
Your Task
Implement:
shear_stress(mu, du_dy)— returns shear stress in Pakinematic_viscosity(mu, rho)— returns in m²/sshear_force(mu, du_dy, A)— returns shear force in N
Python runtime loading...
Loading...
Click "Run" to execute your code.