更新20260622
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user