Lesson 9 of 16
Drag Force
Drag Force
When an object moves through a fluid, the fluid exerts a drag force opposing the motion. For turbulent/high- flow the drag is dominated by pressure drag and follows the quadratic drag law:
where:
- — fluid density (kg/m³)
- — velocity of the object relative to the fluid (m/s)
- — drag coefficient (dimensionless), depends on shape and flow regime
- — reference area (m²), usually the frontal (projected) area
Note that drag grows with — doubling speed quadruples drag.
Common Drag Coefficients
| Object | |
|---|---|
| Streamlined airfoil | |
| Modern car | |
| Sphere | |
| Cube | |
| Flat plate (broadside) |
Terminal Velocity
An object falling through a fluid accelerates until drag equals gravity (). Solving for this terminal velocity:
A skydiver ( kg, , m²) reaches about 47 m/s (~170 km/h) in air.
Your Task
Implement:
drag_force(rho, v, Cd, A)— returns drag force in newtonsterminal_velocity(m, rho, Cd, A)— returns terminal velocity in m/s. Use m/s² inside the function.
Python runtime loading...
Loading...
Click "Run" to execute your code.