1. Introduction
The rolling bearing is one of the most commonly used components in rotating machinery and equipment [1,2]. However, the running state of the rolling bearings are easily affected by shock and vibrations, and incomplete statistics show that about 30% of rotating machinery failures are caused by bearing failures [3,4]. The failures of rolling bearings often develop from the normal stage to the incipient stage, then enter the stage of repeated failure, and finally reach the stage of complete breakdown. The serious faults do not occur in an instant, but has a process of gradual deterioration [5,6,7]. Therefore, it is of great significance to study the incipient fault detection of rolling bearings, find the incipient signal characteristics of faults, and eliminate the safety hazards in time when the fault has not developed toward a serious degree [8,9].
The fault detection methods mainly include model-driven and data-driven methods. Some scholars have established rolling bearings degradation models by analyzing the prior physical knowledge of rolling bearings [10,11], or completed the incipient fault detection of rolling bearings by analyzing the characteristic frequency of failure of rolling bearings [12,13]. However, the model-based method requires an accurate prior physical model of rolling bearings. The motion and internal stress of rolling bearings are complicated, which causes the decline of accuracy and generalization. The data-driven method is used to finding incipient failures by analyzing the collected data, and is more suitable for incipient failure detection of current large-scale industrial processes. The deep learning theory brings opportunities to solve the feature extraction problems in rolling bearings fault detection with its powerful feature extraction capabilities [14,15,16,17]. By continuously increasing the abstraction of various representations, rich and differentiated features can be obtained and studied. However, the computational intensity of the complicated model becomes stronger, which will lead to a decrease in the training and detecting speed of the system in a large network structure. The method based on signal processing is also a common detection method for incipient faults [18,19,20]. For example, the signal feature processing based on the wavelet variation method [21] and empirical mode decomposition method [22] has been generalized successfully in many applications. However, the incipient fault features are usually weak and buried in the noises, and the noise in the entire signal makes the normal state similar to the actual incipient fault, thus affecting the effect of fault detection.
Many scholars have proposed many methods for fault detection, but incipient fault detection still mainly focuses on the following challenges [23,24,25]: 1. The incipient failure characteristics are weak, and it is difficult to extract the fault characteristics. 2. The vibration signal is a kind of non-linear and non-stationary signal, which brings difficulty to extract the rolling bear fault weak feature 3. The collected signals can be easily affected by the noise and transmission loss, which makes it difficult to extract signal characteristics. Therefore, the weak fault feature extraction is the key technology for incipient fault detection of rolling bearings.
Literature [26] proposed an incipient fault detection method based on the Deep Principal Component Analysis (Deep PCA). This method is used to the principle of deep decomposition to accurately divide the data to extract weak fault features and detect incipient faults. However, Deep PCA is a linear stationary transformation method, when it is used for a monitoring non-linear time-varying system, its performance is greatly reduced since it does not fully take account of the characteristics of the actual system. In order to solve this problem, many non-linear time-varying fault detection methods have been proposed [27,28,29,30]. Schölkopf found that the Kernel Principal Component Analysis (KPCA) was a common nonlinear principal component analysis method when researching support vector classification algorithms [31]. It maps the input vector to a high-dimensional space through some preselected non-linear mapping, so that the input vector has better separability, and then performs linear principal component analysis on the mapped data in the high-dimensional space to obtain the non-linear principal components. However, the vibration signals are time series data arranged according to the time axis, and the system model will change gradually when the bearing is running. Normal parameters often deviate from the statistical boundary of the model, causing the original model to lose its existing effect and lead to a false alarm.
Aiming at the problems brought by the weak incipient fault characteristics, this paper proposes a nonlinear dynamic incipient fault detection method for rolling bearings. This method first establishes a dynamic kernel matrix by Dynamic Kernel Principal Component Analysis (DKPCA) method. Then the moving window algorithm is used to update the latest samples to the dynamic kernel matrix and discard the oldest samples without losing the time dynamics of the data during the model building process. Finally, the updated matrix is decomposed into multiple subspaces for detection, and fault information is fully mined. Based on this, the model update process is improved through the autocorrelation matrix, which simplifies the recursive formula and improves the calculation speed. The rest of the paper is arranged as follows. The basic theory is introduced in the second part. The nonlinear dynamic incipient fault detection method is proposed in the third part. The feasibility of the proposed method is proved by simulation experiments in the fourth part. The conclusion of proposed method is made in the fifth part. 2. Preliminary 2.1. Kernel Principal Component Analysis Method
Kernel Principal Component Analysis (KPCA) is a kind of non-linear principal component analysis [32]. This method uses kernel functions to map non-linear data to high-dimensional linear space, and performs linear principal component analysis on the mapped data in high-dimensional space. KPCA can effectively eliminate redundancy among data and spatial correlation, non-linear feature principal components for extracting main data information.
Let the data set=[x1,x2…,xn]T∊Rn∗m, wherenis the sample number and m is the observed variable. Formula (1) is the kernel functionK(xi,xj):
K(xi,xj)=exp(−‖xi−xj‖22σ2)
The flow chart of KPCA is shown in Figure 1:
2.2. Adaptive Dynamic Method
The vibration signal collected during the running of rolling bearings reflects the change of the bearing with the running time [33,34]. Aiming at this time correlation, a moving window algorithm was used to update the model in real time to achieve adaptive detection. On this basis, combined with the autocorrelation matrix, the online update speed was approximately doubled.
In the process of the update model, the recursive moving window is 1, and the update window length isL, that is, the covariance matrix is updated everyLdata collection. Let the mean valueX¯aand the covarianceRaof the previous matrix blockXabe known then the mean valueX¯mand covarianceRmofXmis:
X¯m=LL−1X¯a−1L−1xa
Rm=L−1L−2(Ra−1Lxa−L−1 xa−L−1T−∑a−1ΔX¯maΔX¯ma T ∑a−1)
According toX¯mandRm, the mean valueX¯a+1and covarianceRaofXaas follows:
X¯a+1=L−1LX¯m+1Lxa+L
Ra+1=L−2L−1Rm+1L−1xa+L xa+LT+∑a+L−1ΔX¯m(a+L)ΔX¯m(a+L) T ∑a+L−1
where,ΔX¯ma=X¯m−X¯a,ΔX¯m(a+1)=X¯a+1−X¯m.
According to Formulas (2)–(5), updating the covariance can avoid the complexity of calculating large block matrices and matrix multiplication, but the calculation steps are still complicated. The online update rate can quickly increased through the autocorrelation matrix:
∑a−1ΔX¯maΔX¯ma T ∑a−1=1L2xa xaT
∑a+L−1ΔX¯m(a+L)ΔX¯m(a+L) T ∑a+L−1=1L2xa+L xa+LT
Substitute Formulas (3), (6), and (7) into Formula (5) obtaining the Formula (8):
Ra+1=Ra+L2+L−1L2(L−1)(xa+L xa+LT−xa xaT)
The improved model only needs to directly calculateXa+1throughXa, which reduces the calculation of the number of steps from four to just two, and the online update rate is improved by double. It saves the storage space of hardware and greatly improves the calculation efficiency.
3. Nonlinear Dynamic Incipient Fault Detection Method Due to the KPCA dynamic model method discards some fault features when extracting the main components, which lead to this method cannot accurately detect weak fault information. This paper combining PCA a deep decomposition theory proposes a nonlinear dynamic incipient fault detection method based on Deep Adaptive Dynamic Kernel Principal Component Analysis (Deep ADKPCA). This method decomposes the data set and retains most of the fault information, which can fully mine the data to obtain more accurate fault information to achieve the purpose of incipient fault detection. 3.1. The Deep Decomposition Principle In order to even better extract the feature of the weak fault in the vibration signal, combining the deep decomposition theorem, the original space is decomposed into multiple data processing layers, and the weak fault information in the signal is deeply mined to achieve the effect of incipient fault detection.
According to the method in Section 2.1, the dynamic kernel matrix was decomposed into the principal component space and the residual space is shown in the Formula (9):
XK=XK11+XK12
where,XK11andXK12represent the first-order subprincipal component space and subresidual space of the original dynamic kernel matrixXK, respectively. It can be expressed as Formula (10):
XK11=P11 P11TXK
XK12=(I−P11 P11 T)XK
where,P11is the principal feature vector ofXK. Continue to divideXK11andXK12to obtain the second-order subprincipal component spaceXK21,XK23and subresidual spaceXK22,XK24. By analogy, the original dynamic kernel matrixXKcan be expressed as the sum of2isubspaces, whereirepresents the order. The subspaceXKijcan be expressed as Formula (11):
XKij={Pij Pij T XK i−1 ,(j+1)/2 j is odd(I−Pij Pij T)XK i−1, j2 j is even
By increasing the order of the Deep ADKPCA method, extremely weak fault information can be detected, thereby achieving incipient fault detection. The structure of Deep ADKPCA is shown in Figure 2:
3.2. The process of Deep ADKPCA
Firstly, the EMD method was used to decompose the vibration signal to obtainnIMF components, secondly thenIMF components were composed into a matrix, and thirdly the matrix was obtained by kernel transformation to obtain a dynamic kernel matrix. Eigenvalue decomposition was performed on the dynamic kernel matrix to obtain the principal component space and residual space. Finally, the subprincipal component space and the subresidual space were decomposed multiple times to obtaini-layer subspaces, calculate the statistics, and control limits of each subspace and compare them to determine whether a fault occurs.
TheTij2andSPEijstatistics for each subspaceXKijas Formulas (12) and (13):
Tij2=XK T Pi+1, 2j−1 Λij−1 Pi+1 2j−1T XK
SPEij=∑c=1ntij c2−∑c=1aijtij c2
where,aijis the number of principal elements of the subspaceXKij.
TheTij2andSPEijcontrol the limit for each subspaceXKij:
Tij2satisfies the F distribution, and its control limit is shown in Formula (14):
Tij 2~aij(N2−1)N(N−aij)Faij,N−aij
SPEijsatisfies theχ2distribution, and its control limit is shown in Formula (15):
δij 2=gij χ2(hij)
where,gij=ρij22μij,hij=2μij 2ρij2.μijandρij2are the mean and variance ofSPEij.
The flowchart of the fault detection method based on Deep ADKPCA is shown in Figure 3:
4. Experimental Results and Analysis
This section used the comprehensive simulation test bench for mechanical failure to perform experiments as shown in Figure 4. The experimental device included a comprehensive mechanical fault simulation test rig, AIC9916FS comprehensive fault diagnosis and analysis system software, FL6816L16 channel sensor, BSZ800D-16 vibration signal acquisition instrument, and computer storage device. In the experiment, the speed was 1730 r/min.
There were three sets of data in the experiment. The first set was the vibration signal of a normal undamaged rolling bearing to establish an offline model. The second set was the vibration signal of the outer ring fault rolling bearing with a fault diameter of 0.2 mm, and the last set was the vibration signal of the rolling body fault rolling bearing with a fault diameter of 0.2 mm. The online monitoring part used the fault data collected by the second and third sets. Each set of vibration signal data collected 1024 samples, that isn=1024. The update window sizeL=3. The first control limit was calculated through normal data in the offline modeling process, and then in the online monitoring process, the model was updated every three samples collected. The selected fault diameter was relatively small, and the fault features in the vibration signal were weak, so these faults were accounted as the incipient fault.
4.1. Simulation Results and Analysis of The Rolling Bearing Outer Ring Faults
4.1.1. The Rolling Bearing Outer Ring Fault Simulation Results
When there is a defect point on the outer surface of a rolling bearing, the rolling bearing passes the defect point during operation, which will generate a periodic pulse force to the system. Generally, because the outer ring is fixed, the pulse intensity of each cycle is considered as constant, and the periodic pulse signal presents the law of periodic equal amplitude vibration changes [35]. This section simulates the incipient failure of the rolling bearing outer ring.
The validity and accuracy of proposed methods were tested, and the results were also compared with other known methods such as ADKPCA, Deep KPCA, and Deep DKPCA.
The original data was divided into multiple subspaces according to the steps in Section 3.2, and calculate theTij2andQij control limits and statistics of each subspace. The results are shown in Figure 5. Figure 5a,b show the simulation results ofT012andQ01statistics of the original spaceX based on the Deep ADKPCA method, that is, the simulation results based on the ADKPCA method. Figure 5c–j show the simulation results ofTij2andQijstatistics of the second-order subspaceX21–X24 based on the Deep ADKPCA method, respectively. In the figures, the solid black line is the statistic, and the red dotted line is the control limit with 95% confidence. If the statistics exceeded the control limit, a fault occurred, otherwise it is normal. Since the model was updated every three sets of data when updating the model, the number of samples in the figure was about 340. From Figure 5a,b,T012andQ01 were slightly affected by this fault. Figure 5d,f shows the detection results of incipient failures of rolling bearings outer rings ofQ21andQ22, we could obtain thatQ21andQ22 were not sensitive to this fault. Figure 5g,i show the results of theT232andT242statistics on the fault detection. From the image, it can be seen thatT232andT242were more sensitive to the fault, the fault detection rate was around 90%. So, Deep ADKPCA the method had a good incipient fault detection capability.
Figure 6a–h describes the simulation results ofTij2andQijstatistics of the second-order subspaceX21–X24 based on the Deep KPCA method, respectively. Figure 6b,c,d shows the detection results of incipient failures of rolling bearing outer rings ofT222,Q21,andQ22, we could obtain thatT222,Q21,andQ22 were less affected by this fault. From Figure 6g, we could obtain thatT242was more sensitive to the fault. The Deep KPCA method has some incipient fault detection capabilities, but it still has some disadvantages compared to the Deep ADKPCA method.
Figure 7a–h describes the simulation results ofTij2andQijstatistics of the second-order subspaceX21–X24 based on the Deep DKPCA method, respectively. Figure 7a,g describes the detection results of incipient failures of rolling bearing outer rings ofT212andT242, the rolling bearing outer rings fault could be successfully detected byT212andT242 . From Figure 7c, we could obtain that this fault had no obvious influence onT222.
4.1.2. Performance Comparison
This section compared the experimental results of ADKPCA, Deep DPCA, Deep DKPCA, and Deep ADKPCA by analyzing the fault detection rate and detection delay of the incipient failure experiment results of the rolling bearing outer ring. The detection delay refers to the interval from failure to detection. The fault detection rate refers to the ratio of the number of detected failures to the total number of failures. In the experiments, the thresholds of ADKPCA, Deep DPCA, Deep DKPCA, and Deep ADKPCA method were determined by the same confidence level, and the false detection rate of all methods was similar, so it was not used as the evaluation index.
Figure 8a shows the fault detection rate of rolling bearing outer ring fault by ADKPCA, Deep KPCA, Deep DKPCA, and Deep ADKPCA method. The fault detection rate of the ADKPCA fault detection method was 62.86%. The detection effect by ADKPCA was low, this method basically did not have incipient fault detection capability. The fault detection rate of Deep KPCA and Deep DKPCA was about 80%, compared with ADKPCA method the detection rate had increased, but the detection capability still needs to be improved. The fault detection rate of Deep ADKPCA was 92.43%, which was significantly higher than other methods, and had a certain incipient fault detection capability.
Figure 8b shows the detection delay of the rolling bearing outer ring fault by ADKPCA, Deep KPCA, Deep DKPCA, and Deep ADKPCA method. The ADKPCA method detected a failure at the fifth augmented data point, that is, at approximately the 15th sampling point. We could obtain that the Deep KPCA and Deep DKPCA methods were the 7th sampling points. The Deep ADKPCA method detected a failure at the second augmented data point, that is, at approximately the 6th sampling point. It can be seen from the failure delay that the Deep ADKPCA method could detect the incipient failure of the rolling bearing outer ring earlier.
Therefore, the validity and accuracy of proposed methods were better than that of other methods. 4.2. Simulation Results and Analysis of The Rolling Bearing Rolling Body Faults
4.2.1. The Rolling Body Fault Simulation Results
The fault characteristics of rolling elements were more complicated, which was determined by the motion characteristics of rolling elements. When the rolling bearing is in operation, it must not only ensure the rotation with the cage, but also complete its own rotation [36]. When a rolling body fails, the modulation frequency of its high-frequency resonance signal will be consistent with the rotation frequency of the cage, and the signal in the frequency domain will have a larger amplitude spectral line. Theoretically, the sideband distance on both sides of the spectral line should be consistent with the rotation frequency of the cage. However, due to the interference of the rolling motion of the rolling body, the performance of the actual collected vibration signal had weak characteristics. Fault detection was difficult. This section tested the incipient failure of rolling elements to verify the accuracy of the proposed Deep ADKPCA method. The simulation results were as follows.
The validity and accuracy of proposed methods were tested, and the results were also compared with other known methods such as ADKPCA, Deep KPCA, and Deep DKPCA.
Figure 9 describes the simulation results of the Deep ADKPCA fault detection method for the rolling bearing rolling body. Figure 9a,b shows the simulation results ofT012andQ01statistics of the original spaceX based on the Deep ADKPCA method, that is, the simulation results based on the ADKPCA method. Figure 9c–j shows the simulation results ofTij2andQijstatistics of the second-order subspaceX21–X24 based on the Deep ADKPCA method, respectively. It can be seen from Figure 9a,b that the failure detection rate of the ADKPCA method was about 50%, this method basically did not have incipient fault detection capabilities. Figure 9c shows the detection result of the fault by theT212statistic. It can be seen from the image that theT212 statistic was less sensitive to the fault than other statistic. Figure 9g,i,h showsT232,T242,andQ23statistics for the fault detection result. From the images we could obtain thatT212,T242, andQ23were more sensitive to this fault, and the fault detection rate was about 85%. So, the Deep ADKPCA method had a good incipient fault detection capability.
Figure 10 describes the simulation results of the Deep KPCA fault detection method for the rolling bearing rolling body. Figure 10a–h describes the simulation results ofTij2andQijstatistics of the second-order subspaceX21–X24 based on the Deep KPCA method, respectively. Figure 10c,e shows the detection results of incipient failures of rolling bearing outer rings ofT222andT232, we could obtain thatT222andT232 were less affected by this fault. From Figure 10g, we could obtain thatT242was more sensitive to the fault. The Deep KPCA method had some incipient fault detection capabilities, but it still had some disadvantages compared to the Deep ADKPCA method.
Figure 11 describes the simulation results of the Deep DKPCA fault detection method for the rolling bearing rolling body. Figure 11a–h describes the simulation results ofTij2andQijstatistics of the second-order subspaceX21–X24 based on the Deep DKPCA method, respectively. Figure 11b,g describes the detection results of incipient failures of rolling bearing outer rings ofQ21andT242, the rolling bearing outer rings fault could be successfully detected byQ21andT242 . From Figure 11e, we could obtain that this fault had no obvious influence onT232. Compared with the Deep KPCA method, the incipient fault detection capability of Deep DKPCA method was improved. This is because the Deep DKPCA method considered the timing correlation characteristic, but it still had some disadvantages compared to the Deep ADKPCA method.
4.2.2. Performance Comparison
This section compared the experimental results of ADKPCA, Deep KPCA, Deep DKPCA, and Deep ADKPCA by analyzing the failure detection rate and detection delay of the incipient failure experimental results of rolling bearing rolling elements.
Figure 12a shows the fault detection rate of the rolling bearing rolling body fault by ADKPCA, Deep KPCA, Deep DKPCA, and Deep ADKPCA method. The failure detection rate of the ADKPCA failure detection method was 57.14%, which proved that this method basically did not have incipient fault detection capability. The fault detection rate of Deep KPCA and Deep DKPCA was about 80%, compared with ADKPCA method the detection rate had increased, but the detection capability still needs to be improved. Deep ADKPCA had a fault detection rate of 85.71%, which was significantly higher than other methods, and had a certain incipient fault detection capability.
Figure 12b shows the detection delay of the rolling bearing rolling body fault by ADKPCA, Deep KPCA, Deep DKPCA, and Deep ADKPCA method. The ADKPCA method detected a failure at the 9th augmented data point, that is, at about the 27th sampling point. The Deep KPCA and Deep DKPCA methods found failures at the 14th and 5th sampling points, respectively. These methods could quickly detect the incipient fault. The Deep ADKPCA method detected failures at the beginning of the inspection without a time delay. From Figure 9b we could obtain thatQ21was more sensitive to this fault, the fault was detected from the beginning of the fault without delay. It could be seen from the failure delay that the Deep ADKPCA method could detect the incipient failure of the rolling bearing outer ring earlier.
It can be seen that Deep ADKPCA method could quickly detect the fault than the other three methods, and its detection rate was also the higher among the four methods. In summary, Deep ADKPCA had good fault detection performance. 5. Conclusions Aiming at the problems that the incipient fault characteristics are weak, and the vibration signals of rolling bearings are a set of time series with non-linear and timing correlation, a nonlinear dynamic incipient fault detection method based on Deep ADKPCA was proposed. This method combines the advantages of Deep PCA and moving window algorithm, effectively captures the noise information by capturing the timing relationship between variables, fully mines the fault information in the signal, and improves the incipient detection capability of the fault. The proposed method uses the concept of kernel function, constructs a dynamic non-linear principal component model, and has the ability to handle non-linear and non-stationary signals. Compared with the fault detection results of the ADKPCA, Deep KPCA, and Deep DKPCA methods, the fault detection rate of the Deep ADKPCA method proposed in this paper was more than 85%, the detection delay was almost zero, and the ability to detect incipient faults was significantly improved. It was proved that Deep ADKPCA incipient fault detection method had a certain feasibility. The application of this method in other fields such as motors and rotors needs further research.
Figure 2. The structure of Deep Adaptive Dynamic Kernel Principal Component Analysis (Deep ADKPCA).
Figure 3. The process of Deep Adaptive Dynamic Kernel Principal Component Analysis (Deep ADKPCA).
Figure 5. Experimental results of Deep ADKPCA fault detection method for the rolling bearing outer ring fault. (a) The result ofT012, (b)The result ofQ01, (c) The result ofT212, (d) The result ofQ21, (e) The result ofT222, (f) The result ofQ22, (g) The result ofT232,(h) The result ofQ23, (i) The result ofT242and (j) The result ofQ24.
Figure 6. Experimental results of Deep KPCA fault detection method for the rolling bearing outer ring fault. (a) The result ofT212, (b) The result ofQ21, (c) The result ofT222,(d) The result ofQ22, (e) The result ofT232, (b) The result ofQ23, (g) The result ofT242and (h) The result ofQ24.
Figure 7. Experimental results of the Deep DKPCA fault detection method for the rolling bearing outer ring fault. (a) The result ofT212, (b) The result ofQ21, (c) The result ofT222,(d) The result ofQ22, (e) The result ofT232, (f) The result ofQ23, (g) The result ofT242and (h) The result ofQ24.
Figure 8.(a)The fault detection rate of rolling bearing outer ring fault and (b) the detection delay of rolling bearing outer ring fault.
Figure 9. Experimental results of the Deep ADKPCA fault detection method for the rolling bearing rolling body fault. (a) The result ofT012, (b) The result ofQ01, (c) The result ofT212, (d) The result ofQ21, (e) The result ofT222, (f) The result ofQ22, (g) The result ofT232, (h) The result ofQ23, (i) The result ofT242and (j) The result ofQ24.
Figure 9. Experimental results of the Deep ADKPCA fault detection method for the rolling bearing rolling body fault. (a) The result ofT012, (b) The result ofQ01, (c) The result ofT212, (d) The result ofQ21, (e) The result ofT222, (f) The result ofQ22, (g) The result ofT232, (h) The result ofQ23, (i) The result ofT242and (j) The result ofQ24.
Figure 10. Experimental results of the Deep KPCA fault detection method for the rolling bearing rolling body fault. (a) The result ofT212, (b) The result ofQ21, (c)The result ofT222, (d) The result ofQ22, (e) The result ofT232, (f) The result ofQ23, (g) The result ofT242and (h) The result ofQ24.
Figure 10. Experimental results of the Deep KPCA fault detection method for the rolling bearing rolling body fault. (a) The result ofT212, (b) The result ofQ21, (c)The result ofT222, (d) The result ofQ22, (e) The result ofT232, (f) The result ofQ23, (g) The result ofT242and (h) The result ofQ24.
Figure 11. Experimental results of the Deep DKPCA fault detection method for the rolling bearing rolling body fault. (a) The result ofT212, (b) The result ofQ21, (c) The result ofT222, (d) The result ofQ22, (e) The result ofT232, (f) The result ofQ23, (g) The result ofT242and (h) The result ofQ24.
Figure 11. Experimental results of the Deep DKPCA fault detection method for the rolling bearing rolling body fault. (a) The result ofT212, (b) The result ofQ21, (c) The result ofT222, (d) The result ofQ22, (e) The result ofT232, (f) The result ofQ23, (g) The result ofT242and (h) The result ofQ24.
Figure 12.(a) The fault detection rate of the rolling bearing rolling body fault and (b) the detection delay of the rolling bearing outer rolling body fault.
Author Contributions
Conceptualization, H.S. and X.B.; software, J.G.; validation, J.G., X.B., and L.G.; formal analysis, H.S., X.B., and Z.L.; resources, H.S., X.B., and J.S.; data curation, L.G.; writing-original draft preparation, J.G.; writing-review and editing, H.S. and X.B.; supervision, H.S. and X.B. All authors have read and agreed to the published version of the manuscript.
Acknowledgments
This research was funded by National Science Foundation of China (Nos: 51705341, 51905357, 51675353), Natural Science Foundation of Liaoning Province (No: 2019-ZD-0654).
Conflicts of Interest
The authors declare no conflict of interest
1. Islam, R.; Kim, Y.-H.; Kim, J.; Kim, J.-M. Detecting and Learning Unknown Fault States by Automatically Finding the Optimal Number of Clusters for Online Bearing Fault Diagnosis. Appl. Sci. 2019, 9, 2326.
2. Li, Y.; Yang, Y.; Wang, X.; Liu, B.; Liang, X. Early fault diagnosis of rolling bearings based on hierarchical symbol dynamic entropy and binary tree support vector machine. J. Sound Vib. 2018, 428, 72-86.
3. Wang, Y.; Tang, B.; Qin, Y.; Huang, T. Rolling Bearing Fault Detection of Civil Aircraft Engine Based on Adaptive Estimation of Instantaneous Angular Speed. IEEE Trans. Ind. Inform. 2020, 16, 4938-4948.
4. Li, H.; Liu, T.; Wu, X.; Chen, Q. Research on bearing fault feature extraction based on singular value decomposition and optimized frequency band entropy. Mech. Syst. Signal Process. 2019, 118, 477-502.
5. Mao, W.; Chen, J.; Liang, X.; Zhang, X. A New Online Detection Approach for Rolling Bearing Incipient Fault via Self-Adaptive Deep Feature Matching. IEEE Trans. Instrum. Meas. 2020, 69, 443-456.
6. Tang, L.; Chen, A.Q.; Li, D.J. Time-varying tan-type barrier Lyapunov function-based adaptive fuzzy control for switched systems with unknown dead zone. IEEE Access 2019, 7, 110928-110935.
7. Chen, Y.; Zhang, T.; Luo, Z.; Sun, K. A novel rolling bearing fault diagnosis and severity analysis method. Appl. Sci. 2019, 9, 2356.
8. Duan, Z.; Wu, T.; Guo, S.; Shao, T.; Malekian, R.; Li, Z. Development and trend of condition monitoring and fault diagnosis of multi-sensors information fusion for rolling bearings: A review. Int. J. Adv. Manuf. Technol. 2018, 96, 803-819.
9. Shi, H.; Bai, X.; Zhang, K.; Wu, Y.; Yue, G. Influence of uneven loading condition on the sound radiation of starved lubricated full ceramic ball bearings. J. Sound Vib. 2019, 461, 114910.
10. Li, H.; Niu, Y.; Li, Z.; Xu, Z.; Han, Q. Modeling of amplitude-dependent damping characteristics of fiber reinforced composite thin plate. Appl. Math. Model. 2020, 80, 394-407.
11. Shi, H.; Bai, X. Model-based uneven loading condition monitoring of full ceramic ball bearings in starved lubrication. Mech. Syst. Signal Process. 2020, 139, 106583.
12. Tan, D.; Li, L.; Yin, Z.; Li, D.; Zhu, Y.; Zheng, S. Ekman boundary layer mass transfer mechanism of free sink vortex. Int. J. Heat Mass Transf. 2020, 150, 119250.
13. Skóra, M.; Ewert, P.; Kowalski, C.T. Selected Rolling Bearing Fault Diagnostic Methods in Wheel Embedded Permanent Magnet Brushless Direct Current Motors. Energies 2019, 12, 4212.
14. Wang, X.; Qin, Y.; Wang, Y.; Xiang, S.; Chen, H. ReLTanh: An activation function with vanishing gradient resistance for SAE-based DNNs and its application to rotating machinery fault diagnosis. Neurocomputing 2019, 363, 88-98.
15. Shi, H.; Guo, L.; Tan, S.; Bai, X.; Sun, J. Rolling Bearing Initial Fault Detection Using Long Short-Term Memory Recurrent Network. IEEE Access 2019, 7, 171559-171569.
16. Zhou, Q.; Shen, H.; Zhao, J.; Liu, X.; Xiong, X. Degradation State Recognition of Rolling Bearing Based on K-Means and CNN Algorithm. Shock. Vib. 2019, 2019, 8471732.
17. Eren, L.; Ince, T.; Kiranyaz, S. A Generic Intelligent Bearing Fault Diagnosis System Using Compact Adaptive 1D CNN Classifier. J. Signal Process. Syst. 2018, 91, 179-189.
18. Zheng, K.; Luo, J.; Zhang, Y.; Li, T.; Wen, J.; Xiao, H. Incipient fault detection of rolling bearing using maximum autocorrelation impulse harmonic to noise deconvolution and parameter optimized fast EEMD. ISA Trans. 2019, 89, 256-271.
19. Wang, Y.; Tse, P.W.; Tang, B.; Qin, Y.; Deng, L.; Huang, T. Kurtogram manifold learning and its application to rolling bearing weak signal detection. Measurement 2018, 127, 533-545.
20. Cui, L.; Wang, X.; Wang, H.; Ma, J. Research on Remaining Useful Life Prediction of Rolling Element Bearings Based on Time-Varying Kalman Filter. IEEE Trans. Instrum. Meas. 2019.
21. Wang, D.; Tsui, K.-L. Dynamic Bayesian wavelet transform: New methodology for extraction of repetitive transients. Mech. Syst. Signal Process. 2017, 88, 137-144.
22. Li, G.; Tang, G.; Luo, G.; Wang, H. Underdetermined blind separation of bearing faults in hyperplane space with variational mode decomposition. Mech. Syst. Signal Process. 2019, 120, 83-97.
23. Li, Y.; Xu, M.; Wei, Y.; Huang, W. Health Condition Monitoring and Early Fault Diagnosis of Bearings Using SDF and Intrinsic Characteristic-Scale Decomposition. IEEE Trans. Instrum. Meas. 2016, 65, 2174-2189.
24. Chen, F.; Cheng, M.; Tang, B.; Xiao, W.; Chen, B.; Shi, X. A novel optimized multi-kernel relevance vector machine with selected sensitive features and its application in early fault diagnosis for rolling bearings. Meas. 2020, 156, 107583.
25. Yu, K.; Lin, T.R.; Ma, H.; Li, H.; Zeng, J. A Combined Polynomial Chirplet Transform and Synchroextracting Technique for Analyzing Nonstationary Signals of Rotating Machinery. IEEE Trans. Instrum. Meas. 2020, 69, 1505-1518.
26. Chen, H.; Jiang, B.; Lu, N.; Jiang, B. Deep PCA Based Real-Time Incipient Fault Detection and Diagnosis Methodology for Electrical Drive in High-Speed Trains. IEEE Trans. Veh. Technol. 2018, 67, 4819-4830.
27. Liu, L.; Liu, Y.; Li, D.; Tong, S.; Wang, Z. Barrier Lyapunov Function-Based Adaptive Fuzzy FTC for Switched Systems and Its Applications to Resistance-Inductance-Capacitance Circuit System. IEEE Trans. Cybern. 2019, 1-12.
28. Liu, Y.; Zhao, Y.; Li, J.; Ma, H.; Yang, Q.; Yan, X. Application of weighted contribution rate of nonlinear output frequency response functions to rotor rub-impact. Mech. Syst. Signal Process. 2020, 136, 106518.
29. Tang, L.; Ma, D.; Zhao, J. Adaptive neural control for switched non-linear systems with multiple tracking error constraints. IET Signal Process. 2019, 13, 330-337.
30. Zheng, J.D.; Pan, H.Y.; Qi, X.L.; Zhang, X.Q.; Liu, Q.Y. Enhanced empirical wavelet transform based time-frequency analysis and its application to rolling bearing fault diagnosis. Tien Tzu Hsueh Pao/acta Electron. Sin. 2018, 46, 358-364.
31. Schölkopf, B.; Smola, A.; Müller, K.-R. Nonlinear Component Analysis as a Kernel Eigenvalue Problem. Neural Comput. 1998, 10, 1299-1319.
32. Xie, L.; Tao, J.; Zhang, Q.; Zhou, H. CNN and KPCA-Based Automated Feature Extraction for Real Time Driving Pattern Recognition. IEEE Access 2019, 7, 123765-123775.
33. Tang, L.; Li, D. Time-varying Barrier Lyapunov Function Based Adaptive Neural Controller Design for Nonlinear Pure-feedback Systems with Unknown Hysteresis. Int. J. Control. Autom. Syst. 2019, 17, 1642-1654.
34. Song, K.; Xu, P.; Chen, Y.; Zhang, T.; Wei, G.; Wang, Q. A Fault Diagnosis and Reconfiguration Strategy for Self-Validating Hydrogen Sensor Array Based on MWPCA and ELM. IEEE Access 2019, 7, 115075-115092.
35. El Laithy, M.; Wang, L.; Harvey, T.J.; Vierneusel, B.; Correns, M.; Blass, T. Further understanding of rolling contact fatigue in rolling element bearings-A review. Tribol. Int. 2019, 140, 105849.
36. Yu, K.; Ma, H.; Zeng, J.; Han, H.; Li, H.; Wen, B. Frobenius and nuclear hybrid norm penalized robust principal component analysis for transient impulsive feature detection of rolling bearings. ISA Trans. 2019.
Huaitao Shi1, Jin Guo1, Xiaotian Bai1,*, Lei Guo1, Zhenpeng Liu1 and Jie Sun2
1School of Mechanical Engineering, Shenyang Jianzhu University, Shenyang 110168, Liaoning, China
2The State Key Laboratory of Rolling and Automation, Northeastern University, Shenyang 110819, Liaoning, China
*Author to whom correspondence should be addressed.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
© 2020. This work is licensed under http://creativecommons.org/licenses/by/3.0/ (the “License”). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License.
Abstract
The incipient fault detection technology of rolling bearings is the key to ensure its normal operation and is of great significance for most industrial processes. However, the vibration signals of rolling bearings are a set of time series with non-linear and timing correlation, and weak incipient fault characteristics of rolling bearings bring about obstructions for the fault detection. This paper proposes a nonlinear dynamic incipient fault detection method for rolling bearings to solve these problems. The kernel function and the moving window algorithm are used to establish a non-linear dynamic model, and the real-time characteristics of the system are obtained. At the same time, the deep decomposition method is used to extract weak fault characteristics under the strong noise, and the incipient failures of rolling bearings are detected. Finally, the validity and feasibility of the scheme are verified by two simulation experiments. Experimental results show that the fault detection rate based on the proposed method is higher than 85% for incipient fault of rolling bearings, and the detection delay is almost zero. Compared with the detection performance of traditional methods, the proposed nonlinear dynamic incipient fault detection method is of better accuracy and applicability.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer