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 PumpStateType
| {
| /// <summary>
| /// Pump closed - cannot supply head
| /// </summary>
| public const int EN_PUMP_XHEAD = 0;
|
| /// <summary>
| /// Pump closed
| /// </summary>
| public const int EN_PUMP_CLOSED = 2;
|
| /// <summary>
| /// Pump open
| /// </summary>
| public const int EN_PUMP_OPEN = 3;
|
| /// <summary>
| /// Pump open - cannot supply flow
| /// </summary>
| public const int EN_PUMP_XFLOW = 5;
|
| }
| }
|
|