using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FujianEarthquake.Common
{
public class DataLimited
{
///
/// 岸基站电压下限
///
public static int VolCurCollectorVoltageMin = 200;
///
/// 岸基站电压上限
///
public static int VolCurCollectorVoltageMax = 240;
///
/// 岸基站电流下限
///
public static int VolCurCollectorCurrentMin = 0;
///
/// 岸基站电流上限
///
public static int VolCurCollectorCurrentMax = 5;
///
/// 下位机温度下限
///
public static int LowerComputerTemperatureMin = 0;
///
/// 下位机温度上限
///
public static int LowerComputerTemperatureMax = 50;
///
/// 下位机湿度下限
///
public static int LowerComputerHumidityMin = 0;
///
/// 下位机湿度上限
///
public static int LowerComputerHumidityMax = 60;
///
/// 下位机角度X下限
///
public static int LowerComputerGestureXMin = -20;
///
/// 下位机角度X上限
///
public static int LowerComputerGestureXMax = 20;
///
/// 下位机角度Y下限
///
public static int LowerComputerGestureYMin = -20;
///
/// 下位机角度Y上限
///
public static int LowerComputerGestureYMax = 20;
///
/// 下位机角度Z下限
///
public static int LowerComputerGestureZMin = -20;
///
/// 下位机角度Z上限
///
public static int LowerComputerGestureZMax = 20;
///
/// 地震仪电压下限
///
public static int SeismographVoltageMin = 10;
///
/// 地震仪电压上限
///
public static int SeismographVoltageMax = 14;
///
/// 地震仪电流下限
///
public static int SeismographCurrentMin = 0;
///
/// 地震仪电流上限
///
public static int SeismographCurrentMax = 5;
///
/// 摄像电压下限
///
public static int VideoromagnetismVoltageMin = 10;
///
/// 摄像电压上限
///
public static int VideoromagnetismVoltageMax = 12;
///
/// 摄像电流下限
///
public static int VideoromagnetismCurrentMin = 0;
///
/// 摄像电流上限
///
public static int VideoromagnetismCurrentMax = 5;
}
}