Formula: HP=kW/0.7457 (Mechanical horsepower, standard for motors)
Explanation
- 1 HP = 0.7457 kW (exact definition).
- Multiply kW by 1.341 for HP (inverse).
- Electric HP variant: Divide by 0.746 (rarely used).
Calculator code (JavaScript)
text
function kwToHp(kw) { return (kw / 0.7457).toFixed(2); } // Example kwToHp(75) → "100.58 HP"
Reverse (HP to kW)
kW=HP×0.7457kW
** Add Conversion Table with Formulas