Physical Units and Quantities for Python
Project description
SciNumTools v3
Physical units and quantities for Python (pypuq)
This module is a Python binding of the C++ library scnt-puq.
You can read more about this module and its functionality in the SciNumTool documentation.
Installation
To start, one has to install the scnt-puq library.
On macOS this can be easily done using homebrew formula:
brew tap vrtulka23/scinumtools
brew install vrtulka23/scinumtools/scnt-puq
After that, one can proceed with the usual PyPi installation:
pip3 install pypuq
Examples of use
As already mentioned, pypuq is a binding to the standalone C++ library scnt-puq.
Therefore, pypuq inherits all its usual functionality.
However, the Python interface of exposed classes (Quantity, UnitSystem) is slightly adapted.
>>> from pypuq import Quantity
>>>
>>> q = Quantity(16, 'm')
>>> r = Quantity(223, 's')
>>> speed = (q/r).convert('mph')
0.0717489*m*s-1
More examples and explanation are available in the SciNumTools documentation.
You can also look at the test problems in the pytest directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pypuq-1.3.9.tar.gz.
File metadata
- Download URL: pypuq-1.3.9.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91907fb3e83b1218a443ecdc6c3c5dd1f314e2e9a045634a30dcbf59109bc2ed
|
|
| MD5 |
1f5d6102e9a97fdc0fd36e0677afdfb5
|
|
| BLAKE2b-256 |
26d89487d964ec648d583abedd9b3eb59846838dd2140086a3e822684df87f2f
|