Files
DP44/Common/DTS.CommonCore/.svn/pristine/f2/f28d4c01ecedc54ee24dc3b88f3d221e5c580834.svn-base

68 lines
2.2 KiB
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using System.Windows.Media;
using DTS.Common.Base;
// ReSharper disable CheckNamespace
namespace DTS.Common.Interface
{
public interface ITestDataSeries : IBaseModel
{
string TestGroup { get; set; }
string TestSetupName { get; set; }
string TestId { get; set; }
string ChannelId { get; set; }
double[] Xvalue { get; set; }
double[] Yvalue { get; set; }
Brush GraphColor { get; set; }
string HardwareChannel { get; set; }
string Bridge { get; set; }
string GroupName { get; set; }
string SWAAF { get; set; }
string HWAAF { get; set; }
string SampleRate { get; set; }
string ISOCode { get; set; }
string ISOChannelName { get; set; }
string UserCode { get; set; }
string UserChannelName { get; set; }
string ChannelName { get; set; }
string Description { get; }
string SensorSN { get; set; }
string SensorSNDisplay { get; }
string EngineeringUnits { get; set; }
string Excitation { get; set; }
string Polarity { get; set; }
string MinY { get; }
string MaxY { get; }
string AvgY { get; }
string StdDevY { get; }
string T0EUValue { get; }
/// <summary>
/// represents the peak frequency in series according to
/// magnitude
/// only populated when FFT is true
/// </summary>
double PeakFrequency { get; }
/// <summary>
/// represents the peak magnitude of frequencies in data set
/// only populated when FFT is true
/// </summary<
double PeakMagnitude { get; }
string RecordingMode { get; set; }
bool HIC { get; }
string HICValue { get; }
string T1Time { get; }
string T2Time { get; }
/// <summary>
/// is true if the series is an FFT of signal data
/// </summary>
bool FFT { get; }
/// <summary>
/// holds the root-mean-squared acceleration
/// only calculated in PSD results graphs
/// </summary>
double GRMS { get; set; }
}
}