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
namespace Yw.Epanet
{
    /// <summary>
    /// 管段类型
    /// </summary>
    internal class LinkType
    {
        /// <summary>
        /// 具有止回阀的管道
        /// </summary>
        public const int EN_CVPIPE = 0;
 
        /// <summary>
        /// 管道
        /// </summary>
        public const int EN_PIPE = 1;
 
        /// <summary>
        /// 水泵
        /// </summary>
        public const int EN_PUMP = 2;
 
        /// <summary>
        /// 减压阀
        /// </summary>
        public const int EN_PRV = 3;
 
        /// <summary>
        /// 稳压阀
        /// </summary>
        public const int EN_PSV = 4;
 
        /// <summary>
        /// 压力制动阀
        /// </summary>
        public const int EN_PBV = 5;
 
        /// <summary>
        /// 流量控制阀
        /// </summary>
        public const int EN_FCV = 6;
 
        /// <summary>
        /// 节流控制阀
        /// </summary>
        public const int EN_TCV = 7;
 
        /// <summary>
        /// 常规阀门
        /// </summary>
        public const int EN_GPV = 8;
 
        /// <summary>
        /// 位置控制阀
        /// </summary>
        public const int EN_PCV = 9;
 
 
 
 
 
    }
}