| | |
| | | public const double WaterDensity = 1000; |
| | | |
| | | /// <summary> |
| | | /// 粗糙系数 |
| | | /// 默认粗糙系数 |
| | | /// </summary> |
| | | public const double Roughness = 110; |
| | | public const double DefaultRoughness = 110; |
| | | |
| | | /// <summary> |
| | | /// 管道长度 |
| | | /// 最小管道长度 |
| | | /// </summary> |
| | | public const double PipeLength = 0.1; |
| | | public const double MinPipeLength = 0.1; |
| | | |
| | | /// <summary> |
| | | /// 水泵长度 |
| | | /// 默认水泵长度 |
| | | /// </summary> |
| | | public const double PumpLength = 1; |
| | | public const double DefaultPumpLength = 1; |
| | | |
| | | /// <summary> |
| | | /// 阀门长度 |
| | | /// 默认阀门长度 |
| | | /// </summary> |
| | | public const double ValveLength = 0.5; |
| | | public const double DefaultValveLength = 0.5; |
| | | |
| | | /// <summary> |
| | | /// 最大行长度 |
| | | /// </summary> |
| | | public const int MaxLine = 255; |
| | | |
| | | } |
| | | } |