using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.DispatchAna
{
///
/// 陈行二输调度方案计算器
///
public class CalculatorBase_SHYS_陈行二输 : CalculatorOptAnaBase
{
///
///
///
static protected List machine_ids = new List() { 283,286,289,292,295,298,301 };
///
///
///
protected List pipe1_machineIds = null;//1号泵,2号泵,3号泵
///
///
///
protected List pipe2_machineIds = null;//,4号泵 ,5号泵 ,6号泵,7号泵
///
///
///
static public long _monitor_id_液位 = 916;
///
///
///
static public long _monitor_id_一号管压力 = 917;
///
///
///
static public long _monitor_id_二号管压力 = 920;
///
///
///
static public long _monitor_id_一号管流量 = 918;
///
///
///
static public long _monitor_id_二号管流量 = 921;
///
///
///
public CalculatorBase_SHYS_陈行二输()
{
pipe1_machineIds = new List() { machine_ids[0], machine_ids[1], machine_ids[2] };//1号泵,2号泵,3号泵
pipe2_machineIds = new List() { machine_ids[3], machine_ids[4], machine_ids[5], machine_ids[6] };//,4号泵 ,5号泵 ,6号泵,7号泵
_corpID = 4;
_stationID = 16;
}
}
}