lixiaojun
2024-10-21 bc8d900f5ca26216dae0e1be243ab6237790873b
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
namespace HStation.Model
{
    /// <summary>
    /// 连接节点
    /// </summary>
    public class RevitJunction : RevitNode
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitJunction() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitJunction(RevitJunction rhs) : base(rhs)
        {
            this.Elev = rhs.Elev;
            this.MinorLoss = rhs.MinorLoss;
            this.Demand = rhs.Demand;
            this.DemandPattern = rhs.DemandPattern;
        }
 
        /// <summary>
        /// 标高 (m)
        /// </summary>
        public double Elev { get; set; }
 
        /// <summary>
        /// 局部阻力系数
        /// </summary>
        public double? MinorLoss { get; set; }
 
        /// <summary>
        /// 需水量 (m³/h)
        /// </summary>
        public double? Demand { get; set; }
 
        /// <summary>
        /// 需水模式
        /// </summary>
        public string DemandPattern { get; set; }
 
    }
}