The errors that actually cause damage
Everyone double-checks inches-to-millimetres. The conversions that slip through review are the ones where both numbers are reasonable and only the meaning changed. Three categories cause most of the trouble.
Why it matters in practice
A unit error doesn't announce itself. The spreadsheet runs, the number looks sensible, and it propagates into a datasheet, a purchase order, or a relief valve setpoint. The famous failures — a spacecraft lost to a pound-force vs newton mismatch, a jet that ran out of fuel on a kilograms-vs-pounds slip — weren't math errors. They were unit errors that survived because the result looked fine. Your calculations are the same.
Core concept — three traps
1. Gauge vs absolute pressure
This is the most common one in process work. Gauge pressure (barg, psig) is measured relative to atmosphere; absolute (bara, psia) is measured from vacuum. They differ by about 1 atm (1.013 bar / 14.7 psi).
Gas laws, compressor work, and relief sizing need absolute pressure. Use gauge by mistake at low pressure and you can be off by a large fraction — at 1 barg, treating it as 1 bara doubles the absolute pressure error in a gas-law calculation.
2. Mass vs force (the lbm / lbf trap)
SI keeps these clean: kilograms are mass, newtons are force, and
F = ma with no fudge factor. Imperial blurs them — "pound" can
mean pound-mass or pound-force, and bridging them needs the constant
gc (32.174 lbm·ft / lbf·s²). Drop
gc and your force is off by a factor of ~32.
gc,
so the whole class of error disappears.
3. Temperature — difference vs absolute
For a temperature difference, °C and K are interchangeable (a 10 °C rise is a 10 K rise). For anything with absolute temperature in it — gas laws, thermal efficiency — you must convert to kelvin or rankine first. And °C ↔ °F is the one conversion with an offset (+32), not just a scale factor, so it's easy to get backwards.
Design guidance — best practices
- Carry units through every line. Don't write bare numbers. If the units don't cancel to what you expect, you've found a bug.
- Pick one system and convert at the boundaries. Do the work in SI; convert inputs in and results out. Don't mix mid-calculation.
- Label pressure as gauge or absolute, every time. "5 bar" is ambiguous. "5 barg" is not.
- Sanity-check the magnitude. Know what a reasonable answer looks like. A pump head of 3000 m should stop you cold.
- Watch the squared and cubed terms. An area conversion is the length factor squared; volume is cubed. Errors there are large.
Conversions worth memorizing
| Quantity | Conversion |
|---|---|
| Pressure | 1 bar = 14.50 psi = 100 kPa |
| Atmosphere | 1 atm = 1.013 bar = 14.70 psi |
| Length | 1 in = 25.4 mm (exact) |
| Mass | 1 kg = 2.205 lb |
| Flow | 1 m³/h = 4.403 US gpm |
| Temperature | °F = 1.8 × °C + 32 |
| Power | 1 hp = 0.746 kW |
Common mistakes
- Gauge where absolute is needed. The classic relief-sizing and gas-law error.
- Dropping gc in imperial. A ~32× force error hiding in plain sight.
- °C in a gas law. Absolute temperature means kelvin or rankine, not celsius or fahrenheit.
- Mixing units mid-calculation. Density in kg/m³ with velocity in ft/s gives nonsense.
- Forgetting to square/cube the factor on areas and volumes.
The unit errors that survive review aren't bad conversions — they're the right number with the wrong meaning: gauge for absolute, mass for force, celsius for kelvin. Carry units through every line, work in one system and convert only at the boundaries, and always sanity-check the magnitude.