Physical Units and Quantities for Python
Project description
Physical units and quantities for Python
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 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.6.tar.gz
.
File metadata
- Download URL: pypuq-1.3.6.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 | 57cfa36dbad76b240941be30acd3f571d4ac17e505f0aaba415d8bd0090ef23c |
|
MD5 | 6b76e4a071bbed7eb5727b1929e5d4a2 |
|
BLAKE2b-256 | 88987f765105c6a32b5d3897448b0bba67130c54bc270cb76107fd6770d525b1 |