C# - SPC(Statistical Process Control)系統 - 6西格瑪數據決策和Chart模塊的開發與實現

Statistical Process Control 簡介

統計過程控制(Statistical Process Control)是一種藉助數理統計方法的過程控制工具。它對生產過程進行分析評價,根據反饋信息及時發現系統性因素出現的徵兆,並採起措施消除其影響,使過程維持在僅受隨機性因素影響的受控狀態,以達到控制質量的目的。算法

   在企業的生產製造過程當中,咱們經常須要採集生產數據,而後對數據進行處理,最後對處理好的數據、調度指令或者決策以報表和數據大屏等方式進行呈現,給與領導層合理科學的決策建議。ide

  本項目主要採用Windows 10 + Visual Studio 2019 + Windows窗體應用(.Net Framework)實現六西格瑪模式數據決策和Chart報表模塊展現,主要用於繼續的學習和研究。工具

六西格瑪核心算法

算法參考公式 點我下載 ,利用算法對數據進行處理後,結合Chart模塊便可實現Chart報表的展現。學習

Chart模塊核心代碼

 1 //定義圖表區域
 2             this.chartMain.ChartAreas.Clear();
 3             ChartArea chartArea1 = new ChartArea("C1");
 4             this.chartMain.ChartAreas.Add(chartArea1);
 5             //定義存儲和顯示點的容器
 6             this.chartMain.Series.Clear();
 7             Series series1 = new Series("S1");
 8             series1.ChartArea = "C1";
 9             this.chartMain.Series.Add(series1);
10             //設置圖表顯示樣式
11             this.chartMain.ChartAreas[0].AxisY.Minimum = 0;
12             this.chartMain.ChartAreas[0].AxisY.Maximum = 100;
13             this.chartMain.ChartAreas[0].AxisX.Interval = 5;
14             this.chartMain.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver;
15             this.chartMain.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver;
16             //設置標題
17             this.chartMain.Titles.Clear();
18             this.chartMain.Titles.Add("S01");
19             this.chartMain.Titles[0].Text = "XXX顯示";
20             this.chartMain.Titles[0].ForeColor = Color.Green;
21             this.chartMain.Titles[0].Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
22             //設置圖表顯示樣式
23             this.chartMain.Series[0].Color = Color.Red;
24             if (this.cmbChartType.Text.ToString() == "折線圖")
25             {
26                 this.chartMain.Titles[0].Text = string.Format("SPC模塊-[{0}]功能測試", "折線圖");
27                 this.chartMain.Series[0].ChartType = SeriesChartType.Line;
28             }
29             else if (this.cmbChartType.Text.ToString() == "波形圖")
30             {
31                 this.chartMain.Titles[0].Text = string.Format("SPC模塊-[{0}]功能測試", "波形圖");
32                 this.chartMain.Series[0].ChartType = SeriesChartType.Spline;
33             }
34             this.chartMain.Series[0].Points.Clear();
View Code

實現效果

 ==============================================================================================測試

做者:Jeremy.Wu 
出處:https://www.cnblogs.com/jeremywucnblog/ 
本文版權歸做者和博客園共有,歡迎轉載【點贊】,轉載請保留此段聲明,且在文章頁面明顯位置給出原文鏈接,謝謝。
this

相關文章
相關標籤/搜索