ningshuxia
2022-10-31 0171d347fec140d31db39ab5d76d51eebac472c2
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
57
58
59
60
61
62
63
64
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;
        }
 
    }
}