36 lines
831 B
Plaintext
36 lines
831 B
Plaintext
|
|
/*
|
||
|
|
* DTS.Common.DAS.Concepts.DAS.Channel.IVoltageInsertionAware.cs
|
||
|
|
*
|
||
|
|
* Copyright © 2012
|
||
|
|
* Diversified Technical Systems, Inc.
|
||
|
|
* All Rights Reserved
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace DTS.Common.DAS.Concepts.DAS.Channel
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Definition of the concept of shunt-check awareness.
|
||
|
|
/// </summary>
|
||
|
|
public interface IVoltageInsertionAware
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Get/set this object's <see cref="double"/> measured shunt deflection value.
|
||
|
|
/// </summary>
|
||
|
|
double ExpectedGain
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Get/set this object's <see cref="double"/> target shunt deflection value.
|
||
|
|
/// </summary>
|
||
|
|
double MeasuredGain
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|