qin
2025-03-19 28a7344a9f352624c9f44cc3fcb38d7226d5a754
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
41
using Yw.Vmo;
 
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 综合分析
    /// </summary>
    public class SimulationMultiAnalyViewModel
    {
        /// <summary>
        /// 水力信息
        /// </summary>
        public Yw.Model.HydroModelInfo HydroInfo { get; set; }
 
        /// <summary>
        /// 工况
        /// </summary>
        public HydroWorkingVmo Working { get; set; }
 
        /// <summary>
        /// 精度评估
        /// </summary>
        public HydroAccuracyViewModel Accuracy { get; set; }
 
        /// <summary>
        /// 能效分析
        /// </summary>
        public HydroEnergyAnalyViewModel EnergyAnaly { get; set; }
 
        /// <summary>
        /// 损失曲线
        /// </summary>
        public HydroLossCurveViewModel LossCurve { get; set; }
 
        /// <summary>
        /// 损失统计
        /// </summary>
        public HydroLossStatisticsViewModel LossStatistics { get; set; }
 
    }
}