SI 2.5.4
A header only c++ library that provides type safety and user defined literals for handling physical values defined in the International System of Units.
Loading...
Searching...
No Matches
flow.h
Go to the documentation of this file.
1
12#pragma once
13
15
16#include "area.h"
17#include "time.h"
18
19namespace SI {
20
21template <typename _type, typename _ratio>
22using surface_flow_t = detail::unit_t<'s', std::ratio<1>, _type, _ratio>;
23
24namespace detail {
26
27}
28
29template <typename _type, typename _ratio>
30using volumetric_flow_t = detail::unit_t<'V', std::ratio<1>, _type, _ratio>;
31
32namespace detail {
34
35}
36
37} // namespace SI
Definition absorbed_dose.h:18
#define BUILD_UNIT_FROM_DIVISION(RESULTING_UNIT_T, DIVIDEND_UNIT_T, DIVISOR_UNIT_T)
Definition operator_helpers.h:22
base template class for holding values of type _type to be multiplied with a ratio _ratio
Definition unit.h:51