From fc30bb38dce37fc592a3ec75fccc0b2c80384ab6 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Mon, 15 May 2023 13:34:01 +0200 Subject: [PATCH] style: whitespaces fixed to make pre-commit happy --- docs/defining_systems/angular_units.rst | 2 +- docs/defining_systems/si.rst | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/defining_systems/angular_units.rst b/docs/defining_systems/angular_units.rst index 9cfdeda4..8574efb6 100644 --- a/docs/defining_systems/angular_units.rst +++ b/docs/defining_systems/angular_units.rst @@ -63,7 +63,7 @@ Angular quantities in the :term:`SI` ------------------------------------ Even though the :term:`SI` somehow ignores the dimensionality of angle: - + Plane and solid angles, when expressed in radians and steradians respectively, are in effect also treated within the SI as quantities with the unit one. The symbols :math:`rad` and :math:`sr` are written explicitly where appropriate, in order to emphasize that, for radians or diff --git a/docs/defining_systems/si.rst b/docs/defining_systems/si.rst index 896a9ed2..22706e39 100644 --- a/docs/defining_systems/si.rst +++ b/docs/defining_systems/si.rst @@ -201,28 +201,28 @@ Defining constants Those constants are provided in the *units/isq/si/constants.h* header file as:: namespace units::isq::si::si2019 { - + template inline constexpr auto hyperfine_structure_transition_frequency = frequency(Rep{9'192'631'770}); - + template inline constexpr auto speed_of_light = speed(299'792'458); - + template inline constexpr auto planck_constant = energy(6.62607015e-34) * time(1); - + template inline constexpr auto elementary_charge = electric_charge(1.602176634e-19); - + template inline constexpr auto boltzmann_constant = energy(1.380649e-23) / thermodynamic_temperature(1); - + template inline constexpr auto avogadro_constant = Rep(6.02214076e23) / amount_of_substance(1); - + template inline constexpr auto luminous_efficacy = luminous_flux(683) / power(1); - + } .. note::