48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
|
|
/*
|
||
|
|
Test.Module.Channel.Sensor.cs
|
||
|
|
|
||
|
|
Copyright © 2008
|
||
|
|
Diversified Technical Systems, Inc.
|
||
|
|
All Rights Reserved
|
||
|
|
*/
|
||
|
|
|
||
|
|
using System.ComponentModel;
|
||
|
|
|
||
|
|
namespace DTS.DAS.Concepts
|
||
|
|
{
|
||
|
|
// *** see Test.cs ***
|
||
|
|
public partial class Test
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// A container for DTS generic module concepts.
|
||
|
|
/// </summary>
|
||
|
|
public sealed partial class Module
|
||
|
|
{
|
||
|
|
// *** see Test.Module.Channel.cs ***
|
||
|
|
public partial class Channel
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Container for DTS generic sensor concepts.
|
||
|
|
/// </summary>
|
||
|
|
sealed partial class Sensor
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Not intended for instantiation.
|
||
|
|
/// </summary>
|
||
|
|
private Sensor( ) { }
|
||
|
|
/// <summary>
|
||
|
|
/// IEPE Coupling modes
|
||
|
|
/// </summary>
|
||
|
|
public enum CouplingModes
|
||
|
|
{
|
||
|
|
[Description("AC")]
|
||
|
|
AC,
|
||
|
|
[Description("AC/DC")]
|
||
|
|
DC
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|