qtty-cpp 0.4.5
Header-only C++ wrapper for qtty
Loading...
Searching...
No Matches
magnetic_flux.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-3-Clause
2// Copyright (C) 2026 Vallés Puig, Ramon
3
4#pragma once
5
6#include "../ffi_core.hpp"
7
8namespace qtty {
9
10struct WeberTag {};
11struct MilliweberTag {};
12
13template <> struct UnitTraits<WeberTag> {
14 static constexpr UnitId unit_id() { return UNIT_ID_WEBER; }
15 static constexpr std::string_view symbol() { return "Wb"; }
16 static constexpr DimensionId dimension() { return DIMENSION_ID_MAGNETIC_FLUX; }
17};
18template <> struct UnitTraits<MilliweberTag> {
19 static constexpr UnitId unit_id() { return UNIT_ID_MILLIWEBER; }
20 static constexpr std::string_view symbol() { return "mWb"; }
21 static constexpr DimensionId dimension() { return DIMENSION_ID_MAGNETIC_FLUX; }
22};
23
26
27} // namespace qtty
constexpr bool is_angular_v
Definition angles.hpp:49
static constexpr DimensionId dimension()
static constexpr std::string_view symbol()
static constexpr UnitId unit_id()
static constexpr DimensionId dimension()
static constexpr std::string_view symbol()
static constexpr UnitId unit_id()