ningshuxia
7 天以前 e372b432b52bedf58b7d3bd80bd679ae9c3cecb3
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
namespace Yw.Epanet
{
    /// <summary>
    /// 管段属性
    /// </summary>
    internal class LinkProperty
    {
        /// <summary>
        /// 直径
        /// </summary>
        public const int EN_DIAMETER = 0;
 
        /// <summary>
        /// 长度
        /// </summary>
        public const int EN_LENGTH = 1;
 
        /// <summary>
        /// 粗糙系数
        /// </summary>
        public const int EN_ROUGHNESS = 2;
 
        /// <summary>
        /// 局部损失系数
        /// </summary>
        public const int EN_MINORLOSS = 3;
 
        /// <summary>
        /// 初始管段状态
        /// </summary>
        public const int EN_INITSTATUS = 4;
 
        /// <summary>
        /// 初始水泵转速/初始阀门设置
        /// </summary>
        public const int EN_INITSETTING = 5;
 
        /// <summary>
        /// 主流反应系数
        /// </summary>
        public const int EN_KBULK = 6;
 
        /// <summary>
        /// 管壁反应系数
        /// </summary>
        public const int EN_KWALL = 7;
 
        /// <summary>
        /// 流量
        /// Read Only
        /// </summary>
        public const int EN_FLOW = 8;
 
        /// <summary>
        /// 流速
        /// Read Only
        /// </summary>
        public const int EN_VELOCITY = 9;
 
        /// <summary>
        /// 水头损失
        /// Read Only
        /// </summary>
        public const int EN_HEADLOSS = 10;
 
        /// <summary>
        /// 实际管段状态
        /// Read Only
        /// </summary>
        public const int EN_STATUS = 11;
 
        /// <summary>
        /// 当前管段设置:实际水泵转速/实际阀门设置
        /// Read Only
        /// </summary>
        public const int EN_SETTING = 12;
 
        /// <summary>
        /// 消耗能量,以千瓦计
        /// Read Only
        /// </summary>
        public const int EN_ENERGY = 13;
 
        /// <summary>
        /// Current computed link quality
        /// Read Only
        /// </summary>
        public const int EN_LINKQUAL = 14;
 
        /// <summary>
        /// Pump speed time pattern index
        /// </summary>
        public const int EN_LINKPATTERN = 15;
 
        /// <summary>
        /// Current computed pump state
        /// read only
        /// </summary>
        public const int EN_PUMP_STATE = 16;
 
        /// <summary>
        /// Current computed pump efficiency
        /// Read Only
        /// </summary>
        public const int EN_PUMP_EFFIC = 17;
 
        /// <summary>
        /// Pump constant power rating
        /// </summary>
        public const int EN_PUMP_POWER = 18;
 
        /// <summary>
        /// Pump head v. flow curve index
        /// </summary>
        public const int EN_PUMP_HCURVE = 19;
 
        /// <summary>
        /// Pump efficiency v. flow curve index
        /// </summary>
        public const int EN_PUMP_ECURVE = 20;
 
        /// <summary>
        /// Pump average energy price
        /// </summary>
        public const int EN_PUMP_ECOST = 21;
 
        /// <summary>
        /// Pump energy price time pattern index
        /// </summary>
        public const int EN_PUMP_EPAT = 22;
 
        /// <summary>
        /// Is present in any simple or rule-based control (= 1) or not (= 0)
        /// </summary>
        public const int EN_LINK_INCONTROL = 23;
 
        /// <summary>
        /// GPV head loss v. flow curve index
        /// </summary>
        public const int EN_GPV_CURVE = 24;
 
        /// <summary>
        /// PCV loss coeff. curve index
        /// </summary>
        public const int EN_PCV_CURVE = 25;
 
        /// <summary>
        /// Pipe leak area (sq mm per 100 length units)
        /// </summary>
        public const int EN_LEAK_AREA = 26;
 
        /// <summary>
        /// Leak expansion rate (sq mm per unit of pressure head)
        /// </summary>
        public const int EN_LEAK_EXPAN = 27;
 
        /// <summary>
        /// Current leakage rate (read only)
        /// </summary>
        public const int EN_LINK_LEAKAGE = 28;
 
 
 
 
 
    }
}