namespace Yw.EPAnet { /// /// 连接节点 /// public class Junction : Node { /// /// /// public Junction() { } /// /// /// public Junction(Junction rhs) : base(rhs) { this.Elev = rhs.Elev; this.MinorLoss = rhs.MinorLoss; this.Demand = rhs.Demand; this.DemandPattern = rhs.DemandPattern; } /// /// 标高 /// public double Elev { get; set; } /// /// 局阻系数 /// public double? MinorLoss { get; set; } /// /// 需水量 /// public double? Demand { get; set; } /// /// 需水模式 /// public string DemandPattern { get; set; } } }