58 lines
1.4 KiB
C#
58 lines
1.4 KiB
C#
|
|
/*
|
|||
|
|
* DAS.Channel.IShuntAware.cs
|
|||
|
|
*
|
|||
|
|
* Copyright © 2009
|
|||
|
|
* Diversified Technical Systems, Inc.
|
|||
|
|
* All Rights Reserved
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace DTS.DAS.Concepts.DAS.Channel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Definition of the concept of shunt-check awareness.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IShuntAware
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Get/set this object's <see cref="double"/> measured shunt deflection value.
|
|||
|
|
/// </summary>
|
|||
|
|
double MeasuredShuntDeflectionMv
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Get/set this object's <see cref="double"/> target shunt deflection value.
|
|||
|
|
/// </summary>
|
|||
|
|
double TargetShuntDeflectionMv
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// Definition of the concept of calsignal-check awareness.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface ICalSignalAware
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Get/set this object's <see cref="double"/> measured shunt deflection value.
|
|||
|
|
/// </summary>
|
|||
|
|
double MeasuredCalSignalMv
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Get/set this object's <see cref="double"/> target shunt deflection value.
|
|||
|
|
/// </summary>
|
|||
|
|
double TargetCalSignalMv
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|