From 6004fa192af9fcd7e04e35e1f6a67d4afb714ff9 Mon Sep 17 00:00:00 2001 From: Mike Ford Date: Fri, 26 Mar 2021 21:32:59 +0000 Subject: [PATCH] fix: corrected old names in si::constants substance -> amount_of_substance temperature -> thermodynamic_temperature --- src/systems/si/include/units/isq/si/constants.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/systems/si/include/units/isq/si/constants.h b/src/systems/si/include/units/isq/si/constants.h index 44420e98..ceda7eb6 100644 --- a/src/systems/si/include/units/isq/si/constants.h +++ b/src/systems/si/include/units/isq/si/constants.h @@ -42,10 +42,10 @@ template inline constexpr auto elementary_charge = electric_charge(1.602176634e-19); template -inline constexpr auto boltzmann_constant = energy(1.380649e-23) / temperature(1); +inline constexpr auto boltzmann_constant = energy(1.380649e-23) / thermodynamic_temperature(1); template -inline constexpr auto avogadro_constant = Rep(6.02214076e23) / substance(1); +inline constexpr auto avogadro_constant = Rep(6.02214076e23) / amount_of_substance(1); template inline constexpr auto speed_of_light = speed(299'792'458);