tangxu
2024-10-23 6a9aa8b628ace581657972a2e502ceb9a58b2395
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DPumpHydr.WinFrmUI.Volute.ViewModel
{
    /// <summary>
    /// 单个端面参数
    /// </summary>
    public class SectionShapePara
    {
        public int Index { get; set; }//断面序号  第8断面就是8 第一断面就是1
        public double Gama_Left { get; set; }//角度1 
        public double Gama_Right { get; set; }//角度2
        public double H { get; set; }//高度
        public double R_out { get; set; }//外围的半径 UG中R4
        public double R_Left { get; set; }//角度1边对应的圆角半径 UG中R1
        public double R_Right { get; set; }//角度2边对应的圆角半径 UG中R2
        public double SectionArea { get; set; }//面积:由occ计算
        public double BaseWidth { get; set; }//底部宽度 就是B3
        public double BaseCircleRadius { get; set; }//底部圆半径 就是D3/2
    }
}