Mechanical Engineering Calculator

Gear Ratio Calculator

Calculate the gear ratio, output speed, and output torque of a mating gear pair. Analyze mechanical advantage and power transmission efficiency.

Gear Mesh Schematic

Speed reduction and torque multiplication through mating gears

DriverT1 = 20DrivenT2 = 60

Input Parameters

teeth

Number of teeth on the input motor gear.

teeth

Number of teeth on the output gear.

RPM

Rotational speed of the driving gear.

N·m

Torque applied to the driving gear.

%

Efficiency of power transmission (typically 95-98%).

Design Tip

To prevent accelerated wear on specific teeth, engineers often design gears with "hunting ratios" (non-integer ratios) so the same teeth don't mesh on every revolution.

Gear Ratio (i)

3.00: 1
Speed Reduction (Torque Multiply)

Output Speed

500.00 RPM

Output Torque

147.00 N·m

Governing Formulas

i = T₂ / T₁
N₂ = N₁ / i
Torque₂ = Torque₁ × i × η

Engineering Code

Calculate multi-stage gear train kinematics programmatically.

Python
def calculate_gear_kinematics(t1, t2, n1_rpm, t1_torque, efficiency_pct=100):
    """
    Calculate gear ratio, output speed, and output torque.
    
    t1: Teeth on driving gear
    t2: Teeth on driven gear
    n1_rpm: Input speed in RPM
    t1_torque: Input torque
    efficiency_pct: Mechanical efficiency (0-100)
    
    Returns: Dict containing ratio, output_speed, output_torque
    """
    if t1 <= 0 or t2 <= 0:
        raise ValueError("Number of teeth must be greater than zero.")

    ratio = t2 / t1
    n2_rpm = n1_rpm / ratio
    t2_torque = t1_torque * ratio * (efficiency_pct / 100)
    
    return {
        "ratio": ratio,
        "output_speed": n2_rpm,
        "output_torque": t2_torque
    }

# Example
results = calculate_gear_kinematics(
    t1=20, 
    t2=60, 
    n1_rpm=1500, 
    t1_torque=50, 
    efficiency_pct=98
)

print(f"Gear Ratio: {results['ratio']:.2f}")
print(f"Output Speed: {results['output_speed']:.1f} RPM")
print(f"Output Torque: {results['output_torque']:.1f} N.m")
MATLAB
function res = gear_kinematics(t1, t2, n1_rpm, t1_torque, eff_pct)
    % Calculate gear ratio, output speed, and output torque

    if t1 <= 0 || t2 <= 0
        error('Number of teeth must be > 0');
    end

    ratio = t2 / t1;
    n2_rpm = n1_rpm / ratio;
    t2_torque = t1_torque * ratio * (eff_pct / 100);
    
    res.ratio = ratio;
    res.output_speed = n2_rpm;
    res.output_torque = t2_torque;
end

% Example
res = gear_kinematics(20, 60, 1500, 50, 98);

fprintf('Gear Ratio: %.2f\n', res.ratio);
fprintf('Output Speed: %.1f RPM\n', res.output_speed);
fprintf('Output Torque: %.1f N.m\n', res.output_torque);
Excel Formulas
Ratio: =T2/T1
Output Speed: =N1/(T2/T1)
Output Torque: =Torque1*(T2/T1)*(Eff/100)

Example Calculation

A motor drives a pinion with 20 teeth at 1,500 RPM delivering 50 N·m of torque. It meshes with a driven gear having 60 teeth. The gear mesh efficiency is 98%.

Gear Ratio (i)
60 / 20
3.00
Output Speed
1500 / 3
500 RPM
Output Torque
50 × 3 × 0.98
147.0 N·m

Understanding Gear Ratios and Mechanical Advantage

Gears are essential mechanical components used to transmit power and motion between rotating shafts. The fundamental purpose of a gear set is to act as a mechanical transformer, converting high-speed, low-torque power from a motor into low-speed, high-torque power (or vice versa) to suit the application.

The Gear Ratio Formula

The gear ratio ($i$) is defined as the number of teeth on the driven gear ($T_2$) divided by the number of teeth on the driving gear ($T_1$). It can also be expressed as the ratio of their pitch diameters.

i = T₂ / T₁ = D₂ / D₁ = N₁ / N₂

Speed vs. Torque Trade-off

Due to the law of conservation of energy, power in a mechanical system remains constant (minus frictional losses). Because Power = Torque × Angular Velocity, changing the speed via a gear ratio creates an inverse change in torque:

  • Reduction (i > 1): Speed decreases, Torque increases. (e.g., Heavy machinery, vehicle 1st gear)
  • Overdrive (i < 1): Speed increases, Torque decreases. (e.g., Centrifugal compressors, vehicle top gear)

The Role of Efficiency

While the speed ratio is a perfect geometric relationship, the torque relationship is not. Friction between gear teeth, oil churning, and bearing drag cause power losses. Therefore, theoretical output torque must always be multiplied by the efficiency factor ($\eta$) to find the true mechanical output.

Real-World Engineering Cases

Automotive Transmission Engineering

A vehicle's internal combustion engine produces peak power at around 3,000 RPM, but the wheels need to turn at 300 RPM for city driving. A multi-stage gearbox provides a high reduction ratio in 1st gear to supply massive torque for acceleration, then shifts to ratios closer to 1:1 (or overdrive) for highway cruising.

Engineering Lesson

Variable gear ratios are required when the power source has a narrow optimal operating band but the application requires a wide range of speeds and forces.

Wind Turbine Gearbox Failures

Wind turbines use large planetary gearboxes to convert the 15 RPM of the massive rotor blades into the 1,500 RPM required by the electrical generator (an overdrive ratio of 1:100). The massive torque input causes microscopic deflections in the gearbox housing, often leading to premature bearing and gear tooth failure.

Engineering Lesson

Extreme gear ratios generate extreme forces. The structural rigidity of the gearbox casing is just as critical as the gear teeth design.

Frequently Asked Questions

What does a 3:1 gear ratio mean?

A 3:1 ratio means the driving gear must complete 3 full revolutions to turn the driven gear exactly 1 full revolution. This configuration divides the output speed by 3 but multiplies the output torque by nearly 3.

Can I calculate ratio using gear diameters?

Yes. Because mating gears must have the same module (tooth size), the ratio of their teeth is identical to the ratio of their pitch diameters (Ratio = D2 / D1).

What is the typical efficiency of gears?

Spur and helical gears are highly efficient, typically 95% to 98% per mesh. Bevel gears run around 93-97%. Worm gears, however, have high sliding friction and their efficiency can range anywhere from 40% to 85% depending on the ratio.

Calculations assume standard mating gears without complex planetary kinematics. Efficiency losses are generalized. For final product design, consult AGMA or ISO standards for comprehensive gear rating, bending stress, and pitting resistance analysis.