using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.Epanet { public partial class EpanetNodeOutputLink : EpanetNodeOutput { public EpanetNodeOutputLink() { } public EpanetNodeOutputLink(EpanetNodeOutputLink rhs) : base(rhs) { this.EN_DIAMETER = rhs.EN_DIAMETER; this.EN_LENGTH = rhs.EN_LENGTH; this.EN_FLOW = rhs.EN_FLOW; this.EN_VELOCITY = rhs.EN_VELOCITY; this.EN_HEADLOSS = rhs.EN_HEADLOSS; this.EN_STATUS = rhs.EN_STATUS; this.EN_SETTING = rhs.EN_SETTING; this.EN_ENERGY = rhs.EN_ENERGY; } /// /// 直径 /// public double EN_DIAMETER { get; set; } /// /// 长度 /// public double EN_LENGTH { get; set; } /// /// 流量(计算结果,单位立方米每小时,从开始节点流向结束节点为正) /// public double EN_FLOW { get; set; } /// /// 流速(计算结果,单位米每秒) /// public double EN_VELOCITY { get; set; } /// /// 水头损失(计算结果,如果是水泵,则表示提升水头,值为负) /// public double EN_HEADLOSS { get; set; } /// /// 实际管段状态(0关1开) /// public double EN_STATUS { get; set; } /// /// 实际水泵转速比(计算结果,转换为Hz一般乘以50) /// public double EN_SETTING { get; set; } /// /// 消耗能量(计算结果,千瓦) /// public double EN_ENERGY { get; set; } } }