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
|
}
|
}
|