67 lines
3.8 KiB
C#
67 lines
3.8 KiB
C#
|
|
namespace DTS.Common.Constant.DASSpecific
|
|||
|
|
{
|
|||
|
|
public static class SliceProDB
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The MINIMUM_VALID_INPUT_THRESHOLD is the minimum input reading we accept from a das, if it's below that we reject it
|
|||
|
|
/// The low value for this threshold is the minimum setting value we consider valid before we reject it and use
|
|||
|
|
/// MINIMUM_VALID_INPUT_THRESHOLD_VALUE as the default for the MINIMUM_VALID_INPUT_THRESHOLD
|
|||
|
|
/// </summary>
|
|||
|
|
public const double MINIMUM_VALID_INPUT_THRESHOLD_LOW = 30;
|
|||
|
|
/// <summary>
|
|||
|
|
/// The MINIMUM_VALID_INPUT_THRESHOLD is the minimum input reading we accept from a das, if it's below that we reject it
|
|||
|
|
/// The high value for this threshold is the max setting value we consider valid before we reject it and use
|
|||
|
|
/// MINIMUM_VALID_INPUT_THRESHOLD_VALUE as the default for the MINIMUM_VALID_INPUT_THRESHOLD
|
|||
|
|
/// </summary>
|
|||
|
|
public const double MINIMUM_VALID_INPUT_THRESHOLD_HIGH = 40;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the default we'll use for the min valid input threshold if we reject the setting in the database
|
|||
|
|
/// </summary>
|
|||
|
|
public const double MINIMUM_VALID_INPUT_THRESHOLD_VALUE = 35;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// the MAXIMIMUM_VALID_INPUT_THRESHOLD is the max input voltage reading from the DAS that we will accept, any readings above this value we
|
|||
|
|
/// reject
|
|||
|
|
/// The High value here is the maximum setting value we allow before rejecting the setting and using
|
|||
|
|
/// MAXIMUM_VALID_INPUT_THRESHOLD_VALUE as for the MAXIMUM_VALID_INPUT_THRESHOLD instead of the setting in the db
|
|||
|
|
/// </summary>
|
|||
|
|
public const double MAXIMUM_VALID_INPUT_THRESHOLD_HIGH = 60;
|
|||
|
|
/// <summary>
|
|||
|
|
/// the MAXIMIMUM_VALID_INPUT_THRESHOLD is the max input voltage reading from the DAS that we will accept, any readings above this value we
|
|||
|
|
/// reject
|
|||
|
|
/// The low value here is the min setting value we allow before rejecting the setting and using
|
|||
|
|
/// MAXIMUM_VALID_INPUT_THRESHOLD_VALUE as for the MAXIMUM_VALID_INPUT_THRESHOLD instead of the setting in the db
|
|||
|
|
/// </summary>
|
|||
|
|
public const double MAXIMUM_VALID_INPUT_THRESHOLD_LOW = 50;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the default value for the maximum valid input threshold when resetting from what is in the database
|
|||
|
|
/// </summary>
|
|||
|
|
public const double MAXIMUM_VALID_INPUT_THRESHOLD_VALUE = 57;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the low value for the input low threshold before we decide the value is invalid and we use the default
|
|||
|
|
/// </summary>
|
|||
|
|
public const double INPUTLOWTHRESHOLD_LOW = 30;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the high value for the input low threshold before we decide the value is invalid and we use the default
|
|||
|
|
/// </summary>
|
|||
|
|
public const double INPUTLOWTHRESHOLD_HIGH = 40;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the default value that we use for the input low threshold if we need a default
|
|||
|
|
/// </summary>
|
|||
|
|
public const double INPUTLOWTHRESHOLD_DEFAULT = 36.5;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the low value for the input high threshold before we decide the value is invalid and use the default
|
|||
|
|
/// </summary>
|
|||
|
|
public const double INPUTHIGHTHRESHOLD_LOW = 50;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the high value for the input high threshold before we decide the value is invalid and use the default
|
|||
|
|
/// </summary>
|
|||
|
|
public const double INPUTHIGHTHRESHOLD_HIGH = 60;
|
|||
|
|
/// <summary>
|
|||
|
|
/// this is the default value for the input high threshold when we need a default
|
|||
|
|
/// </summary>
|
|||
|
|
public const double INPUTHIGHTHRESHOLD_DEFAULT = 56;
|
|||
|
|
}
|
|||
|
|
}
|