HomePhysics › Free Fall Calculator

Free Fall Calculator

Computes the time to fall a given height from rest, or the height fallen in a given time, together with the final (impact) velocity, using h = ½·g·t² with no air resistance.

When to use

An object is dropped from rest near a planet's surface and you need how long it falls, how far, or how fast it lands (a dropped tool, a stone in a well).

Do not use when: Air drag matters (light or fast objects, skydivers, long falls near terminal velocity), the object has an initial velocity or launch angle (use projectile-motion), or heights are comparable to the planet's radius.

Formula

fall_time_s = √(2 × height_m / g); height_m = ½ × g × time_s²; final_velocity_m_s = g × fall_time_s = √(2 × g × height_m)

Object released from rest in a vacuum (no drag), constant g. In air, drag becomes noticeable for a human after roughly 2–3 s of fall and dominates for light objects.

Inputs

ParameterTypeUnitRequiredDescription
height_mnumbermnoHeight fallen in metres. Give either height_m or time_s. Range: ≥ 0
time_snumbersnoFall duration in seconds. Give either height_m or time_s. Range: ≥ 0
gravity_m_s2numberm/s²default 9.80665Local gravitational acceleration. Default is standard gravity g_n = 9.80665 m/s² (Moon ≈ 1.62, Mars ≈ 3.72, Jupiter ≈ 24.8). Range: > 0, ≤ 10000

Outputs

OutputTypeUnitDescription
fall_time_snumbersTime to fall the height from rest: √(2h / g).
height_mnumbermDistance fallen: ½ × g × t².
final_velocity_m_snumberm/sVelocity at the end of the fall: g × t = √(2gh).
final_velocity_km_hnumberkm/hImpact velocity in kilometres per hour.
average_velocity_m_snumberm/sMean velocity over the fall, half the final velocity.

Example

Dropped from 20 m: {"height_m":20}{"fall_time_s":2.0196,"height_m":20,"final_velocity_m_s":19.8057,"final_velocity_km_h":71.3005,"average_velocity_m_s":9.9029}

Falling for 3 s: {"time_s":3}{"height_m":44.1299,"fall_time_s":3,"final_velocity_m_s":29.42}

GET https://tttkmbb.com/api/v1/calculate/free-fall?height_m=20

Machine access

Sources

FAQ

Does the object's mass matter?

Not without air resistance: all masses fall with the same acceleration g. With air, heavier and denser objects are affected less by drag.

What if I know both the height and the time?

Provide only one; the other is computed. Giving both returns an INVALID_PARAMETER error because they cannot be independent.

Related calculators