70 lines
3.1 KiB
Plaintext
70 lines
3.1 KiB
Plaintext
|
|
/*
|
||
|
|
* DTS.Slice.Control.Event.Module.AnalogInputChannel.ReviewableShuntDeflectionPercentageAttribute.cs
|
||
|
|
*
|
||
|
|
* Copyright © 2009
|
||
|
|
* Diversified Technical Systems, Inc.
|
||
|
|
* All Rights Reserved
|
||
|
|
*/
|
||
|
|
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace DTS.Slice.Control
|
||
|
|
{
|
||
|
|
// *** see DTS.Slice.Control.Event.cs ***
|
||
|
|
public partial class Event
|
||
|
|
{
|
||
|
|
|
||
|
|
// *** see DTS.Slice.Control.Event.Module.cs ***
|
||
|
|
public partial class Module
|
||
|
|
{
|
||
|
|
|
||
|
|
// *** see DTS.Slice.Control.Event.Module.AnalogInputChannel.cs ***
|
||
|
|
public partial class AnalogInputChannel
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A reviewable shunt deflection attribute attached to a specific channel.
|
||
|
|
/// </summary>
|
||
|
|
public class ReviewableShuntDeflectionPercentageAttribute
|
||
|
|
: Slice.Control.Event.Module.Channel.ReviewableAttribute
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initialize an instance of this class.
|
||
|
|
/// </summary>
|
||
|
|
///
|
||
|
|
/// <param name="channel">
|
||
|
|
/// The <see cref="Event.Module.Channel"/> to which this attribute is attached.
|
||
|
|
/// </param>
|
||
|
|
///
|
||
|
|
public ReviewableShuntDeflectionPercentageAttribute(Event.Module.Channel channel)
|
||
|
|
: base("Shunt Error (%)", delegate { return (100.0 * ((channel as DTS.DAS.Concepts.DAS.Channel.IShuntAware).MeasuredShuntDeflectionMv - (channel as DTS.DAS.Concepts.DAS.Channel.IShuntAware).TargetShuntDeflectionMv) / (channel as DTS.DAS.Concepts.DAS.Channel.IShuntAware).TargetShuntDeflectionMv).ToString("F1"); })
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
/// <summary>
|
||
|
|
/// A reviewable shunt deflection attribute attached to a specific channel.
|
||
|
|
/// </summary>
|
||
|
|
public class ReviewableCalSignalPercentageAttribute
|
||
|
|
: Slice.Control.Event.Module.Channel.ReviewableAttribute
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initialize an instance of this class.
|
||
|
|
/// </summary>
|
||
|
|
///
|
||
|
|
/// <param name="channel">
|
||
|
|
/// The <see cref="Event.Module.Channel"/> to which this attribute is attached.
|
||
|
|
/// </param>
|
||
|
|
///
|
||
|
|
public ReviewableCalSignalPercentageAttribute(Event.Module.Channel channel)
|
||
|
|
: base("Calibration Signal Error (%)", delegate { return (100.0 * ((channel as DTS.DAS.Concepts.DAS.Channel.ICalSignalAware).MeasuredCalSignalMv - (channel as DTS.DAS.Concepts.DAS.Channel.ICalSignalAware).TargetCalSignalMv) / (channel as DTS.DAS.Concepts.DAS.Channel.ICalSignalAware).TargetCalSignalMv).ToString("F1"); })
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
} // *** end Channel ***
|
||
|
|
} // *** end Module ***
|
||
|
|
} // *** end Event ***
|
||
|
|
}
|