namespace Yw.WinFrmUI.HydroW3d { /// /// 水力管网 /// public partial class NetworkViewModel { /// /// /// public NetworkViewModel() { this.Reservoirs = new List(); this.Tanks = new List(); this.Waterboxs = new List(); this.Junctions = new List(); this.Nozzles = new List(); this.Hydrants = new List(); this.Bluntheads = new List(); this.Elbows = new List(); this.Threelinks = new List(); this.Fourlinks = new List(); this.Meters = new List(); this.Flowmeters = new List(); this.Pressmeters = new List(); this.Pipes = new List(); this.Translations = new List(); this.Pumps = new List(); this.Valves = new List(); this.Exchangers = new List(); this.Compressors = new List(); } #region Node /// /// 水库列表 /// public List Reservoirs { get; set; } /// /// 水池列表 /// public List Tanks { get; set; } /// /// 水箱列表 /// public List Waterboxs { get; set; } /// /// 连接节点列表 /// public List Junctions { get; set; } /// /// 喷嘴列表 /// public List Nozzles { get; set; } /// /// 消火栓列表 /// public List Hydrants { get; set; } /// /// 闷头列表 /// public List Bluntheads { get; set; } /// /// 弯头列表 /// public List Elbows { get; set; } /// /// 三通列表 /// public List Threelinks { get; set; } /// /// 四通列表 /// public List Fourlinks { get; set; } /// /// 水表列表 /// public List Meters { get; set; } /// /// 流量计列表 /// public List Flowmeters { get; set; } /// /// 压力表列表 /// public List Pressmeters { get; set; } #endregion #region Link /// /// 管道列表 /// public List Pipes { get; set; } /// /// 过渡件列表 /// public List Translations { get; set; } /// /// 水泵列表 /// public List Pumps { get; set; } /// /// 阀门列表 /// public List Valves { get; set; } /// /// 换热器列表 /// public List Exchangers { get; set; } /// /// 压缩机列表 /// public List Compressors { get; set; } #endregion } }