using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Calculation.DispatchAna
|
{
|
/// <summary>
|
/// 泰和泵站调度方案计算器
|
/// </summary>
|
public class CalculatorBase_SHYS_泰和泵站 : CalculatorOptAnaBase
|
{
|
/// <summary>
|
/// 没有5号泵: 1234 67
|
/// </summary>
|
static protected List<long> machine_ids = new List<long>() { 304,307,310,313,0,316,319 };
|
|
/// <summary>
|
/// 进口管路压力
|
/// </summary>
|
public static long _montiro_id_inlet_press = 988;
|
|
/// <summary>
|
/// 出水管管路1的压力
|
/// </summary>
|
public static long _monitor_id_pipe_press1 = 989;
|
|
/// <summary>
|
/// 出水管管路1的流量
|
/// </summary>
|
public static long _monitor_id_pipe_flow1 = 990;
|
|
/// <summary>
|
/// 出水管管路2的压力
|
/// </summary>
|
public static long _monitor_id_pipe_press2 = 992;
|
|
/// <summary>
|
/// 出水管管路2的流量
|
/// </summary>
|
public static long _monitor_id_pipe_flow2 = 993;
|
|
/// <summary>
|
/// 4和6之间阀门状态, 没有获取到
|
/// </summary>
|
public static long _monitor_id_中间阀门状态_46 = 0;
|
|
/// <summary>
|
/// 6和7之间阀门状态, 没有获取到
|
/// </summary>
|
public static long _monitor_id_中间阀门状态_67 = 0;
|
|
/// <summary>
|
///
|
/// </summary>
|
public CalculatorBase_SHYS_泰和泵站()
|
{
|
_corpID = 4;
|
_stationID = 17;
|
}
|
|
}
|
}
|