From 9dba1b6adc0bbb4aa8cc531f4e6d822bf1a56be3 Mon Sep 17 00:00:00 2001
From: chenn <gu.beic@qq.com>
Date: 星期五, 28 三月 2025 17:45:48 +0800
Subject: [PATCH] 添加例子

---
 WinFrmUI/DPumpHydr.WinFrmUI.Volute/断面设计/ctrlSectionBundleInfo.cs |  246 ++++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 211 insertions(+), 35 deletions(-)

diff --git "a/WinFrmUI/DPumpHydr.WinFrmUI.Volute/\346\226\255\351\235\242\350\256\276\350\256\241/ctrlSectionBundleInfo.cs" "b/WinFrmUI/DPumpHydr.WinFrmUI.Volute/\346\226\255\351\235\242\350\256\276\350\256\241/ctrlSectionBundleInfo.cs"
index 3a2c8b8..83b7c4a 100644
--- "a/WinFrmUI/DPumpHydr.WinFrmUI.Volute/\346\226\255\351\235\242\350\256\276\350\256\241/ctrlSectionBundleInfo.cs"
+++ "b/WinFrmUI/DPumpHydr.WinFrmUI.Volute/\346\226\255\351\235\242\350\256\276\350\256\241/ctrlSectionBundleInfo.cs"
@@ -7,9 +7,10 @@
 using System.Linq;
 using System.Reflection;
 using System.Text;
+using System.Text.RegularExpressions;
 using System.Threading.Tasks;
 using System.Windows.Forms;
-using DPumpHydr.WinFrmUI.RLT.Controls; 
+using DPumpHydr.WinFrmUI.RLT.Controls;
 using DPumpHydr.WinFrmUI.Volute.ViewModel; 
 
 namespace DPumpHydr.WinFrmUI.Volute
@@ -168,22 +169,40 @@
         ViewModel.SectionBundleInfo _sectionBundleInfo = null;
         ViewModel.HdrBaseInfo _hdrBaseInfo = null;
         ViewModel.GeomBaseInfo _geomBaseInfo = null;
-        
+        public void SetBindingData(ViewModel.SectionBundleInfo sectionBundle_info)
+        {
+            _sectionBundleInfo = sectionBundle_info;
+        }
 
+        /// <summary>
+        /// 鏄剧ず鐣岄潰
+        /// </summary>
+        /// <param name="base_info">鍩烘湰鍙傛暟</param>
+        /// <param name="geom_info">鍩哄渾鍙傛暟</param>
+        /// <param name="step_direction">鍓嶈繘/鍚庨��</param>
+        /// <param name="isRefreshModel">鏄惁闇�瑕佽鐩栨柇闈㈠弬鏁�</param>
         public void ShowPage(
             ViewModel.HdrBaseInfo base_info,
             ViewModel.GeomBaseInfo geom_info,
-            DPumpHydr.ViewModel.eWizardStepDiretion step_direction,bool isRefreshModel = true)
+            DPumpHydr.ViewModel.eWizardStepDiretion step_direction, bool isRefreshModel = false)
         {
             if (step_direction == DPumpHydr.ViewModel.eWizardStepDiretion.鍚庨��)
             {
                 return;
             }
-            this._hdrBaseInfo = base_info;
-            this._geomBaseInfo = geom_info;
-
+            if (_hdrBaseInfo == null && _geomBaseInfo == null)
+            {
+                _hdrBaseInfo = base_info;
+                _geomBaseInfo = geom_info;
+            }
+            if (!isRefreshModel)
+            {
+                return;
+            }
             if (_sectionBundleInfo == null)
             {
+                this._hdrBaseInfo = base_info;
+                this._geomBaseInfo = geom_info;
                 _sectionBundleInfo = new ViewModel.SectionBundleInfo();
 
                 _sectionBundleInfo.BaseWidth = _geomBaseInfo.B3;
@@ -196,20 +215,43 @@
                 if (Math.Abs(_sectionBundleInfo.BaseWidth - _geomBaseInfo.B3) < 1 &&
                     Math.Abs(_sectionBundleInfo.BaseCircleRadius - _geomBaseInfo.D3 / 2) < 1)
                 {
+
                     _sectionBundleInfo.BaseWidth = _geomBaseInfo.B3;
                     _sectionBundleInfo.BaseCircleRadius = _geomBaseInfo.D3 / 2;
-                    RefreshShape(_sectionBundleInfo);
+                    if (_hdrBaseInfo.n != base_info.n || _hdrBaseInfo.Q != base_info.Q || _hdrBaseInfo.H != base_info.H || _hdrBaseInfo.IsSXB != base_info.IsSXB)
+                    {
+                        this._hdrBaseInfo = base_info;
+                        this._geomBaseInfo = geom_info;
+                        _sectionBundleInfo.InitialK3(this._hdrBaseInfo, this._geomBaseInfo);
+                        RefreshAllSectPara(_sectionBundleInfo);
+                        _sectionBundleInfo.RecalculateArea(this._hdrBaseInfo, this._geomBaseInfo);
+
+                        RefrehSectBundlePara();
+
+
+                        if (OnRefreshShape != null)
+                        {
+                            ViewModel.SectionBundleInfo paras = GetBindingData(out string error);
+                            if (paras == null)
+                                return;
+                            //textBox鍓茶垖瑙掑害
+                            OnRefreshShape.Invoke(paras);
+                        }
+                        //RefreshShape(_sectionBundleInfo);
+                    }
+                    else
+                    {
+                        this._hdrBaseInfo = base_info;
+                        this._geomBaseInfo = geom_info;
+                        RefreshShape(_sectionBundleInfo);
+                    }
+
                     return;
                 }
             }
 
             RefreshAllSectPara(_sectionBundleInfo);
 
-            if (isRefreshModel == false)
-            {
-                return;
-            }
-      
             RefreshShape(_sectionBundleInfo);
         }
         private void pictureBoxRefreshK3_Click(object sender, EventArgs e)
@@ -226,6 +268,8 @@
             this.textBoxK3.Text = _sectionBundleInfo.K3.ToString();
             this.textBoxV3.Text = _sectionBundleInfo.V3.ToString();
 
+
+            RefrehSectBundlePara();
             if (_sectionBundleInfo.ShapeType == eSectionShapeType.瀵圭О)
             {
                 RBtn鏂潰瀵圭О姊舰.Checked = true;
@@ -244,8 +288,6 @@
                 RBtn涓嶅绉版褰�.Checked = false;
                 RBtn鐭╁舰.Checked = true;
             }
-
-            RefrehSectBundlePara();
         }
         //鏀归潰绉�
         public void RefreshSingleSectArea(int sectIndex, double area)
@@ -291,13 +333,15 @@
 
             _sectionBundleInfo.V3 = Convert.ToDouble(this.textBoxV3.Text);
             for (var argument = 1; argument <= 8; argument++)
-            {
+            {//skyTextBox鏂潰H18
                 var controlname_y1 = $"skyTextBox鏂潰y1{argument}";
                 var controlname_r1 = $"skyTextBox鏂潰r1{argument}";
                 var controlname鏂潰闈㈢Н = $"skyTextBox鏂潰闈㈢Н{argument}";
+                var controlnameh = $"skyTextBox鏂潰H1{argument}";
                 SkyTextBox controlY1 = this.Controls.Find(controlname_y1, true).FirstOrDefault() as SkyTextBox;
                 SkyTextBox controlR1 = this.Controls.Find(controlname_r1, true).FirstOrDefault() as SkyTextBox;
                 SkyTextBox control鏂潰闈㈢Н = this.Controls.Find(controlname鏂潰闈㈢Н, true).FirstOrDefault() as SkyTextBox;
+                SkyTextBox controlH = this.Controls.Find(controlnameh, true).FirstOrDefault() as SkyTextBox;
                 if (controlY1 != null)
                 {
                     _sectionBundleInfo.GaMa_Left[argument] = Convert.ToDouble(controlY1.Text);
@@ -312,6 +356,9 @@
 
                 if (control鏂潰闈㈢Н != null)
                     _sectionBundleInfo.Area[argument] = Convert.ToDouble(control鏂潰闈㈢Н.Text);
+
+                if (controlH != null)
+                    _sectionBundleInfo.H[argument] = Convert.ToDouble(controlH.Text);
             }
 
 
@@ -327,13 +374,13 @@
                 error = "璇疯緭鍏ュ繀濉」锛�";
                 isOk = false;
             }
-            if (string.IsNullOrEmpty(skyTextBox鏂潰y18.Text) || double.Parse(skyTextBox鏂潰y18.Text) <= 0)
+            if (string.IsNullOrEmpty(skyTextBox鏂潰y18.Text) || (!RBtn鐭╁舰.Checked && double.Parse(skyTextBox鏂潰y18.Text) == 0) || double.Parse(skyTextBox鏂潰y18.Text) < 0)
             {
                 error = "璇疯緭鍏ュ繀濉」锛�";
                 isOk = false;
 
             }
-            if (string.IsNullOrEmpty(skyTextBox鏂潰r18.Text) || double.Parse(skyTextBox鏂潰r18.Text) <= 0)
+            if (string.IsNullOrEmpty(skyTextBox鏂潰r18.Text) || (!RBtn鐭╁舰.Checked && double.Parse(skyTextBox鏂潰r18.Text) == 0) || double.Parse(skyTextBox鏂潰y18.Text) < 0)
             {
                 error = "璇疯緭鍏ュ繀濉」锛�";
                 isOk = false;
@@ -420,7 +467,22 @@
                 int index = Convert.ToInt32(lastChar);
                 if (!double.TryParse(skytextBox.Text, out double result) && !string.IsNullOrEmpty(skytextBox.Text))
                 {
+                    result = _sectionBundleInfo.GaMa_Left[index];
                     skytextBox.Text = _sectionBundleInfo.GaMa_Left[index].ToString();
+                }else if(result>45)
+                {
+                    MessageBox.Show("璇疯緭鍏ュ皬浜�45搴︾殑瑙掑害");
+                    skytextBox.Text = _sectionBundleInfo.GaMa_Left[index].ToString();
+                }
+                else
+                {
+                    //var initialR = _sectionBundleInfo.CalInitialR(_hdrBaseInfo, _geomBaseInfo);
+                    var height = _sectionBundleInfo.CalcHeight(_geomBaseInfo, index, result, _sectionBundleInfo.R_Left[index]);
+                    var R = _sectionBundleInfo.CheckChamferR(height, index, result, _sectionBundleInfo.R_Left[index]);
+                    SkyTextBox controlh1 = this.Controls.Find($"skyTextBox鏂潰H1{index}", true).FirstOrDefault() as SkyTextBox;
+                    SkyTextBox controlr1 = this.Controls.Find($"skyTextBox鏂潰r1{index}", true).FirstOrDefault() as SkyTextBox;
+                    controlh1.Text = height.ToString();
+                    controlr1.Text = R.ToString();
                 }
             }
         }
@@ -435,11 +497,16 @@
                 {
                     skytextBox.Text = _sectionBundleInfo.GaMa_Right[index].ToString();
                 }
-                if (string.IsNullOrEmpty(skytextBox.Text))
+                if (string.IsNullOrEmpty(skytextBox.Text) || Convert.ToDouble(skytextBox.Text) == 0)
                 {
                     MessageBox.Show("r涓嶅悎鐞嗭紒璇烽噸鏂拌緭鍏�");
                 }
-
+                double v = 0;
+                if (!double.TryParse(skytextBox.Text, out v))
+                {
+                    MessageBox.Show("璇疯緭鍏ユ暟瀛楁牸寮忥紒");
+                    return;
+                }
                 if (Convert.ToDouble(skytextBox.Text) != _sectionBundleInfo.R_Left[index])
                 {
                     Judgment_R(index);
@@ -452,23 +519,51 @@
 
         }
 
-        public bool Judgment_R(int index)
+        private bool Judgment_R(int index)
         {
             bool isreasonable = true;
             SkyTextBox controlr1 = this.Controls.Find($"skyTextBox鏂潰r1{index}", true).FirstOrDefault() as SkyTextBox;
             SkyTextBox controlGaMa1 = this.Controls.Find($"skyTextBox鏂潰y1{index}", true).FirstOrDefault() as SkyTextBox;
             SkyTextBox controlh1 = this.Controls.Find($"skyTextBox鏂潰H1{index}", true).FirstOrDefault() as SkyTextBox;
-            //鐩墠杩欎釜鍙娴嬪绉扮殑 b3-2(r1-(tan(Gama1)*(h-r1))) //鑻ヤ笉瀵圭О  b3-锛坮1-(tan(Gama1)*(h-r1))锛�-锛坮2-(tan(Gama2)*(h-r2))锛�
-            var a = _sectionBundleInfo.BaseWidth - 2 * (Convert.ToDouble(controlr1.Text) - (Math.Tan(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180) * (Convert.ToDouble(controlh1.Text) - Convert.ToDouble(controlr1.Text))));//_sectionBundleInfo.R_out/200
-            if ((!RBtn鐭╁舰.Checked && _sectionBundleInfo.BaseWidth-2*(Convert.ToDouble(controlr1.Text) - ( Math.Tan(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180)* (Convert.ToDouble(controlh1.Text)- Convert.ToDouble(controlr1.Text)))) < 10) || Convert.ToDouble(controlr1.Text) == 0)
+            if (string.IsNullOrEmpty(controlr1.Text))
+                return true;
+            if (string.IsNullOrEmpty(controlGaMa1.Text))
+                return true;
+            if (string.IsNullOrEmpty(controlh1.Text))
+                return true;
+
+            if (RBtn鐭╁舰.Checked)
             {
-                controlr1.BackColor = Color.OrangeRed;
-                MessageBox.Show("r涓嶅悎鐞嗭紒璇烽噸鏂拌緭鍏�");
+                if (Convert.ToDouble(controlh1.Text) - Convert.ToDouble(controlr1.Text) < 1 || _sectionBundleInfo.BaseWidth - (Convert.ToDouble(controlr1.Text) * 2) < 1)
+                {
+                    controlr1.BackColor = Color.OrangeRed;
+                    MessageBox.Show("r涓嶅悎鐞嗭紒璇烽噸鏂拌緭鍏�");
+                }
+                else
+                {
+                    controlr1.BackColor = Color.White;
+                }
             }
             else
             {
-                controlr1.BackColor = Color.White;
+                //鐩墠杩欎釜鍙娴嬪绉扮殑 //鑻ヤ笉瀵圭О鏇存崲鍗婂緞瑙掑害绛夊弬鏁伴噸鏂拌绠楀彟涓�杈箈
+                var x = Math.Tan(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180) * Convert.ToDouble(controlh1.Text)
+                             - (Math.Tan(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180) * Math.Tan(Convert.ToDouble(controlGaMa1.Text) / 2 * Math.PI / 180) * Convert.ToDouble(controlr1.Text))
+                             - (Math.Tan(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180) * Convert.ToDouble(controlr1.Text)) - Convert.ToDouble(controlr1.Text);
+                var c = _sectionBundleInfo.R_out / 1000;
+                var TopWidth = _sectionBundleInfo.BaseWidth + (2 * x);
+                var Slash = (Convert.ToDouble(controlh1.Text) - Convert.ToDouble(controlr1.Text) - (Math.Sin(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180) * Convert.ToDouble(controlr1.Text))) / Math.Cos(Convert.ToDouble(controlGaMa1.Text) * Math.PI / 180);
+                if ((!RBtn鐭╁舰.Checked && (TopWidth < c || Slash < c - 0.1))) // 
+                {
+                    controlr1.BackColor = Color.OrangeRed;
+                    MessageBox.Show("r涓嶅悎鐞嗭紒璇烽噸鏂拌緭鍏�");
+                }
+                else
+                {
+                    controlr1.BackColor = Color.White;
+                }
             }
+
 
             return isreasonable;
         }
@@ -526,7 +621,9 @@
         {
             if (RBtn鏂潰瀵圭О姊舰.Checked)
             {
-                skyTextBox鏂潰y18.Enabled = true;
+                RefrehSectBundlePara();
+                RefreshShape(_sectionBundleInfo);
+                //skyTextBox鏂潰y18.Enabled = true;
                 //skyTextBox鏂潰r18.Enabled = false;
             }
         }
@@ -535,7 +632,9 @@
         {
             if (RBtn涓嶅绉版褰�.Checked)
             {
-                skyTextBox鏂潰y18.Enabled = true;
+                RefrehSectBundlePara();
+                RefreshShape(_sectionBundleInfo);
+                //skyTextBox鏂潰y18.Enabled = true;
                 //skyTextBox鏂潰r18.Enabled = true;
             }
         }
@@ -552,7 +651,7 @@
                 return;
 
             var g = 9.81;
-            this.textBoxV3.Text = Math.Round(K3 * Math.Sqrt(2 * g * _hdrBaseInfo.Q), 2).ToString();
+            this.textBoxV3.Text = Math.Round(K3 * Math.Sqrt(2 * g * _hdrBaseInfo.H), 2).ToString();
         }
 
         public Func<ViewModel.SectionBundleInfo, List<int>> OnRefreshShape = null;
@@ -622,14 +721,15 @@
                 SkyTextBox control鏂潰闈㈢Н = this.Controls.Find(controlname鏂潰闈㈢Н, true).FirstOrDefault() as SkyTextBox;
                 SkyTextBox controH1 = this.Controls.Find(controlnameHeight, true).FirstOrDefault() as SkyTextBox;
 
-                if (controly1 != null)
-                    controly1.Text = _sectionBundleInfo.GaMa_Left[sect_index].ToString();
-                if (controly2 != null)
-                    controly2.Text = _sectionBundleInfo.R_Left[sect_index].ToString();
+                controly1.Enabled = true;
                 if (control鏂潰闈㈢Н != null)
-                    control鏂潰闈㈢Н.Text = _sectionBundleInfo.Area[sect_index].ToString();
+                    control鏂潰闈㈢Н.Text = Math.Round(_sectionBundleInfo.Area[sect_index], 1).ToString();
                 if (controH1 != null)
-                    controH1.Text = _sectionBundleInfo.H[sect_index].ToString();
+                    controH1.Text = Math.Round(_sectionBundleInfo.H[sect_index], 1).ToString();
+                if (controly2 != null)
+                    controly2.Text = Math.Round(_sectionBundleInfo.R_Left[sect_index], 1).ToString();
+                if (controly1 != null)
+                    controly1.Text = Math.Round(_sectionBundleInfo.GaMa_Left[sect_index], 1).ToString();
             }
         }
 
@@ -663,5 +763,81 @@
         {
             NextStep();
         }
+
+        private void RBtn鐭╁舰_CheckedChanged(object sender)
+        {
+            if (RBtn鐭╁舰.Checked)
+            {
+                if(_sectionBundleInfo.GaMa_Left.All(x => x == 0))
+                {
+                    for (var sect_index = 1; sect_index <= 8; sect_index++)
+                    {
+                        var controlnameGama1 = $"skyTextBox鏂潰y1{sect_index}";
+                        SkyTextBox controly1 = this.Controls.Find(controlnameGama1, true).FirstOrDefault() as SkyTextBox;
+                        controly1.Enabled = false;
+                    }
+                    return;
+                }
+                //for (var sect_index = 1; sect_index <= 8; sect_index++)
+                //{
+                //    var controlnameGama1 = $"skyTextBox鏂潰y1{sect_index}";
+                //    SkyTextBox controly1 = this.Controls.Find(controlnameGama1, true).FirstOrDefault() as SkyTextBox;
+                //    controly1.Text = "0";
+                //    controly1.Enabled = false;
+                //}
+                ViewModel.SectionBundleInfo Rec_sectionBundleInfo = _sectionBundleInfo.Copy();
+                Rec_sectionBundleInfo.ShapeType = eSectionShapeType.鐭╁舰;
+                Rec_sectionBundleInfo.ResetAllParas(_hdrBaseInfo, _geomBaseInfo);
+                for (var sect_index = 1; sect_index <= 8; sect_index++)
+                {
+                    var controlnameGama1 = $"skyTextBox鏂潰y1{sect_index}";
+                    var controlnameRia1 = $"skyTextBox鏂潰r1{sect_index}";
+                    var controlname鏂潰闈㈢Н = $"skyTextBox鏂潰闈㈢Н{sect_index}";
+                    var controlnameHeight = $"skyTextBox鏂潰H1{sect_index}";
+
+                    SkyTextBox controly1 = this.Controls.Find(controlnameGama1, true).FirstOrDefault() as SkyTextBox;
+                    SkyTextBox controly2 = this.Controls.Find(controlnameRia1, true).FirstOrDefault() as SkyTextBox;
+                    SkyTextBox control鏂潰闈㈢Н = this.Controls.Find(controlname鏂潰闈㈢Н, true).FirstOrDefault() as SkyTextBox;
+                    SkyTextBox controH1 = this.Controls.Find(controlnameHeight, true).FirstOrDefault() as SkyTextBox;
+                    controly1.Enabled = false;
+                    if (controly1 != null)
+                        controly1.Text = Rec_sectionBundleInfo.GaMa_Left[sect_index].ToString();
+                    if (controly2 != null)
+                        controly2.Text = Rec_sectionBundleInfo.R_Left[sect_index].ToString();
+                    if (control鏂潰闈㈢Н != null)
+                        control鏂潰闈㈢Н.Text = Rec_sectionBundleInfo.Area[sect_index].ToString();
+                    if (controH1 != null)
+                        controH1.Text = Rec_sectionBundleInfo.H[sect_index].ToString();
+                }
+                RefreshShape(Rec_sectionBundleInfo);
+            }
+        }
+
+        private void skyTextBox鏂潰H11_TextChanged(object sender, EventArgs e)
+        {
+            if (sender is SkyTextBox skytextBox)
+            {
+                string lastChar = skytextBox.Name[skytextBox.Name.Length - 1].ToString();
+                int index = Convert.ToInt32(lastChar);
+                if (!double.TryParse(skytextBox.Text, out double resultH) && !string.IsNullOrEmpty(skytextBox.Text))
+                {
+                    resultH = _sectionBundleInfo.H[index];
+                    skytextBox.Text = _sectionBundleInfo.H[index].ToString();
+                }
+                else
+                {
+                    SkyTextBox controlGaMa1 = this.Controls.Find($"skyTextBox鏂潰y1{index}", true).FirstOrDefault() as SkyTextBox;
+                    SkyTextBox controlr1 = this.Controls.Find($"skyTextBox鏂潰r1{index}", true).FirstOrDefault() as SkyTextBox;
+                    if (!double.TryParse(controlGaMa1.Text, out double resultGame) && !string.IsNullOrEmpty(controlGaMa1.Text))
+                    {
+                        resultH = _sectionBundleInfo.GaMa_Left[index];
+                    }
+                    var R = _sectionBundleInfo.HCalR(_geomBaseInfo, index, resultGame, resultH);
+                    R = _sectionBundleInfo.CheckChamferR(resultH, index, resultH, R);
+                    skytextBox.Text = resultH.ToString();
+                    controlr1.Text = R.ToString();
+                }
+            }
+        }
     }
 }

--
Gitblit v1.9.3