ningshuxia
6 天以前 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
namespace Yw.Epanet
{
    /// <summary>
    /// 节点属性
    /// </summary>
    internal class NodeProperty
    {
        /// <summary>
        /// 标高
        /// </summary>
        public const int EN_ELEVATION = 0;
 
        /// <summary>
        /// 基本需水量
        /// </summary>
        public const int EN_BASEDEMAND = 1;
 
        /// <summary>
        /// 需水量模式索引
        /// </summary>
        public const int EN_PATTERN = 2;
 
        /// <summary>
        /// 扩散器系数
        /// </summary>
        public const int EN_EMITTER = 3;
 
        /// <summary>
        /// 初始水质
        /// </summary>
        public const int EN_INITQUAL = 4;
 
        /// <summary>
        /// 源头水质
        /// </summary>
        public const int EN_SOURCEQUAL = 5;
 
        /// <summary>
        /// 源头模式索引
        /// </summary>
        public const int EN_SOURCEPAT = 6;
 
        /// <summary>
        /// 源头类型
        /// </summary>
        public const int EN_SOURCETYPE = 7;
 
        /// <summary>
        /// 当前计算的水箱水位
        /// Read Only
        /// </summary>
        public const int EN_TANKLEVEL = 8;
 
        /// <summary>
        /// 当前计算的需水量
        /// Read Only
        /// </summary>
        public const int EN_DEMAND = 9;
 
        /// <summary>
        /// 当前计算水头
        /// Read Only
        /// </summary>
        public const int EN_HEAD = 10;
 
        /// <summary>
        /// 当前计算压力
        /// Read Only
        /// </summary>
        public const int EN_PRESSURE = 11;
 
        /// <summary>
        /// 当前计算水质
        /// Read Only
        /// </summary>
        public const int EN_QUALITY = 12;
 
        /// <summary>
        /// 每分钟化学成分源头的质量流量
        /// Read Only
        /// </summary>
        public const int EN_SOURCEMASS = 13;
 
        /// <summary>
        /// 水池初始容量
        /// Read Only
        /// </summary>
        public const int EN_INITVOLUME = 14;
 
        /// <summary>
        /// 水池混合模型
        /// </summary>
        public const int EN_MIXMODEL = 15;
 
        /// <summary>
        /// 2室罐中的入口/出口区体积
        /// Read Only
        /// </summary>
        public const int EN_MIXZONEVOL = 16;
 
        /// <summary>
        /// 水池直径
        /// </summary>
        public const int EN_TANKDIAM = 17;
 
        /// <summary>
        /// 水池最小容量
        /// </summary>
        public const int EN_MINVOLUME = 18;
 
        /// <summary>
        /// 水池容积曲线索引
        /// </summary>
        public const int EN_VOLCURVE = 19;
 
        /// <summary>
        /// 水池最低水位
        /// </summary>
        public const int EN_MINLEVEL = 20;
 
        /// <summary>
        /// 水池最高水位
        /// </summary>
        public const int EN_MAXLEVEL = 21;
 
        /// <summary>
        /// 2室罐中入口/出口区所占总体积的比例
        /// </summary>
        public const int EN_MIXFRACTION = 22;
 
        /// <summary>
        /// Tank bulk decay coefficient
        /// </summary>
        public const int EN_TANK_KBULK = 23;
 
        /// <summary>
        /// Current computed tank volume
        /// Read Only
        /// </summary>
        public const int EN_TANKVOLUME = 24;
 
        /// <summary>
        /// Tank maximum volume
        /// read only
        /// </summary>
        public const int EN_MAXVOLUME = 25;
 
        /// <summary>
        /// Tank can overflow
        /// (= 1) or not (= 0)
        /// </summary>
        public const int EN_CANOVERFLOW = 26;
 
        /// <summary>
        /// Amount that full demand is reduced under PDA
        /// read only
        /// </summary>
        public const int EN_DEMANDDEFICIT = 27;
 
        /// <summary>
        /// Is present in any simple or rule-based control
        /// (= 1) or not (= 0)
        /// </summary>
        public const int EN_NODE_INCONTROL = 28;
 
        /// <summary>
        ///  Current emitter flow
        ///   read only
        /// </summary>
        public const int EN_EMITTERFLOW = 29;
 
        /// <summary>
        /// Current leakage flow
        /// read only
        /// </summary>
        public const int EN_LEAKAGEFLOW = 30;
 
        /// <summary>
        /// Current consumer demand delivered
        /// read only
        /// </summary>
        public const int EN_DEMANDFLOW = 31;
 
        /// <summary>
        /// Current consumer demand requested
        /// read only
        /// </summary>
        public const int EN_FULLDEMAND = 32;
 
    }
}