duheng
2025-03-10 4c9511aac5b0df4c141da6b74bcae94645e3855e
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
using PBS.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IBox.WinFrmUI
{
    public class SimuViewModel
    {
        public SimuViewModel() { }
 
        /// <summary>
        /// 系统最大流量
        /// </summary>
        public double SysMaxQ { get; set; } = 30;
 
        /// <summary>
        /// 恒压
        /// </summary>
        public double ConstantP { get; set; } = 110;
 
        /// <summary>
        /// 当前建筑物
        /// </summary>
        public Build CurrentBuild { get; set; }
 
        /// <summary>
        /// 设施
        /// </summary>
        public Facility Facilities { get; set; }
 
        ///// <summary>
        ///// 模拟值列表
        ///// </summary>
        //public List<SimuValueViewModel> SimuValues { get; set; }
 
    }
}