From 0603113ba27cc00dace33eae05752b789477ff2b Mon Sep 17 00:00:00 2001 From: David Carter Date: Thu, 29 May 2025 22:53:23 -0400 Subject: [PATCH] Core: Fix Thermal Conductivity units conversion It appears that unit conversions for thermal conductivity were reversed when migrating to the new system versus conversions in 1.0 and earlier. --- src/Base/UnitsSchemasData.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Base/UnitsSchemasData.h b/src/Base/UnitsSchemasData.h index fc24d7c3f2..8f937c1a50 100644 --- a/src/Base/UnitsSchemasData.h +++ b/src/Base/UnitsSchemasData.h @@ -121,8 +121,8 @@ inline const UnitsSchemaSpec s3 { 0 , "kg/mm^3" , 1.0 }} }, { "ThermalConductivity", { - { 1e6 , "W/m/K" , 1e6 }, - { 0 , "W/mm/K" , 1e3 }} + { 0 , "W/m/K" , 1e3 }, + { 1e6 , "W/mm/K" , 1e6 }} }, { "ThermalExpansionCoefficient", { { 1e-3 , "\xC2\xB5m/m/K" , 1e-6 },