更新20260622

This commit is contained in:
GukSang.Jin
2026-06-22 10:16:43 +08:00
parent 7158942669
commit a4f4fdd007
3 changed files with 143 additions and 43 deletions

View File

@@ -12,7 +12,11 @@ namespace Footwear_Test_methodsfor_wholeshoe_Slipresistanceperformance.Models
bool IsConnected,
string LastError)
{
public double FrictionCoefficient => Math.Abs(VerticalLoadN) > 0.0001
// 低载荷段(加载/抬升阶段垂直力很小H/V 会放大成无意义尖峰(现场曲线冲到 1.4)。
// GB/T 3903.6 初始压力为 50N载荷低于该量级时摩擦系数无意义置零以保证曲线干净。
public const double MinimumLoadForCoefficientN = 30.0;
public double FrictionCoefficient => Math.Abs(VerticalLoadN) >= MinimumLoadForCoefficientN
? HorizontalFrictionN / VerticalLoadN
: 0;