Files
BiJi/表格/容积计算.md
LL d1bea99bce fix(表格): 修正Excel容积计算公式的单位转换
在Excel公式中添加除以1000的运算,将结果从mm³转换为cm³(毫升)
2025-12-04 10:17:23 +08:00

6 lines
782 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
圆柱形容积计算公式为 V = π × (D/2)² × L其中 D 为内径L 为长度)。对于内径 2 mm、长度 1000 mm 的容器,容积为 3.14 毫升。
在 Excel 中,假设内径 D 值位于单元格 A2、长度 L 值位于单元格 B2则容积计算公式为
=PI() * POWER(A2/2, 2) * B2 / 1000
此公式直接对应 V = π × (D/2)² × L其中 PI() 表示圆周率 π(约 3.1416POWER(A2/2, 2) 计算半径的平方。
单位转换:结果 3141.6 mm³ 等于 3.14 cm³因为 1 cm³ = 1000 mm³即 3.14 毫升。
核心依据该公式适用于圆柱形或管道类容器内径恒定且充满介质12。若容器未完全充满介质需引入填充系数 φ0 < φ ≤ 1公式调整为 =PI() * POWER(A2/2, 2)* B2 * φ。