namespace HStation.Model
{
///
/// 水泵
///
public class RevitPump : RevitParter, IRevitPump
{
///
///
///
public RevitPump() { }
///
///
///
public RevitPump(RevitPump rhs) : base(rhs)
{
this.ModelType = rhs.ModelType;
this.StartCode = rhs.StartCode;
this.EndCode = rhs.EndCode;
this.Power = rhs.Power;
this.Head = rhs.Head;
this.Speed = rhs.Speed;
this.Pattern = rhs.Pattern;
this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList();
this.BoundingBox = rhs.BoundingBox;
}
///
/// 型号
///
public string ModelType { get; set; }
///
/// 上游节点
///
public string StartCode { get; set; }
///
/// 下游节点
///
public string EndCode { get; set; }
///
/// 恒定能量水泵的功率
///
public double Power { get; set; }
///
/// 描述水泵扬程与流量关系的曲线
///
public string Head { get; set; }
///
/// 相对转速设置
///
public double? Speed { get; set; }
///
/// 描述转速设置怎样随时间变化的时间模式
///
public string Pattern { get; set; }
///
/// 属性值列表
///
public List PropValueList { get; set; }
///
/// 位置
///
public RevitBoundingBox BoundingBox { get; set; }
}
}