duheng
2024-10-25 93f5c18553c036768ef6202547eeb899511fd50a
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/01-viewmodel/ElbowMatchingViewModel.cs
@@ -1,4 +1,6 @@
namespace HStation.WinFrmUI
using HStation.Assets;
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 弯头匹配ViewModel
@@ -55,6 +57,20 @@
        public string Material { get; set; }
        /// <summary>
        /// 管路连接长度
        /// </summary>
        [DisplayName("连接长度")]
        [Browsable(true)]
        public eLengthType? ConnectionLength { get; set; }
        /// <summary>
        /// 角度
        /// </summary>
        [DisplayName("角度")]
        [Browsable(true)]
        public int? Angle { get; set; }
        /// <summary>
        /// 口径
        /// </summary>
        [DisplayName("口径")]
@@ -102,5 +118,19 @@
        [DisplayName("匹配损失系数")]
        [Browsable(true)]
        public double? MatchingMinorLoss { get; set; }
        /// <summary>
        /// 弯头类型
        /// </summary>
        [DisplayName("弯头类型")]
        [Browsable(true)]
        public eLengthType? MatchingConnectionLength { get; set; }
        /// <summary>
        /// 角度
        /// </summary>
        [DisplayName("匹配角度")]
        [Browsable(true)]
        public int? MatchingAngle { get; set; }
    }
}