HomePhysics › Acceleration Calculator

Acceleration Calculator

Computes average acceleration from initial velocity, final velocity and elapsed time, plus the velocity change, the distance covered assuming constant acceleration, and the acceleration expressed in g.

When to use

You have start and end velocities over a known time interval and need the acceleration or deceleration, or the distance covered while changing speed uniformly (0–100 km/h times, braking).

Do not use when: You know the net force and mass instead of velocities (use force), the motion is vertical under gravity alone (use free-fall), or you only need speed from distance and time (use speed-distance-time).

Formula

a = (final_velocity_m_s − initial_velocity_m_s) / time_s; acceleration_g = a / 9.80665; distance_m = (initial_velocity_m_s + final_velocity_m_s) / 2 × time_s

Assumes constant acceleration over the interval; for varying acceleration the result is the average acceleration and the distance is approximate.

Inputs

ParameterTypeUnitRequiredDescription
initial_velocity_m_snumberm/sdefault 0Velocity at the start of the interval; 0 when starting from rest (km/h ÷ 3.6).
final_velocity_m_snumberm/syesVelocity at the end of the interval; use 0 for coming to a stop.
time_snumbersyesDuration of the velocity change in seconds. Range: > 0

Outputs

OutputTypeUnitDescription
acceleration_m_s2numberm/s²Average acceleration; negative values mean deceleration.
acceleration_gnumbergAcceleration as a multiple of standard gravity (÷ 9.80665).
velocity_change_m_snumberm/sfinal_velocity − initial_velocity.
distance_mnumbermDisplacement during the interval for constant acceleration: (u + v) / 2 × t.

Example

0 to 100 km/h (27.78 m/s) in 8 s: {"initial_velocity_m_s":0,"final_velocity_m_s":27.78,"time_s":8}{"acceleration_m_s2":3.4725,"acceleration_g":0.3541,"velocity_change_m_s":27.78,"distance_m":111.12}

Braking from 30 m/s to rest in 5 s: {"initial_velocity_m_s":30,"final_velocity_m_s":0,"time_s":5}{"acceleration_m_s2":-6,"acceleration_g":-0.6118,"distance_m":75}

GET https://tttkmbb.com/api/v1/calculate/acceleration?initial_velocity_m_s=0&final_velocity_m_s=27.78&time_s=8

Machine access

Sources

FAQ

Why is my acceleration negative?

The final velocity is lower than the initial one, i.e. the object is slowing down (deceleration). The magnitude is the same as for speeding up.

How do I convert km/h to m/s?

Divide by 3.6: 100 km/h = 27.78 m/s. Mph × 0.44704 gives m/s.

Related calculators