Simple package with common physical unit definitions.
Add this package to your existing python environment with pip
pip install physunits
, or alternatively follow your distribution specific instructions.
An example usage is:
>> from physunits.length import *
>> print(f"{1000 * cm / um:.2f} is how many microns there are in a thousand centimeters")
10000000.00 is how many microns there are in a thousand centimeters
Note that in the above, only the physunits.length
module is imported (new feature in version 1.0.0), so no other untits like time units, or pressure units will be available. It is possible to import all available units, as shown in the following examples. If only a subset of the supported units is desired, manually importing them as
from physunits.length import mm, nm, um
physunits
includes the most widely used unit prefixes, but you can generate other units, for example:
>> from physunits.time_units import s
>> minute = 60 * s
>> hour = 60 * minute
>> day = 24 * hour
>> print(f'There are approximately {365*day / hour} hours in a year.')
There are approximately 8760.0 hours in a year.
Units are simple float
objects meant to make physics code more readable, and physical units more tracktable.
is good enough.
Another example where physunits may be useful is illustrated by the following script dealing with a voltage trace simulation:
import numpy as np
import matplotlib.pyplot as plt
from physunits import *
f = 2.12*kHz
omega = 2*np.pi*f
t = np.linspace(-670*us, 410*us, 2**10)
my_voltage = (1.5*mV) * np.sin(omega*t)
# Now plot voltage in mV vs time in ms
plt.plot(t/ms, my_voltage/mV)
plt.xlabel(r't (ms)')
plt.ylabel(r'V (mV)')
plt.show()
which outputs the following plot:
All units are referenced to the SI. This means that base, derived, freedom (imperial), and other units including prefixes are always relative to the SI base units. An example where this is manifest is that when imported, the unit kg
takes on the numerical value 1.0
, regardless of the prefix indicating the numerical factor of 1000
.
Unit | Supported |
---|---|
length | fm, pm, nm, um, mm, cm, m, km, inch, ft, yd |
time | ps, ns, us, ms, s, minute, hour, day, week |
mass | ng, ug, mg, g, kg, lb, oz |
temperature | nK, uK, mK, K |
angle* | deg, rad, mrad |
frequency | mHz, Hz, kHz, MHz, GHz, THz |
voltage | pV, nV, uV, mV, V, kV |
charge | C, mC, uC, nC |
current | nA, uA, mA, A |
resistance | Ohm, mOhm, kOhm, MOhm, GOhm |
capacitance | F, mF, uF, nF, pF |
inductance | H, mH, uH, nH |
magnetic field strength | T, mT, uT, nT, pT |
energy** | mJ, J, kJ, meV, eV, keV, MeV, GeV, TeV |
power | nW, uW, mW, W, kW, MW |
pressure | mPa, Pa, kPa, MPa, atm, psi, Torr, mBar, Bar |
rel concentration | ppm, ppb |
If you want your favorite unit to be added, please open an issue, or fork and submit a pull request. physunits
is always thriving to improve.
- We all know that if there was an SI unit for angles, it would be the radian, so in
physunits
, it takes the valuerad = 1.0
, and degrees are defined relative to it. This works nicely in all trig functions. Special thanks to chrisjbillington for pointing this out.
** While the electronvolt (eV
) is not a part of the SI, the SI recognizes its use. Furthermore, the latest SI redefinition fixed the value of the electron charge constant, effectively fixing the conversion between eV
and J
.
Please report, fork, test, contribute, or create an issue directly on the project's repository.