Mechanical Drive & Powertrain Engineering

Power Transmission Calculator

Calculate drive torque, speed ratios, mechanical efficiency losses, output power, dynamic service factors, and minimum output shaft sizing for gearboxes, belts, and chain drives.

Power Transmission Kinematic Schematic

Smooth, quiet high-torque reduction

P = 15 kWN₁ = 1450 RPMRatio i = 5.2:1η = 97%Loss = 0.45 kWT_out = 498.3 N·mN₂ = 278.8 RPM

Prime Mover & Drive Inputs

Power, input speed, and stage reduction ratio

kW

Electric motor or engine continuous power.

RPM

Prime mover operational rotational speed.

: 1

Ratio N_in / N_out (e.g. 5.2 for 5.2:1).

%

Frictional and churning efficiency percentage.

Service Factor (SF / Ka)

Multiplies nominal torque for design safety.

Output Shaft Sizing Parameters

MPa

Steel: 250–450 MPa, Alloy steel: 600+ MPa.

Yield safety factor for torsional shear.

Torque Multiplier Law

For a speed reduction ratio i = 5.2, torque increases by approx 5.04× while shaft speed drops to 278.8 RPM.

Multiplied Output Torque (T_out)

498.3N·m

Input Torque (T_in): 98.8 N·m | Design Torque: 672.7 N·m

Output Speed

278.8 RPM

Output Power

14.55 kW

Min. Shaft Dia.

Ø 34.1 mm

Thermal Heat Loss

0.45 kW (3.0%)

Output Angular Velocity

29.20 rad/s

Transmission & Drive Kinematic Metrics

Output Horsepower

19.51 HP

Output Torque (lbf·ft)

367.5 lb·ft

Torque Boost Ratio

5.04×

Input Angular Velocity

151.8 rad/s

Service Factor Applied

1.35×

Shaft Allowable Shear

86.6 MPa

Governing Power Transmission Formulas

P = (T · N) / 9548.8 | T_out = T_in · i · η | d_shaft = ∛[ (16 · T_design) / (π · τ_allow) ]
PkW (or HP)

Mechanical transmitted power

TN·m

Torque transmitted across shaft

NRPM

Rotational shaft speed

i

Speed reduction ratio (N_in / N_out)

η% / decimal

Transmission mechanical efficiency

d_shaftmm

Minimum solid output shaft diameter

Engineering Code

Export transmission torque and shaft calculations to Python or MATLAB.

Python
# Power Transmission, Torque & Shaft Sizing Analysis
import math

def calculate_transmission(power_kW, speed_rpm, ratio, eta_percent=97.0, service_factor=1.35, Sy_MPa=300, SF_shaft=2.0):
    omega_in = 2 * math.pi * speed_rpm / 60.0
    output_speed_rpm = speed_rpm / ratio
    omega_out = 2 * math.pi * output_speed_rpm / 60.0
    
    # Torque
    T_in_Nm = (power_kW * 1000.0) / omega_in
    T_design_in_Nm = T_in_Nm * service_factor
    
    eta = eta_percent / 100.0
    output_power_kW = power_kW * eta
    power_loss_kW = power_kW - output_power_kW
    T_out_Nm = (output_power_kW * 1000.0) / omega_out
    T_design_out_Nm = T_out_Nm * service_factor
    
    # Minimum Output Shaft Diameter (Pure Torsion Tresca)
    tau_allow_Pa = (0.577 * Sy_MPa / SF_shaft) * 1e6
    d_shaft_m = ((16.0 * T_design_out_Nm) / (math.pi * tau_allow_Pa)) ** (1.0 / 3.0)
    d_shaft_mm = d_shaft_m * 1000.0
    
    return {
        "output_rpm": output_speed_rpm,
        "input_torque_Nm": T_in_Nm,
        "output_torque_Nm": T_out_Nm,
        "output_power_kW": output_power_kW,
        "power_loss_kW": power_loss_kW,
        "min_shaft_dia_mm": d_shaft_mm
    }

# Inputs
res = calculate_transmission(
    power_kW=15,
    speed_rpm=1450,
    ratio=5.2,
    eta_percent=97,
    service_factor=1.35
)
print(f"Output Speed: {res['output_rpm']:.2f} RPM")
print(f"Output Torque: {res['output_torque_Nm']:.2f} N·m (Input: {res['input_torque_Nm']:.2f} N·m)")
print(f"Output Power: {res['output_power_kW']:.2f} kW (Heat Loss: {res['power_loss_kW']:.2f} kW)")
print(f"Minimum Shaft Diameter: {res['min_shaft_dia_mm']:.1f} mm")
MATLAB
% Power Transmission Script
P_in = 15;
N_in = 1450;
i = 5.2;
eta = 97 / 100;
SF = 1.35;

N_out = N_in / i;
T_in = (P_in * 9548.8) / N_in;
T_out = T_in * i * eta;
P_out = P_in * eta;
P_loss = P_in - P_out;

fprintf('Output Speed: %.2f RPM\n', N_out);
fprintf('Output Torque: %.2f Nm\n', T_out);
fprintf('Power Loss: %.2f kW\n', P_loss);
Excel Formula
=(P_kW * 9548.8 / (N_rpm / ratio)) * (eta_percent / 100)

Example Calculation: Industrial Helical Gearbox Reduction

An electric motor delivers 15 kW at 1,450 RPM into a helical reduction gearbox with a speed ratio i = 5.2:1 (efficiency η = 97%, service factor SF = 1.35, shaft material Sy = 300 MPa, safety factor = 2.0):

T_in = (15 × 9548.8) / 1450 = 98.78 N·m | N_out = 1450 / 5.2 = 278.85 RPM
P_out = 15 × 0.97 = 14.55 kW | Power Heat Loss = 0.45 kW | Design Torque = 667.1 N·m
Output Torque (T_out) = 498.24 N·m | Min. Output Shaft Diameter = 33.9 mm

Technical Explanation: Power Transmission Mechanics & Shaft Sizing

Mechanical power transmission systems convert high-speed, low-torque mechanical energy from prime movers (electric motors, internal combustion engines) into the low-speed, high-torque output required by heavy industrial machinery, conveyors, agitators, and drive wheels.

Governing Torque-Power Equations

In SI units, mechanical power is the product of transmitted torque (T) and rotational angular velocity (ω):

P [kW] = (T [N·m] × N [RPM]) / 9548.8

Across a reduction stage with speed ratio i = N_in / N_out, torque is multiplied while output power decreases slightly due to friction losses:

T_out = T_in × i × η_stage

Transmission Efficiency Characteristics

  • Spur & Helical Gears (97% – 99%): High efficiency, low friction losses, excellent continuous duty capacity.
  • Timing & V-Belts (94% – 98%): Flexible shock dampening; V-belts suffer 3–5% losses due to continuous rubber hysteresis and wedging friction.
  • Roller Chains (95% – 97%): Positive non-slip engagement; requires adequate lubrication to prevent link pin wear.
  • Worm Gearboxes (60% – 85%): Large single-stage reductions accompanied by high sliding tooth friction, requiring substantial cooling to dissipate thermal losses.

ASME Shaft Sizing for Pure Torsion

Transmission shafts must safely withstand design torque peaks without yielding. According to the Maximum Shear Stress Theory (Tresca criterion), the allowable torsional shear stress is τ_allow = 0.577 · S_yield / SF. The minimum required solid shaft diameter is:

d_shaft = [ (16 × T_design) / (π × τ_allow) ]^(1/3)

Real-World Engineering Cases

Catastrophic Worm Gearbox Thermal Seizure in a Cement Feeder

A cement clinker drag conveyor utilized a 40:1 worm gear reducer powered by a 22 kW motor. The designer ignored the 25% continuous thermal power loss (5.5 kW of heat). Without auxiliary oil cooling, gearbox oil temperature exceeded 140°C, causing lubricant thermal breakdown and bronze wheel tooth galling within two weeks.

Engineering Lesson

Always calculate thermal power loss in high-reduction drives. For worm gearboxes, thermal heat dissipation rating often limits continuous capacity long before mechanical gear strength does.

Fatigue Fracture of Output Shaft from Neglected Service Factor

A hammer crusher was directly coupled to a parallel-shaft helical reducer sized strictly for nominal motor nameplate torque (SF = 1.0). High shock impacts from uncrushed rocks repeatedly exceeded the shaft yield limit, initiating fatigue cracks at the output keyway that snapped the shaft after 350 operating hours.

Engineering Lesson

Always apply realistic AGMA/ISO application service factors (typically 1.5 to 2.25 for heavy shock impact equipment) to ensure both gear teeth and shaft diameters endure transient peak stresses.

Frequently Asked Questions

What is the difference between nominal torque and design torque?

Nominal torque is the steady-state torque calculated directly from motor power and running RPM. Design torque multiplies nominal torque by a Service Factor (SF) to account for startup spikes, motor locked-rotor torque, and mechanical shock loads.

Does this shaft sizing include bending moments?

This tool calculates the minimum diameter required for pure torsional shear. If the shaft also carries heavy overhung bending loads (such as heavy overhung sprockets or belt pull), calculate combined equivalent bending-torsion stress using the ASME shaft equation.

How do multi-stage gear reductions calculate efficiency?

Total multi-stage efficiency is the product of individual stage efficiencies (η_total = η₁ × η₂ × ... × η_bearing). A two-stage helical unit typically delivers 0.97 × 0.97 ≈ 94.1% overall efficiency.

Engineering calculations provided by this tool are for educational and preliminary design purposes. Always verify calculations, loading conditions, thermal ratings, applicable standards (AGMA, ISO, DIN), safety factors, and manufacturer catalog ratings before commissioning power transmission machinery.