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