35 lines
714 B
C#
35 lines
714 B
C#
|
|
/*
|
|||
|
|
* DAS.Channel.IInversionAware.cs
|
|||
|
|
*
|
|||
|
|
* Copyright © 2009
|
|||
|
|
* Diversified Technical Systems, Inc.
|
|||
|
|
* All Rights Reserved
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
namespace DTS.DAS.Concepts.DAS.Channel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Definition of the concept of inversion awareness.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IInversionAware
|
|||
|
|
{ ///
|
|||
|
|
/// <summary>
|
|||
|
|
/// Get/set this object's inversion state <see cref="bool"/>.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
bool IsInverted
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
public interface ILinearized
|
|||
|
|
{
|
|||
|
|
LinearizationFormula LinearizationFormula
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
set;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|