2023-07-11 15:40:23 +02:00
|
|
|
---
|
|
|
|
|
tags:
|
|
|
|
|
- International System
|
2023-08-30 17:42:23 +02:00
|
|
|
- Text Formatting
|
2023-07-11 15:40:23 +02:00
|
|
|
---
|
|
|
|
|
|
2023-06-22 18:22:41 +02:00
|
|
|
# `hello_units`
|
|
|
|
|
|
2023-09-13 08:58:17 +02:00
|
|
|
!!! example "[Try it on Compiler Explorer](https://godbolt.org/z/Tsesa1Pvq)"
|
2023-07-11 15:49:04 +02:00
|
|
|
|
2023-06-22 18:22:41 +02:00
|
|
|
This is a really simple example showcasing the features of the **mp-units** library.
|
|
|
|
|
|
|
|
|
|
First, we include the headers for:
|
|
|
|
|
|
|
|
|
|
- a system of quantities (ISQ)
|
|
|
|
|
- symbols of SI units
|
|
|
|
|
- symbols of international units
|
|
|
|
|
- text and stream output support
|
|
|
|
|
|
2023-08-30 17:42:23 +02:00
|
|
|
```cpp title="hello_units.cpp" linenums="1"
|
|
|
|
|
--8<-- "example/hello_units.cpp:28:33"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Also, to shorten the definitions, we "import" `mp_units` namespace.
|
|
|
|
|
|
2023-06-22 18:22:41 +02:00
|
|
|
```cpp title="hello_units.cpp" linenums="7"
|
|
|
|
|
--8<-- "example/hello_units.cpp:35:36"
|
|
|
|
|
```
|
|
|
|
|
|
2023-08-30 17:42:23 +02:00
|
|
|
Next we define a simple function that calculates average speed based on the provided
|
|
|
|
|
arguments of length and time:
|
2023-06-22 18:22:41 +02:00
|
|
|
|
|
|
|
|
```cpp title="hello_units.cpp" linenums="8"
|
|
|
|
|
--8<-- "example/hello_units.cpp:37:40"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The above function template takes any quantities implicitly convertible to `isq::length`
|
2023-08-30 17:42:23 +02:00
|
|
|
and `isq::time` respectively. Those quantities can use any compatible unit and a
|
|
|
|
|
representation type. The function returns a result of a really simple equation and ensures
|
|
|
|
|
that its quantity type is implicitly convertible to `isq::speed`.
|
2023-06-22 18:22:41 +02:00
|
|
|
|
2023-08-30 17:42:23 +02:00
|
|
|
!!! tip
|
2023-06-22 18:22:41 +02:00
|
|
|
|
|
|
|
|
Besides verifying the type returned from the function, constraining a generic return
|
|
|
|
|
type is really useful for users of such a function as it provides more information
|
|
|
|
|
of what to expect from a function than just using `auto`.
|
|
|
|
|
|
|
|
|
|
```cpp title="hello_units.cpp" linenums="12"
|
|
|
|
|
--8<-- "example/hello_units.cpp:42:45"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The above lines explicitly opt-in to use unit symbols from two systems of units.
|
|
|
|
|
As this introduces a lot of short identifiers into the current scope, it is not done
|
|
|
|
|
implicitly while including a header file.
|
|
|
|
|
|
|
|
|
|
```cpp title="hello_units.cpp" linenums="16"
|
|
|
|
|
--8<-- "example/hello_units.cpp:47:53"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- Lines `16` & `17` create a quantity of kind `isq::length / isq::time` with the numbers
|
|
|
|
|
and units provided. Such quantities can be converted or assigned to any other quantity
|
|
|
|
|
with a matching kind.
|
|
|
|
|
- Line `18` calls our function template with quantities of kind `isq::length` and
|
|
|
|
|
`isq::time` and number and units provided.
|
2023-08-30 17:42:23 +02:00
|
|
|
- Line `19` explicitly provides quantity types of the quantities passed to a function template.
|
|
|
|
|
This time those will not be quantity kinds anymore and will have
|
|
|
|
|
[more restrictive conversion rules](../framework_basics/simple_and_typed_quantities.md#quantity_cast-to-force-unsafe-conversions).
|
|
|
|
|
- Line `20` changes the unit of a quantity `v3` to `m / s` in a
|
|
|
|
|
[value-preserving way](../framework_basics/value_conversions.md#value-preserving-conversions)
|
2023-06-22 18:22:41 +02:00
|
|
|
(floating-point representations are considered to be value-preserving).
|
2023-08-30 17:42:23 +02:00
|
|
|
- Line `21` does a similar operation but this time it would succeed also for
|
|
|
|
|
[value-truncating cases](../framework_basics/value_conversions.md#value-truncating-conversions)
|
|
|
|
|
(if it was the case).
|
|
|
|
|
- Line `22` does a [value-truncating conversion](../framework_basics/value_conversions.md#value-truncating-conversions)
|
|
|
|
|
of changing the underlying representation type from `double` to `int`.
|
2023-06-22 18:22:41 +02:00
|
|
|
|
|
|
|
|
```cpp title="hello_units.cpp" linenums="23"
|
|
|
|
|
--8<-- "example/hello_units.cpp:55"
|
|
|
|
|
```
|
|
|
|
|
|
2023-08-30 17:42:23 +02:00
|
|
|
The above presents [various ways to print a quantity](../framework_basics/text_output.md).
|
|
|
|
|
Both stream insertion operations and `std::format` are supported.
|
2023-06-22 18:22:41 +02:00
|
|
|
|
2023-08-30 17:42:23 +02:00
|
|
|
!!! tip
|
2023-06-22 18:22:41 +02:00
|
|
|
|
|
|
|
|
`MP_UNITS_STD_FMT` is used for compatibility reasons. In case a specific compiler
|
|
|
|
|
does not support `std::format` or a user prefers to use `{fmt}` library, this macro
|
|
|
|
|
will resolve to `fmt` namespace. Otherwise, `std` namespace will be used.
|