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
46
47
48
49
50
51
52
53
54
55
56
57
58
namespace HStation.Model
{
    /// <summary>
    /// 阀门
    /// </summary>
    public class RevitValve : RevitLink
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitValve() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitValve(RevitValve rhs) : base(rhs)
        {
            this.Material = rhs.Material;
            this.Diameter = rhs.Diameter;
            this.MinorLoss = rhs.MinorLoss;
            this.ValveType = rhs.ValveType;
            this.ValveSetting = rhs.ValveSetting;
            this.OpeningDegree = rhs.OpeningDegree;
        }
 
        /// <summary>
        /// 材质
        /// </summary>
        public string Material { get; set; }
 
        /// <summary>
        /// 阀门直径 (mm)
        /// </summary>
        public double Diameter { get; set; }
 
        /// <summary>
        /// 局部阻力系数
        /// </summary>
        public double MinorLoss { get; set; }
 
        /// <summary>
        /// 阀门类型
        /// </summary>
        public string ValveType { get; set; }
 
        /// <summary>
        /// 阀门设置
        /// </summary>
        public string ValveSetting { get; set; }
 
        /// <summary>
        /// 阀门开度
        /// </summary>
        public double OpeningDegree { get; set; }
 
 
    }
}