馬力計算器
トルクと回転数からエンジン馬力を計算し,または四分の一マイルトラップ速度を推定する。
結果はタイプすると更新されます。
この計算機の情報
the second mode, the engine power follows directly from torque and rotational speed: HP = torque (lb-ft) × RPM ÷ 5252. The magic number 5,252 comes from the definition of horsepower (33,000 ft-lb per minute) and the 2π radians in a revolution, and it is also the RPM at which the horsepower and torque curves always intersect on a dyno chart. The tool reports the metric equivalent too, using 1 hp = 0.7457 kW. The engine power calculator is a powerful tool for calculating horsepower. It is a powerful tool for calculating horsepower.As a working example, HP = torque (lb-ft) × RPM ÷ 5252. The magic number 5,252
よくある質問
なぜ馬力の公式に 5252がある?
馬力は33,000ft‐lbp/minと定義され,1回転は2πラジアンをスイープする。
400メートルで 馬力はどう見積もる?
計算機はこれを逆にして、トラップ速度と経過時間を、トラクションと空力を無視した粗いガイドラインである、あなたのパワーと重量から推定する。
1馬力は何ワットですか。
1馬力は約745.7ワットで,300馬力は約224kWである。
なぜ同じトルクが異なる回転数で異なる馬力を与えるのか。
出力はトルクに回転数を乗じたものであるからである。HP=トルク×RPM÷5252。300lb-ftは5000RPMで約286hpだが、2500RPMでは143hpである。エンジンがピーク出力に達するために回転数を上げる理由である。
速い400メートルのための良いパワー重量比は何ですか。
トラップの速度は馬力/ポンドの立方根で計算されるから、重量はパワーと同じくらい重要である。 0.1 hp/ポンドの重量でトラップを110 mphに近づける。 重量を減らすことはパワーを増やすことと同じくらい役に立つ。
トラップの速度から馬力を推定できるか?
クォーターマイルモードは、パワーと重量からトラップ速度とETに Huntington の式を適用します。逆の方法は、予測トラップ速度が測定値と一致するまで、馬力入力を調整します。馬力は粗い推定値です。
400メートルの推定は正確か?
これらは実際の数値である。ハンティントンの公式は、トラクション、空力、ギアリング、発射技術、駆動線損失を無視している。実際の車は、数十秒遅れがある。これらをガイドとして扱い、タイムランの代替としては扱わない。
API — コードからこの計算機を使う
この計算機を自由な JSON エンドポイントとして呼び出します。鍵は必要ありません。下のフィールド値をクエリパラメータまたは JSON として送信します。 API ドキュメントを読む →
エンドポイント
GET https://calculator.free/api/v1/horsepower/
curl
curl "https://calculator.free/api/v1/horsepower/?torque=300&rpm=5000&hp=300&weight=3500&_mode=power"
JavaScript fetch()
const r = await fetch(
"https://calculator.free/api/v1/horsepower/?" + new URLSearchParams({
"torque": "300",
"rpm": "5000",
"hp": "300",
"weight": "3500",
"_mode": "power"
}));
const data = await r.json();
console.log(data.results);
結果は一般的な指導のための推定であり,財務的,医療的または税務的なアドバイスではない。