lixiaojun
5 天以前 03b6ae3d20508dccf1c7fd7ee4e1c2e02c3a1da1
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
namespace Yw.Epanet
{
    /// <summary>
    /// 警告编码
    /// </summary>
    internal class WarningCode
    {
        /// <summary>
        /// 系统水力不平衡 - 在允许的试验次数内未能收敛到水力解
        /// System hydraulically unbalanced - convergence to a hydraulic solution was not achieved in the allowed number of trials
        /// </summary>
        public const int Warn1 = 1;
 
        /// <summary>
        /// 系统可能水力不稳定 - 仅在所有连接状态固定后才实现水力收敛
        /// System may be hydraulically unstable - hydraulic convergence was only achieved after the status of all links was held fixed
        /// </summary>
        public const int Warn2 = 2;
 
        /// <summary>
        /// 系统断开连接 - 一个或多个有正需求的节点与所有供水源断开连接
        /// System disconnected - one or more nodes with positive demands were disconnected from all supply sources
        /// </summary>
        public const int Warn3 = 3;
 
        /// <summary>
        /// 水泵无法提供足够的流量或扬程 - 一个或多个水泵被迫关闭(由于扬程不足)或超过最大额定流量运行
        /// Pumps cannot deliver enough flow or head - one or more pumps were forced to either shut down (due to insufficient head) or operate beyond the maximum rated flow
        /// </summary>
        public const int Warn4 = 4;
 
        /// <summary>
        /// 阀门无法提供足够的流量 - 一个或多个流量控制阀即使完全打开也无法提供所需流量
        /// Valves cannot deliver enough flow - one or more flow control valves could not deliver the required flow even when fully open
        /// </summary>
        public const int Warn5 = 5;
 
        /// <summary>
        /// 系统存在负压 - 一个或多个有正需求的节点处出现负压
        /// System has negative pressures - negative pressures occurred at one or more junctions with positive demand
        /// </summary>
        public const int Warn6 = 6;
 
 
 
 
    }
}