chenn
2025-04-19 96095f8ac4b464540cd2c0bd7308916a137c5041
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DPumpHydr.OpenFwUI.Volute.OccModel
{
    public  class SectionParam
    {
        public int Index;
        public double Gama_Left;
        public double Gama_Right;
        public double H;
        public double R_out;
        public double m_dR_Left;
        public double R_Right;
        public double BaseWidth;
        public double BaseCircleRadius;
    };
}