Thickness01-Thickness14

v2_52_0-Tests
editorconfig
net8.0
This commit is contained in:
2023-12-04 13:29:04 -07:00
parent e16ddf8813
commit 376dfb4415
33 changed files with 799 additions and 154 deletions

View File

@ -48,7 +48,6 @@ public partial class ProcessData : IProcessData
public string ThicknessFourteenCriticalPointsAverage { get; set; }
public string ThicknessFourteenCriticalPointsStdDev { get; set; }
public string ThicknessFourteenMeanFrom { get; set; }
public string ThicknessFourteenPoints { get; set; }
List<object> Shared.Properties.IProcessData.Details => _Details;
@ -360,7 +359,6 @@ public partial class ProcessData : IProcessData
}
if (thicknessPoints.Count != 14)
{
ThicknessFourteenPoints = string.Empty;
ThicknessFourteenMeanFrom = string.Empty;
ThicknessFourteenCenterMean = string.Empty;
ThicknessFourteen3mmEdgeMean = string.Empty;
@ -372,7 +370,6 @@ public partial class ProcessData : IProcessData
}
else
{
ThicknessFourteenPoints = string.Join(",", thicknessPoints);
ReadOnlyCollection<double> thicknessTenPoints = new(thicknessPoints.Take(10).ToArray());
double thicknessFourteenCriticalPointsAverage = thicknessTenPoints.Average(); // 15
double thicknessFourteenCriticalPointsStdDev = StandardDeviation(thicknessTenPoints); // 16