Force
The force category supports conversions between Newton, Dyne, Poundal, Pound-Force, and Kilogram-Force.
Supported Units
Section titled “Supported Units”- Newton
N - Dyne
dyn - Poundal
pdl - Pound-Force
lbf - Kilogram-Force
kgf
Quick Example
Section titled “Quick Example”import { Conversion } from "@devhaven/unit-conversion";
const convert = new Conversion();
convert.value(10).from("newton").to("dyne");convert.value(5000).from("dyne").to("newton");Common Conversions
Section titled “Common Conversions”Newton ↔ Kilogram-Force
Section titled “Newton ↔ Kilogram-Force”convert.value(1).from("newton").to("kilogram-force");convert.value(1).from("kilogram-force").to("newton");Newton ↔ Pound-Force
Section titled “Newton ↔ Pound-Force”convert.value(1).from("newton").to("pound-force");convert.value(1).from("pound-force").to("newton");