Crates.io | joto_constants |
lib.rs | joto_constants |
version | 0.2.0 |
created_at | 2024-11-01 20:21:35.613494+00 |
updated_at | 2025-09-10 00:08:32.002905+00 |
description | Constants for interoperation between US Customary and SI units. |
homepage | |
repository | https://github.com/xorgy/joto |
max_upload_size | |
id | 1432281 |
size | 36,726 |
Here we set out to interoperate US Customary and SI units of length/displacement, mass, and temperature, while preserving invertibility, avoiding uncontrolled precision loss, and replacing structured unit types ― which are tricky to store or compute efficiently ― with plain integers.
This is accomplished by defining common base units for length, mass, and temperature, which can be used to express US customary units and SI units in the same scale for each domain.
For length, there is the iota, defined as 1⁄9 nm.
This allows common fractions of an inch (ten-thousandths, desktop publishing points, and sixty-fourths) and multiples of the nanometer to be represented as natural numbers.
For mass, there is the whit, defined as 1⁄3200 µg.
The whit is chosen to express practically measurable weights (down to the 0.1 µg range) as well as all common fractional denominations of the international pound (ounces, dram, thousandths of an ounce, grains) and units related to the pound by grains (such as the troy ounce).
For temperature, there is the smidge, defined as 1⁄90 mK.
The smidge represents temperatures down to the 100 µK/0.0001 °R range, which is sufficient for almost all practical thermometry. This also allows you to exactly represent temperatures used in industrial metrology standards such as ITS-90 for fixed points and common derived constants, and allows exact interchange between common absolute (Kelvin/Rankine) and relative (Celsius/Fahrenheit) temperature scales.
The temperature
module deliberately avoids defining incremental units of temperature by their relative scale names, to remind users to account for the difference in origin/zero point between Fahrenheit and Celsius.
This version of joto_constants
has been verified to compile with Rust 1.64 and later.
Future versions might increase the Rust version requirement. It will not be treated as a breaking change, and as such can even happen with small patch releases.
Licensed under
at your option.
Contributions are welcome by pull request. Please feel free to add your name to the AUTHORS file in any substantive pull request.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed above, without any additional terms or conditions.