From cd73fd40ffc04a65abe0260fe82949d7c354e282 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sun, 2 Mar 2025 12:18:34 -0500 Subject: add inHG pressure unit --- unit.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'unit.h') diff --git a/unit.h b/unit.h index 4e22a35..520285b 100644 --- a/unit.h +++ b/unit.h @@ -27,11 +27,13 @@ Pressure millibar(double x); Pressure kilopascal(double x); Pressure bar(double x); Pressure psi(double x); +Pressure inch_mercury(double x); double as_pascal(Pressure x); double as_millibar(Pressure x); double as_kilopascal(Pressure x); double as_bar(Pressure x); double as_psi(Pressure x); +double as_inch_mercury(Pressure x); typedef double Temperature; -- cgit v1.2.3