From f379e6125547fe2738b5b507bfef59cd75e36cff Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Mon, 2 Jul 2018 09:03:16 +0200 Subject: [PATCH] Material: material properties, add some links as comments --- src/Mod/Material/Material.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Mod/Material/Material.py b/src/Mod/Material/Material.py index 91110fa62d..4cdb9bcf0f 100644 --- a/src/Mod/Material/Material.py +++ b/src/Mod/Material/Material.py @@ -116,18 +116,18 @@ def getMaterialAttributeStructure(withSpaces=None): "SpecificPrice" )), ("Mechanical", ( - "YoungsModulus", - "PoissonRatio", - "UltimateTensileStrength", - "CompressiveStrength", - "YieldStrength", + "YoungsModulus", # https://en.wikipedia.org/wiki/Young%27s_modulus + "PoissonRatio", # https://en.wikipedia.org/wiki/Poisson%27s_ratio + "UltimateTensileStrength", # https://en.wikipedia.org/wiki/Ultimate_tensile_strength + "CompressiveStrength", # https://en.wikipedia.org/wiki/Compressive_strength + "YieldStrength", # https://en.wikipedia.org/wiki/Yield_Strength "Elasticity", - "FractureToughness" + "FractureToughness" # https://en.wikipedia.org/wiki/Fracture_toughness )), ("Thermal", ( - "ThermalConductivity", - "ThermalExpansionCoefficient", - "SpecificHeat" + "ThermalConductivity", # https://en.wikipedia.org/wiki/Thermal_conductivity + "ThermalExpansionCoefficient", # https://en.wikipedia.org/wiki/Volumetric_thermal_expansion_coefficient + "SpecificHeat" # https://en.wikipedia.org/wiki/Heat_capacity )), ("Architectural", ( "Model",