namespace HStation.Model { /// /// 管道 /// public class RevitPipe : RevitLink { /// /// /// public RevitPipe() { } /// /// /// public RevitPipe(RevitPipe rhs) : base(rhs) { this.Diameter = rhs.Diameter; this.Material = rhs.Material; this.Length = rhs.Length; this.Roughness = rhs.Roughness; this.MinorLoss = rhs.MinorLoss; } /// /// 直径(内径) mm /// public double Diameter { get; set; } /// /// 材质 /// public string Material { get; set; } /// /// 长度 /// public double Length { get; set; } /// /// 粗糙系数 /// public double Roughness { get; set; } /// /// 局部阻力系数 /// public double MinorLoss { get; set; } } }