理想気体の法則計算機
圧力,体積,温度の単位で,任意の変数に対してPV=nRTを解く。
結果はタイプすると更新されます。
この計算機の情報
the ideal gas law, the volume of a gas is equal to the volume of the gas itself. The ideal gas law is a law that describes the state of a gas in a given temperature and pressure. The ideal gas law is a law that describes the state of a gas in a given temperature and pressure. The ideal gas law is a law that describes the state of a gas in a given temperature and pressure. The ideal gas law is a law that describes the state of a gas in a given temperature and pressure. The ideal gas law is a law that describes the state of a gas in a given temperature and
よくある質問
理想気体の法則は何である?
理想気体の圧力,体積,モル数,温度を定数R=8.314J/(mol.K)で結びつけるPV=nRTを,任意の単一変数に対して解くために再配列した。
正しい単位は何ですか。
内部ではすべて SI 単位であるパスカル、立方メートル、モル、ケルビンで R = 8.314 です。0 ℃ (273.15 K) で 1 atm の気体の 1 モルは 約 22.4 L (0.0224 m³) を占めます。好きな単位を入力して、計算機が自動的に変換します。
なぜ温度はケルビンでなければならないのか。
PV = nRT は絶対温度を使用します。0 K は絶対零度です。セルシウスとファーレンハイトは任意のゼロを持っています。°C を直接入力すると間違った答えになります。°C に 273.15 を加えてケルビンを得ます。計算機は自動的にこれを行います。
STPとモル体積とは何か。
標準温度と圧力は通常0°Cと1atmであり、理想気体の1モルは約22.4リットルを占める。この「モル体積」は便利なチェックポイントである。この条件に近い1モルの結果が22.4Lから遠い場合は、単位を再確認してください。
理想気体の法則はいつ崩壊する?
これは中圧,沸点以上の温度で非常に正確であるが,分子量と吸引が重要な高圧,凝縮近傍では不正確になる。
1つの変数を変えることで他の変数にどのような影響が生じるかを調べた。
密閉容器を加熱すると,圧力はケルビン温度に比例して上昇する。
どの値のRを使うべきか?
SI では 8.314 J/(mol·K) であり、リットル大気では 0.08206 L·atm/(mol·K) です。この計算機は SI 内部で R = 8.314 を使っています。任意の単位を入力して調整します。
API — コードからこの計算機を使う
この計算機を自由な JSON エンドポイントとして呼び出します。鍵は必要ありません。下のフィールド値をクエリパラメータまたは JSON として送信します。 API ドキュメントを読む →
エンドポイント
GET https://calculator.free/api/v1/ideal-gas-law/
curl
curl "https://calculator.free/api/v1/ideal-gas-law/?solve=volume&pressure=1&pressure_unit=atm&volume=22.4&volume_unit=l&moles=1&temperature=273.15&temperature_unit=k"
JavaScript fetch()
const r = await fetch(
"https://calculator.free/api/v1/ideal-gas-law/?" + new URLSearchParams({
"solve": "volume",
"pressure": "1",
"pressure_unit": "atm",
"volume": "22.4",
"volume_unit": "l",
"moles": "1",
"temperature": "273.15",
"temperature_unit": "k"
}));
const data = await r.json();
console.log(data.results);
結果は一般的な指導のための推定であり,財務的,医療的または税務的なアドバイスではない。