namespace DTS.Common.Constant.DASSpecific { public static class SliceProDB { /// /// 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 /// public const double MINIMUM_VALID_INPUT_THRESHOLD_LOW = 30; /// /// 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 /// public const double MINIMUM_VALID_INPUT_THRESHOLD_HIGH = 40; /// /// this is the default we'll use for the min valid input threshold if we reject the setting in the database /// public const double MINIMUM_VALID_INPUT_THRESHOLD_VALUE = 35; /// /// 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 /// public const double MAXIMUM_VALID_INPUT_THRESHOLD_HIGH = 60; /// /// 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 /// public const double MAXIMUM_VALID_INPUT_THRESHOLD_LOW = 50; /// /// this is the default value for the maximum valid input threshold when resetting from what is in the database /// public const double MAXIMUM_VALID_INPUT_THRESHOLD_VALUE = 57; /// /// this is the low value for the input low threshold before we decide the value is invalid and we use the default /// public const double INPUTLOWTHRESHOLD_LOW = 30; /// /// this is the high value for the input low threshold before we decide the value is invalid and we use the default /// public const double INPUTLOWTHRESHOLD_HIGH = 40; /// /// this is the default value that we use for the input low threshold if we need a default /// public const double INPUTLOWTHRESHOLD_DEFAULT = 36.5; /// /// this is the low value for the input high threshold before we decide the value is invalid and use the default /// public const double INPUTHIGHTHRESHOLD_LOW = 50; /// /// this is the high value for the input high threshold before we decide the value is invalid and use the default /// public const double INPUTHIGHTHRESHOLD_HIGH = 60; /// /// this is the default value for the input high threshold when we need a default /// public const double INPUTHIGHTHRESHOLD_DEFAULT = 56; } }