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
namespace Yw.Epanet
{
    /// <summary>
    /// 源头类型
    /// </summary>
    internal class SourceType
    {
        /// <summary>
        /// 设置进入节点的外部流入浓度
        /// </summary>
        public const int EN_CONCEN = 0;
 
        /// <summary>
        /// 将给定的质量/分钟注入节点
        /// </summary>
        public const int EN_MASS = 1;
 
        /// <summary>
        /// 将离开节点的浓度设置为给定值
        /// </summary>
        public const int EN_SETPOINT = 2;
 
        /// <summary>
        /// 将给定值添加到离开节点的浓度中
        /// </summary>
        public const int EN_FLOWPACED = 3;
 
    }
}