tangxu
2023-04-21 473084031d410d95db66e81f4d1761f9a2d1b8e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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>
        /// 
        /// </summary>
       protected  List<long> pipe1_machineIds = new List<long>() { 19, 22 };//1号泵,2号泵 
        /// <summary>
        /// 
        /// </summary>
        protected List<long> pipe2_machineIds = new List<long>() { 25, 28 };//3号泵,4号泵 
        /// <summary>
        /// 
        /// </summary>
        public static long _monitor_id_pipe_press1 = 72;
        /// <summary>
        /// 
        /// </summary>
        public static long _monitor_id_pipe_press2 = 76;
        /// <summary>
        /// 
        /// </summary>
        public static long _monitor_id_pipe_flow1 = 73;
        /// <summary>
        /// 
        /// </summary>
        public static long _monitor_id_pipe_flow2 = 77;
        /// <summary>
        /// 
        /// </summary>
        public static long _monitor_id_中间阀门状态 = 71;
        /// <summary>
        /// 
        /// </summary>
        public static long _montiro_id_water_level = 70;
        /// <summary>
        /// 
        /// </summary>
        public CalculatorBase_SHYS_长兴岛()
        {
            _corpID = 4;
            _stationID = 2;
        }
 
    }
}