ningshuxia
2024-06-18 e83dca6e861b622b54d3392ca0d3f1f1eb69f7c9
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
using IStation.Epanet.Enums;
using System.ComponentModel.DataAnnotations;
 
namespace IStation.Epanet.Analysis
{
    public class OutNode
    {
        public OutNode() { }
        public OutNode(OutNode rhs)
        {
            this.Time = rhs.Time;
            this.ID = rhs.ID;
            this.Index = rhs.Index;
            this.NodeType = rhs.NodeType;
            this.Elevation = rhs.Elevation;
            this.BaseDemand = rhs.BaseDemand;
            this.Pattern = rhs.Pattern;
            this.Emitter = rhs.Emitter;
            this.InitQual = rhs.InitQual;
            this.SourceQual = rhs.SourceQual;
            this.SourcePat = rhs.SourcePat;
            this.SourceType = rhs.SourceType;
            this.TankLevel = rhs.TankLevel;
            this.Demand = rhs.Demand;
            this.Head = rhs.Head;
            this.Pressure = rhs.Pressure;
            this.Quality = rhs.Quality;
            this.SourceMass = rhs.SourceMass;
            this.InitVolume = rhs.InitVolume;
            this.MixModel = rhs.MixModel;
            this.MixZonevol = rhs.MixZonevol;
            this.TankDiam = rhs.TankDiam;
            this.MinVolume = rhs.MinVolume;
            this.VolCurve = rhs.VolCurve;
            this.MinLevel = rhs.MinLevel;
            this.MaxLevel = rhs.MaxLevel;
            this.MixFraction = rhs.MixFraction;
            this.TankKbulk = rhs.TankKbulk;
        }
 
        [Display(Name = "时间")]
        public TimeSpan Time { get; set; }
 
        [Display(Name = "标识")]
        public string ID { get; set; }
 
        [Display(Name = "索引")]
        public int Index { get; set; }
 
        [Display(Name = "类型")]
        public NodeType NodeType { get; set; }
 
        [Display(Name = "标高")]
        public string Elevation { get; set; }
 
        [Display(Name = "基础需水量")]
        public string BaseDemand { get; set; }
 
        [Display(Name = "时间模式索引")]
        public string Pattern { get; set; }
 
        [Display(Name = "扩散器系数")]
        public string Emitter { get; set; }
 
        [Display(Name = "初始水质")]
        public string InitQual { get; set; }
 
        [Display(Name = "源头水质")]
        public string SourceQual { get; set; }
 
        [Display(Name = "源头模式")]
        public string SourcePat { get; set; }
 
        [Display(Name = "源头类型")]
        public string SourceType { get; set; }
 
        [Display(Name = "水池的初始水位")]
        public string TankLevel { get; set; }
 
        [Display(Name = "实际需水量")]
        public string Demand { get; set; }
 
        [Display(Name = "水力水头")]
        public decimal Head { get; set; }
 
        [Display(Name = "压强")]
        public decimal Pressure { get; set; }
 
        [Display(Name = "实际水质")]
        public string Quality { get; set; }
 
        [Display(Name = "每分钟化学成分源头的质量流量")]
        public string SourceMass { get; set; }
 
        [Display(Name = "初始水量")]
        public string InitVolume { get; set; }
 
        [Display(Name = "混合模型")]
        public string MixModel { get; set; }
 
        [Display(Name = "双隔层水箱的入口/出口区域容积")]
        public string MixZonevol { get; set; }
 
        [Display(Name = "水箱直径")]
        public string TankDiam { get; set; }
 
        [Display(Name = "最小水量")]
        public string MinVolume { get; set; }
 
        [Display(Name = "容积曲线")]
        public string VolCurve { get; set; }
 
        [Display(Name = "最低水位")]
        public string MinLevel { get; set; }
 
        [Display(Name = "最高水位")]
        public string MaxLevel { get; set; }
 
        [Display(Name = "双格水槽中入口/出口区所占总容积的比例")]
        public string MixFraction { get; set; }
 
        [Display(Name = "体积反应速率系数")]
        public string TankKbulk { get; set; }
    }
}