ningshuxia
6 天以前 9eb7f4af097fb41b81fbff725d930cd6ab052c97
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
namespace Yw.Epanet
{
    /// <summary>
    /// One of these codes is returned when @ref EN_getlinkvalue is used to retrieve a pump's
    ///current operating state( \b EN_PUMP_STATE). \b EN_PUMP_XHEAD indicates that the pump has been
    ///shut down because it is being asked to deliver more than its shutoff head. \b EN_PUMP_XFLOW
    ///indicates that the pump is being asked to deliver more than its maximum flow.
    /// </summary>
    public enum ePumpStateType
    {
        /// <summary>
        /// Pump closed - cannot supply head
        /// </summary>
        [Display(Name = "Pump closed - cannot supply head")]
        XHead = 0,
 
        /// <summary>
        /// Pump closed
        /// </summary>
        [Display(Name = "Pump closed")]
        Closed = 2,
 
        /// <summary>
        /// Pump open
        /// </summary>
        [Display(Name = "Pump open")]
        Open = 3,
 
        /// <summary>
        /// Pump open - cannot supply flow
        /// </summary>
        [Display(Name = "Pump open - cannot supply flow")]
        XFlow = 4
 
    }
}