ForHosting KIT · Developer Utilities

Torque from power and speed calculator

This torque from power and speed calculator finds the shaft torque transmitted by a rotating machine when its mechanical power and rotational speed are known.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter power in watts, kilowatts, megawatts, mechanical horsepower, or metric horsepower, then provide speed in revolutions per minute or radians per second. The result is torque in newton-metres, with normalized power and angular speed shown alongside it so that every conversion is visible and easy to check. It is useful for motors, gearboxes, pumps, fans, turbines, and other rotating equipment operating at a defined point.

Relate power, speed, and shaft torque correctly

Rotational mechanical power links torque and angular speed through the equation P = T × ω. Rearranging that relationship gives T = P / ω, which is the equation used by this calculator. Power must represent the mechanical power actually transmitted at the shaft, and angular speed must describe that same operating point. When speed is entered in revolutions per minute, the calculator converts it to radians per second using ω = n × 2π / 60 before dividing power in watts by angular speed. Because one watt is one joule per second and a radian is dimensionless, the resulting unit is newton-metre. The familiar shortcut T = 9550 × P(kW) / n(rpm) is an approximation based on the same equation; using the full conversion avoids hiding the constant and works naturally with additional units. A zero speed is rejected because finite power divided by zero angular speed cannot define a finite shaft torque. Zero transmitted power at a positive speed is valid and produces zero torque.

Choose power and speed values from the same operating condition

A meaningful result depends more on input selection than arithmetic. Use output power at the shaft if you need output torque. If only electrical input power is available for a motor, first account for efficiency; otherwise the calculated torque will be higher than the torque actually delivered. Likewise, use loaded running speed rather than synchronous speed, nameplate nominal speed, or no-load speed when sizing around a real duty point. Gear reductions also change the location at which power and speed should be measured. Compute input-shaft torque using input-shaft speed and input power, or output-shaft torque using output speed and power after gearbox losses. The horsepower choices are explicit: hp means mechanical horsepower at exactly 745.6998715822702 watts, while PS means metric horsepower at 735.49875 watts. Keeping these definitions separate prevents a quiet unit error. The calculator reports converted watts and radians per second with the torque, allowing engineers to audit the calculation, compare it with a datasheet, and carry consistent SI values into another design step.

Interpret the result for selection and design

The returned value is steady torque implied by the stated transmitted power and speed. It is not automatically the motor starting torque, pull-out torque, peak transient torque, holding torque, or a guarantee that a component will survive the application. Real selections need allowances for duty cycle, acceleration, shock, service factor, thermal limits, gearbox efficiency, and uncertainty in the operating data. For a conveyor or pump that starts under load, calculate the running point here and then separately evaluate acceleration and breakaway requirements. For variable-speed drives, repeat the calculation at important points on the speed-power curve: constant-power operation makes torque rise as speed falls, whereas a constant-torque region makes power fall with speed. Negative power or speed is outside this calculator's magnitude-based scope, so regenerative direction should be handled with a separate sign convention while using positive magnitudes here. API use costs $0.002 per calculation, and the deterministic arithmetic makes the same input suitable for repeatable design records, automated equipment schedules, and checks embedded in engineering workflows.

Size a motor or gearbox shaft

Convert the required transmitted power and loaded rpm into running torque before applying the appropriate service and starting factors.

Check a machine datasheet

Compare a published power and speed point with its stated rated torque using explicit SI conversions.

Analyze a variable-speed operating point

Calculate torque at several power and speed combinations to understand a drive's constant-power or constant-torque region.

What formula does the calculator use?

It uses T = P / ω, with power converted to watts and rotational speed converted to radians per second.

How is rpm converted to radians per second?

The conversion is ω = rpm × 2π / 60. The converted angular speed is included in the result.

What is the difference between hp and PS?

hp is mechanical horsepower, equal to 745.6998715822702 W. PS is metric horsepower, equal to 735.49875 W.

Should I enter electrical input power for a motor?

Use mechanical shaft power for shaft torque. If you only know electrical input power, apply motor efficiency first.

How much does an API calculation cost?

Each API calculation costs $0.002. The calculation is deterministic and uses no external services.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/eng/torque-from-power

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/eng/torque-from-power \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"power":15,"rotational_speed":1450}'
{
  "power": 15,
  "rotational_speed": 1450
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "eng.torque_from_power",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →