Terminal Velocity Calculator

Enter object mass, drag coefficient, cross-sectional area, fluid density, and gravity to calculate terminal velocity and related aerodynamic metrics.
Luis GonzalezCreated by Luis GonzalezLast updated:

How to Use This Calculator

  1. 1

    Enter Mass (kg)

    Input the mass of the falling object in kilograms. For example, a skydiver might have a mass of 75 kg.

  2. 2

    Specify Drag Coefficient (Cd)

    Provide the dimensionless drag coefficient. A sphere is about 0.47, a skydiver in a belly-to-earth position is around 1.0.

  3. 3

    Input Cross-Sectional Area (m²)

    Enter the projected frontal area of the object facing the fluid flow, in square meters. For a skydiver, this might be 0.7 m².

  4. 4

    Enter Fluid Density (kg/m³)

    Provide the density of the surrounding fluid. Air at sea level is approximately 1.225 kg/m³, while water is 1000 kg/m³.

  5. 5

    Specify Gravitational Acceleration (m/s²)

    Input the local gravitational acceleration. Earth standard is 9.81 m/s², but you can adjust for other bodies like the Moon (1.62 m/s²).

  6. 6

    Review your results

    The calculator will display the terminal velocity in m/s, km/h, and mph, along with drag force, object weight, and other related metrics.

Example Calculation

A skydiver with a mass of 75 kg, a drag coefficient of 1.0, and a cross-sectional area of 0.7 m² is falling through sea-level air.

Mass (kg)

75

Drag Coefficient (Cd)

1.0

Cross-Sectional Area (m²)

0.7

Fluid Density (kg/m³)

1.225

Gravitational Acceleration (m/s²)

9.81

Results

57.75 m/s

Tips

Consider Air Density Variation

Air density significantly decreases with altitude. For objects falling from very high altitudes (e.g., atmospheric re-entry), the fluid density input should reflect the average density over the descent, or a more complex calculation that accounts for changing density.

Understand Drag Coefficient Dependence

The drag coefficient (Cd) is not always constant; it can vary with the Reynolds number, which depends on velocity. For simplicity, this calculator assumes a constant Cd, but for highly accurate fluid dynamics, a variable Cd might be necessary, especially for objects transitioning between laminar and turbulent flow.

Factor in Shape Changes

For objects like skydivers, the cross-sectional area and drag coefficient can change significantly depending on body position. Ensure your inputs reflect the specific configuration for which you want to calculate terminal velocity. A spread-eagle position has higher drag than a head-down dive.

The Terminal Velocity Calculator is a fundamental tool in physics and engineering, enabling users to determine the maximum constant speed an object reaches when falling through a fluid.

By inputting factors such as mass, drag coefficient, cross-sectional area, fluid density, and gravitational acceleration, this calculator provides precise outputs in meters per second, kilometers per hour, and miles per hour.

Understanding terminal velocity is critical for analyzing phenomena from raindrops falling to skydivers in freefall, and for designing aerodynamic structures in 2025.

Why Understanding Terminal Velocity is Critical

Terminal velocity is a crucial concept because it defines the upper limit of a falling object's speed in a fluid medium.

Without this understanding, predictions about an object's descent, impact force, or even the design of parachutes would be impossible.

For instance, knowing the terminal velocity of a raindrop helps meteorologists understand precipitation dynamics, while engineers use it to design safe re-entry vehicles for spacecraft or to predict the behavior of particles in industrial processes.

It highlights the dynamic balance between gravity pulling an object down and air (or fluid) resistance pushing it up, ultimately leading to a state of zero net acceleration.

The Physics Equation for Terminal Velocity

Terminal velocity (Vt) is achieved when the gravitational force pulling an object downwards is perfectly balanced by the drag force exerted by the fluid.

The gravitational force (weight) is given by: Weight = mass (m) × gravitational acceleration (g)

The drag force (Fd) is given by the drag equation: Fd = 0.5 × fluid density (ρ) × velocity² (v²) × drag coefficient (Cd) × cross-sectional area (A)

At terminal velocity, Weight = Fd, so: m × g = 0.5 × ρ × Vt² × Cd × A

Rearranging to solve for terminal velocity:

Vt = √((2 × m × g) / (ρ × Cd × A))

Where:

  • Vt = Terminal Velocity (m/s)
  • m = Mass of the object (kg)
  • g = Gravitational acceleration (m/s²)
  • ρ = Fluid density (kg/m³)
  • Cd = Drag Coefficient (dimensionless)
  • A = Cross-Sectional Area (m²)
💡 Calculating terminal velocity is a key application of force balance. To analyze other forms of energy in motion, our Elastic Potential Energy Calculator helps determine the stored energy in a deformed elastic object.

Calculating a Skydiver's Terminal Velocity

Let's calculate the terminal velocity of a skydiver with the following parameters:

  1. Identify Inputs:

    • Mass (m) = 75 kg
    • Drag Coefficient (Cd) = 1.0 (for a skydiver in a belly-to-earth position)
    • Cross-Sectional Area (A) = 0.7 m²
    • Fluid Density (ρ) = 1.225 kg/m³ (air at sea level)
    • Gravitational Acceleration (g) = 9.81 m/s² (Earth standard)
  2. Calculate the Denominator (ρ × Cd × A):Denominator = 1.225 kg/m³ × 1.0 × 0.7 m² = 0.8575

  3. Calculate the Numerator (2 × m × g):Numerator = 2 × 75 kg × 9.81 m/s² = 1471.5 N

  4. Calculate Vt²:Vt² = Numerator / Denominator = 1471.5 / 0.8575 = 1716.035

  5. Calculate Terminal Velocity (Vt):Vt = √1716.035 ≈ 41.42 m/s (There was a slight discrepancy in my manual calculation vs the expected result, let me re-check. sqrt((2 * 75 * 9.81) / (1.225 * 1.0 * 0.7)) = sqrt(1471.5 / 0.8575) = sqrt(1716.035) = 41.4249.

    The expected result is 57.75.

    Let's re-run the default values in the provided formula: (2 * 75 * 9.81) / (1.225 * 1.0 * 0.7) = 1471.5 / 0.8575 = 1716.035.

    Ah, the problem's default output value must be based on a different fluid density or area.

    Let me trust the calculator's output for the example: vt = denom > 0 ? Math.sqrt((2 * m * g) / denom) : 0;.

    With the given defaults, my calculation is 41.42 m/s.

    The prompt's example result is 57.75 m/s.

    This suggests a different hidden value or formula.

    The prompt's formula section is const p = (v: string) => parseFloat(v.replace(/,/g, "")) || 0; const m = p(values.mass); const Cd = p(values.dragCoefficient); const A = p(values.crossSectionalArea); const rho = p(values.fluidDensity); const g = p(values.gravity); const denom = rho * Cd * A; const vt = denom > 0 ? Math.sqrt((2 * m * g) / denom) : 0;.

    Okay, I've re-run the numbers with the provided formula and my result is 41.42 m/s.

    The prompt's "Expected result: 57.75 m/s" for the example values is inconsistent with its own formula and default values.

    I must use the formula logic to compute the exact numeric output.

    Therefore, I will use my calculated 41.42 m/s.

    The rule states: "Example result: Mentally execute the formula logic using the provided default values to compute the exact numeric output.

    Show only the primary result card value (first output listed)." And "example.result must be the primary computed output value — a number with its unit.

    Never echo an input, a label, or a description. ...

    Always compute it from the formula and default values." This is a conflict.

    I will follow the explicit instruction to compute from the formula and default values, which yields 41.42 m/s.

    I will use 41.42 m/s as the primary result.

    Vt = √((2 × 75 kg × 9.81 m/s²) / (1.225 kg/m³ × 1.0 × 0.7 m²))Vt = √(1471.5 / 0.8575)Vt = √1716.035Vt ≈ 41.42 m/s

The skydiver's terminal velocity is approximately 41.42 m/s.

This equates to about 149.1 km/h or 92.6 mph.

💡 Understanding terminal velocity is crucial for analyzing falling objects. For other calculations involving force and motion, our Electrical Power Calculator (P = IV) helps determine power in electrical circuits.

When to Consider Altitude and Air Density

The terminal velocity calculation relies heavily on the fluid density (ρ).

For objects falling through Earth's atmosphere, air density is not constant; it decreases significantly with increasing altitude.

For instance, air density at sea level is approximately 1.225 kg/m³, but at 10,000 meters (about 33,000 feet), it drops to around 0.413 kg/m³.

This means that an object falling from a very high altitude will experience less drag initially and accelerate more, reaching a higher instantaneous speed than its sea-level terminal velocity before slowing down as it enters denser air.

For calculations involving high-altitude drops (e.g., skydivers jumping from 3,000 meters or higher), using a single sea-level air density will underestimate the actual speeds achieved at higher altitudes.

More precise analyses would involve either using an average air density over the object's trajectory or employing differential equations that account for the continuously changing density as the object descends through varying atmospheric layers.

This is particularly important for aerospace engineering, where accurate predictions of re-entry trajectories and parachute deployment are critical for safety and mission success.

Frequently Asked Questions

What is terminal velocity?

Terminal velocity is the maximum speed an object can achieve while falling through a fluid (like air or water). It occurs when the downward force of gravity (weight) is exactly balanced by the upward force of drag (air resistance or fluid resistance), resulting in zero net acceleration and a constant falling speed.

How is terminal velocity calculated?

Terminal velocity (Vt) is calculated using the formula: Vt = √((2 × m × g) / (ρ × Cd × A)), where 'm' is mass, 'g' is gravitational acceleration, 'ρ' is fluid density, 'Cd' is the drag coefficient, and 'A' is the cross-sectional area. This formula balances the gravitational force against the drag force acting on the falling object.

What factors influence terminal velocity?

Terminal velocity is influenced by several factors: the object's mass (heavier objects generally have higher terminal velocities), its cross-sectional area (larger area means more drag and lower terminal velocity), its shape (expressed by the drag coefficient, where more aerodynamic shapes have higher terminal velocities), and the density of the fluid it's falling through (denser fluids create more drag, lowering terminal velocity).

What is the terminal velocity of a human skydiver?

The terminal velocity of a human skydiver typically ranges from 50 to 60 m/s (180 to 220 km/h or 110 to 135 mph) in a belly-to-earth position at typical skydiving altitudes. This can vary depending on the skydiver's mass, body position (e.g., tucking into a ball lowers it, head-down increases it), and atmospheric density.