Pressure
The Pressure category supports conversions between Pascal, Kilopascal, Bar, PSI, and standard atmosphere.
Supported Units
Section titled “Supported Units”- Pascal
Pa - Kilopascal
kPa - Bar
bar - PSI
psi - Standard Atmosphere
atm
Quick Example
Section titled “Quick Example”import { Conversion } from "@devhaven/unit-conversion";
const convert = new Conversion();
convert.value(100).from("pascal").to("kilopascal");convert.value(1).from("kilopascal").to("pascal");Common Conversions
Section titled “Common Conversions”Pascal ↔ Bar
Section titled “Pascal ↔ Bar”convert.value(1).from("pascal").to("bar");convert.value(1).from("bar").to("pascal");Kilopascal ↔ PSI
Section titled “Kilopascal ↔ PSI”convert.value(1).from("kilopascal").to("psi");convert.value(1).from("psi").to("kilopascal");Bar ↔ PSI
Section titled “Bar ↔ PSI”convert.value(1).from("bar").to("psi");convert.value(1).from("psi").to("bar");