From 486b6f8477ffa14192e9d3cae76200c0dde1476c Mon Sep 17 00:00:00 2001 From: pluto-tofu Date: Wed, 11 Oct 2023 05:11:19 +0530 Subject: [PATCH] fixed issues in topic description --- physics/terminal_velocity.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/physics/terminal_velocity.py b/physics/terminal_velocity.py index d04ad478e..d41eb413f 100644 --- a/physics/terminal_velocity.py +++ b/physics/terminal_velocity.py @@ -1,4 +1,7 @@ """ +Title : Computing the terminal velocity of an object falling + through a fluid. + Terminal velocity is defined as the highest velocity attained by an object falling through a fluid. It is observed when the sum of drag force and buoyancy is equal to the downward gravity force acting on the @@ -14,6 +17,8 @@ g = Acceleration due to gravity (value taken : 9.8 m/s^2) ρ = Density of the fluid through which the object is falling (in Kg/m^3) A = Projected area of the object (in m^2) Cd = Drag coefficient (dimensionless) + +Reference : https://byjus.com/physics/derivation-of-terminal-velocity/ """