lixiaojun
2024-08-13 0e0709e63ed50093d09fb88ac1ea4eb9b5a37afc
Hydro/Yw.EPAnet.Calcu.Core/01-network/02-node/02-tank/Tank.cs
@@ -17,6 +17,7 @@
        {
            this.Quality = rhs.Quality;
            this.Position = rhs.Position;
            this.Links = rhs.Links;
            this.PoolElev = rhs.PoolElev;
            this.InitLevel = rhs.InitLevel;
            this.MinLevel = rhs.MinLevel;
@@ -24,7 +25,7 @@
            this.Diameter = rhs.Diameter;
            this.MinVol = rhs.MinVol;
            this.VolCurve = rhs.VolCurve;
            this.Overflow=rhs.Overflow;
            this.Overflow = rhs.Overflow;
        }
        /// <summary>
@@ -36,6 +37,11 @@
        /// 位置
        /// </summary>
        public Position2d Position { get; set; }
        /// <summary>
        /// 相连的管线
        /// </summary>
        public List<ILink> Links { get; set; }
        /// <summary>
        /// 池底标高
@@ -78,9 +84,6 @@
        public bool Overflow { get; set; }
        /// <summary>
        /// 相连的管线
        /// </summary>
        public List<ILink> Links { get; set; }
    }
}