We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2df012 commit d116e7fCopy full SHA for d116e7f
1 file changed
quantities/units/pressure.py
@@ -24,6 +24,11 @@
24
symbol='Pa',
25
aliases=['pascals']
26
)
27
+hPa = hectopascal = UnitQuantity(
28
+ 'hectopascal',
29
+ 100*Pa,
30
+ symbol='hPa',
31
+)
32
kPa = kilopascal = UnitQuantity(
33
'kilopascal',
34
1000*Pa,
@@ -47,6 +52,11 @@
47
52
100000*pascal,
48
53
aliases=['bars']
49
54
55
+mb = millibar = UnitQuantity(
56
+ 'millibar',
57
+ 0.001*bar,
58
+ symbol='mb',
59
50
60
kbar = kilobar = UnitQuantity(
51
61
'kilobar',
62
1000*bar,
0 commit comments