yangyin
2024-08-20 98e49c0dd42840a094837f7acae532bc237a719a
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
using System.Runtime.CompilerServices;
 
namespace HStation.Model
{
    /// <summary>
    /// 三通
    /// </summary>
    public class RevitThreelink : RevitParter, IRevitJunction
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitThreelink() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitThreelink(RevitThreelink rhs) : base(rhs)
        {
            this.Quality = rhs.Quality;
            this.Position = rhs.Position;
            this.Elev = rhs.Elev;
            this.Demand = rhs.Demand;
            this.DemandPattern = rhs.DemandPattern;
        }
 
 
        /// <summary>
        /// 初始水质
        /// </summary>
        public double Quality { get; set; }
 
        /// <summary>
        /// 位置
        /// </summary>
        public RevitPosition Position { get; set; }
 
        /// <summary>
        /// 标高
        /// </summary>
        public double Elev { get; set; }
 
        /// <summary>
        /// 需水量
        /// </summary>
        public double? Demand { get; set; }
 
        /// <summary>
        /// 需水模式
        /// </summary>
        public string DemandPattern { get; set; }
 
    }
}