Added 9 Columns
PopulateCalculated Removed Open Insight API IFX Directory yml ec fix v2_52_0-Tests editorconfig net8.0 mesfs.infineon.com Infineon.EAF.Runtime 2.49.3 pool name Kanban
This commit is contained in:
@ -90,6 +90,25 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
//
|
||||
public string Variation { get; set; }
|
||||
public string AreaDeltaFromLastRun { get; set; }
|
||||
//
|
||||
public string Nine10mmEdgeMean { get; set; }
|
||||
public string Nine4mmEdgeMean { get; set; }
|
||||
public string NineCriticalPointsAverage { get; set; }
|
||||
public string NineCriticalPointsPhaseAngleAverage { get; set; }
|
||||
public string NineCriticalPointsStdDev { get; set; }
|
||||
public string NineEdgeMeanDelta { get; set; }
|
||||
public string NineMean { get; set; }
|
||||
public string NineResRangePercent { get; set; }
|
||||
//
|
||||
public string RhoAvg01 { get; set; }
|
||||
public string RhoAvg02 { get; set; }
|
||||
public string RhoAvg03 { get; set; }
|
||||
public string RhoAvg04 { get; set; }
|
||||
public string RhoAvg05 { get; set; }
|
||||
public string RhoAvg06 { get; set; }
|
||||
public string RhoAvg07 { get; set; }
|
||||
public string RhoAvg08 { get; set; }
|
||||
public string RhoAvg09 { get; set; }
|
||||
|
||||
string IDescription.GetEventDescription() => "File Has been read and parsed";
|
||||
|
||||
@ -196,6 +215,15 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
nameof(VdStdDev),
|
||||
nameof(Variation),
|
||||
nameof(AreaDeltaFromLastRun),
|
||||
//
|
||||
nameof(Nine10mmEdgeMean),
|
||||
nameof(Nine4mmEdgeMean),
|
||||
nameof(NineCriticalPointsAverage),
|
||||
nameof(NineCriticalPointsPhaseAngleAverage),
|
||||
nameof(NineCriticalPointsStdDev),
|
||||
nameof(NineEdgeMeanDelta),
|
||||
nameof(NineMean),
|
||||
nameof(NineResRangePercent),
|
||||
};
|
||||
return results;
|
||||
}
|
||||
@ -247,7 +275,7 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
List<IDescription> IDescription.GetDescriptions(IFileRead fileRead, Logistics logistics, List<Test> tests, IProcessData iProcessData)
|
||||
{
|
||||
List<IDescription> results = new();
|
||||
if (iProcessData is null || !iProcessData.Details.Any() || iProcessData is not ProcessData processData)
|
||||
if (iProcessData is null || iProcessData.Details.Count == 0 || iProcessData is not ProcessData processData)
|
||||
results.Add(GetDefault(fileRead, logistics));
|
||||
else
|
||||
{
|
||||
@ -343,6 +371,25 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
VdStdDev = processData.VdStdDev,
|
||||
Variation = string.Empty,
|
||||
AreaDeltaFromLastRun = string.Empty,
|
||||
//
|
||||
Nine10mmEdgeMean = processData.Nine10mmEdgeMean,
|
||||
Nine4mmEdgeMean = processData.Nine4mmEdgeMean,
|
||||
NineCriticalPointsAverage = processData.NineCriticalPointsAverage,
|
||||
NineCriticalPointsPhaseAngleAverage = processData.NineCriticalPointsPhaseAngleAverage,
|
||||
NineCriticalPointsStdDev = processData.NineCriticalPointsStdDev,
|
||||
NineEdgeMeanDelta = processData.NineEdgeMeanDelta,
|
||||
NineMean = processData.NineMean,
|
||||
NineResRangePercent = processData.NineResRangePercent,
|
||||
//
|
||||
RhoAvg01 = iProcessData.Details.Count < 1 || iProcessData.Details[0] is not Detail rhoAvg01 ? string.Empty : rhoAvg01.RhoAvg,
|
||||
RhoAvg02 = iProcessData.Details.Count < 2 || iProcessData.Details[1] is not Detail rhoAvg02 ? string.Empty : rhoAvg02.RhoAvg,
|
||||
RhoAvg03 = iProcessData.Details.Count < 3 || iProcessData.Details[2] is not Detail rhoAvg03 ? string.Empty : rhoAvg03.RhoAvg,
|
||||
RhoAvg04 = iProcessData.Details.Count < 4 || iProcessData.Details[3] is not Detail rhoAvg04 ? string.Empty : rhoAvg04.RhoAvg,
|
||||
RhoAvg05 = iProcessData.Details.Count < 5 || iProcessData.Details[4] is not Detail rhoAvg05 ? string.Empty : rhoAvg05.RhoAvg,
|
||||
RhoAvg06 = iProcessData.Details.Count < 6 || iProcessData.Details[5] is not Detail rhoAvg06 ? string.Empty : rhoAvg06.RhoAvg,
|
||||
RhoAvg07 = iProcessData.Details.Count < 7 || iProcessData.Details[6] is not Detail rhoAvg07 ? string.Empty : rhoAvg07.RhoAvg,
|
||||
RhoAvg08 = iProcessData.Details.Count < 8 || iProcessData.Details[7] is not Detail rhoAvg08 ? string.Empty : rhoAvg08.RhoAvg,
|
||||
RhoAvg09 = iProcessData.Details.Count < 9 || iProcessData.Details[8] is not Detail rhoAvg09 ? string.Empty : rhoAvg09.RhoAvg,
|
||||
};
|
||||
results.Add(description);
|
||||
}
|
||||
@ -439,6 +486,25 @@ public class Description : IDescription, Shared.Properties.IDescription
|
||||
VdStdDev = nameof(VdStdDev),
|
||||
Variation = nameof(Variation),
|
||||
AreaDeltaFromLastRun = nameof(AreaDeltaFromLastRun),
|
||||
//
|
||||
Nine10mmEdgeMean = nameof(Nine10mmEdgeMean),
|
||||
Nine4mmEdgeMean = nameof(Nine4mmEdgeMean),
|
||||
NineCriticalPointsAverage = nameof(NineCriticalPointsAverage),
|
||||
NineCriticalPointsPhaseAngleAverage = nameof(NineCriticalPointsPhaseAngleAverage),
|
||||
NineCriticalPointsStdDev = nameof(NineCriticalPointsStdDev),
|
||||
NineEdgeMeanDelta = nameof(NineEdgeMeanDelta),
|
||||
NineMean = nameof(NineMean),
|
||||
NineResRangePercent = nameof(NineResRangePercent),
|
||||
//
|
||||
RhoAvg01 = nameof(RhoAvg01),
|
||||
RhoAvg02 = nameof(RhoAvg02),
|
||||
RhoAvg03 = nameof(RhoAvg03),
|
||||
RhoAvg04 = nameof(RhoAvg04),
|
||||
RhoAvg05 = nameof(RhoAvg05),
|
||||
RhoAvg06 = nameof(RhoAvg06),
|
||||
RhoAvg07 = nameof(RhoAvg07),
|
||||
RhoAvg08 = nameof(RhoAvg08),
|
||||
RhoAvg09 = nameof(RhoAvg09),
|
||||
};
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user