Note
Go to the end to download the full example code.
Units manipulation examples
In this example, we show how units can be used in SpectroChemPy
import spectrochempy as scp
Spectrochempy can do calculations with units - it uses [pint](https://pint.readthedocs.io) to define and perform operation on data with units.
Create quantities
To create quantity, use for instance, one of the following expression:
scp.Quantity("10.0 cm^-1")
""
scp.Quantity(1.0, "cm^-1/hour")
or may be simpler using ur
:
ur = scp.ur
10.0 * ur.meter / ur.gram / ur.volt
ur
stands for unit registry, which handle many type of units (and conversion between them)
Units for dataset
When loading experimental dataset using the read
method, units are generally attributed to coordinates and data
ds = scp.read("wodger.spg")[0]
prefs = scp.preferences
prefs.figure.figsize = (7, 3)
ds.plot()

wavenumbers
(x
) coordinates are here expressed in $cm^{-1}$and
data
are in absorbance ($a.u.$) units.
Convert between units
Here are some examples
x = 36 * ur("km/hr")
x.to("cm/s")
We can make the conversion inplace using ito instead of to
x.ito("m/s")
x
Obviously you cannot convert between incompatible units
try:
x.to("hour")
except Exception as e:
scp.error_(e)
# scp.error_(pint.DimensionalityError, e)
This, of course, also applies to NDDataset.
Let’s try for the x
coordinate. It is wavenumber
in $cm^{-1}$ that can be transformed in $Hz$ for instance:

We can also change the wavenumbers (or frequency units), to energy units or wavelength as Spectrochempy (thanks to [pint](https://pint.readthedocs.io)) knows how to make the transformation.

try:
ds.x.ito("nanometer")
except Exception as e:
scp.error_(Exception, e)
ds.x = ds.x.to("nanometer")
ds.x
ds.plot()

absorbance
units (the units of the data)
can also be transformed into transmittance

back into `ansorbance

This ends the example ! The following line can be uncommented if no plot shows when running the .py script with python
# scp.show()
Total running time of the script: (0 minutes 0.642 seconds)