ningshuxia
5 天以前 f95dd5966b62362dc190088c15ca8f9085ef8456
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Yw.Epanet
{
    /// <summary>
    /// 
    /// </summary>
    public enum eWarningCode
    {
        /// <summary>
        /// 系统水力不平衡 - 在允许的试验次数内未能收敛到水力解
        /// System hydraulically unbalanced - convergence to a hydraulic solution was not achieved in the allowed number of trials
        /// </summary>
        [Display(Name = "系统水力不平衡 - 在允许的试验次数内未能收敛到水力解")]
        Warn1 = 1,
 
        /// <summary>
        /// 系统可能水力不稳定 - 仅在所有连接状态固定后才实现水力收敛
        /// System may be hydraulically unstable - hydraulic convergence was only achieved after the status of all links was held fixed
        /// </summary>
        [Display(Name = "系统可能水力不稳定 - 仅在所有连接状态固定后才实现水力收敛")]
        Warn2 = 2,
 
        /// <summary>
        /// 系统断开连接 - 一个或多个有正需求的节点与所有供水源断开连接
        /// System disconnected - one or more nodes with positive demands were disconnected from all supply sources
        /// </summary>
        [Display(Name = "系统断开连接 - 一个或多个有正需求的节点与所有供水源断开连接")]
        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>
        [Display(Name = "水泵无法提供足够的流量或扬程 - 一个或多个水泵被迫关闭(由于扬程不足)或超过最大额定流量运行")]
        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>
        [Display(Name = "阀门无法提供足够的流量 - 一个或多个流量控制阀即使完全打开也无法提供所需流量")]
        Warn5 = 5,
 
        /// <summary>
        /// 系统存在负压 - 一个或多个有正需求的节点处出现负压
        /// System has negative pressures - negative pressures occurred at one or more junctions with positive demand
        /// </summary>
        [Display(Name = "系统存在负压 - 一个或多个有正需求的节点处出现负压")]
        Warn6 = 6
    }
}