Shuxia Ning
2024-10-24 0711485ecb4fe66fbe820478d92eb9f04b77c042
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
37
38
39
40
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 水力曲线
    /// </summary>
    public class HydroCurve
    {
        /// <summary>
        /// 水泵曲线
        /// </summary>
        public const string Pump = "Pump";
 
        /// <summary>
        /// 水泵流量扬程曲线
        /// </summary>
        public const string PumpQH = "PumpQH";
 
        /// <summary>
        /// 水泵流量功率曲线
        /// </summary>
        public const string PumpQP = "PumpQP";
 
        /// <summary>
        /// 水泵流量效率曲线
        /// </summary>
        public const string PumpQE = "PumpQE";
 
        /// <summary>
        /// 阀门
        /// </summary>
        public const string Valve = "Valve";
 
        /// <summary>
        /// 阀门流量水头损失曲线
        /// </summary>
        public const string ValveQL = "ValveQL";
 
 
    }
}