| | |
| | | [Serializable] |
| | | public class PipeViewModel: LinkViewModel |
| | | { |
| | | [Category("1、基本信息")] |
| | | [DisplayName("长度")] |
| | | [Category("基本信息")] |
| | | [DisplayName("长度(m)")] |
| | | [Browsable(true)] |
| | | public float Length { get { return base.Length; } set { base.Length = value; } } |
| | | |
| | | [Category("2、计算参数")] |
| | | [Category("计算参数")] |
| | | [DisplayName("海森威廉系数")] |
| | | [Browsable(true)] |
| | | public float Roughness { get { return base.Roughness; } set { base.Roughness = value; } } |
| | | |
| | | [Category("2、计算参数")] |
| | | [Category("计算参数")] |
| | | [DisplayName("局部阻力系数")] |
| | | [Browsable(true)] |
| | | public float MinorLoss { get { return base.MinorLoss; } set { base.MinorLoss = value; } } |