lixiaojun
2024-08-14 c51f56dfdddff000dd3c354948e2b5ced99ab880
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
namespace HStation.Model
{
    /// <summary>
    /// 管道
    /// 定义包含在管网中的所有管道
    /// Hazen-Williams和Chezy-Manning水头损失公式中粗糙系数无量纲,Darcy-Weisbach
    /// 公式中,单位为mm(毫英尺)。水头损失公式的选择在[OPTIONS] 节提供
    /// 设置状态为CV,意味着管道包含了限制流向的止回阀
    /// 如果局部损失系数为0,管道状态为OPEN,那么这两项可以在输入行中省略
    /// </summary>
    public interface IRevitPipe : IRevitLink
    {
        /// <summary>
        /// 长度
        /// </summary>
        double Length { get; set; }
 
        /// <summary>
        /// 直径
        /// </summary>
        double Diameter { get; set; }
 
        /// <summary>
        /// 粗糙系数
        /// </summary>
        double Roughness { get; set; }
 
        /// <summary>
        /// 局阻系数
        /// </summary>
        double MinorLoss { get; set; }
 
 
 
 
    }
}