This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.
1. Introduction
Cutting tools are widely used in the manufacturing process and play an important role for accuracy of shape/position and surface quality. During the cutting process to the workpiece, the cutting tool is bound to have light or heavy wear or even damage, and this inevitably leads to the change of surface roughness and dimensional tolerance. With severe tool wear, large amounts of chatter will be produced. However, in current manufacturing processes, identification of cutting tool condition heavily relies on experts’ experience [1]. Therefore, an efficient and accurate tool condition monitoring (TCM) technique is urgently required, especially for intelligent manufacturing. Since it can improve manufacturing quality, system reliability and productivity, while processing costs and downtime, can be reduced [2].
On the above basis, a set of TCM techniques have been proposed, which can be divided into two groups, including direct measurement method and indirect measurement technique [3]. In the direct measurement method, cutting tool condition can be measured directly, such as by measuring surface roughness and side wear. However, the manufacturing process should be stopped in order to perform such measurements, which hinders the use of such techniques for online TCM. On the other side, with indirect measurement techniques, various signals can be collected during cutting tool operation, from which distinguishable features can be extracted. A mapping relationship is then established between features and wear conditions, where tool condition can be assessed. As online monitoring can be achieved using indirect measurement techniques, they are more applicable for industrial applications.
In indirect measurement methods, various signals can be collected from tools, such as monitoring cutting force, acoustic emission, vibration, and power [4, 5]. Among various signals, cutting force is most commonly used for TCM. Huang et al. [6] investigated the relationship between cutting force and tool wear condition, where the change of cutting force during the cutting process of a milling cutter was monitored. Saglam and Unuvar [7] proposed a neural network model for assessing wear condition of a milling cutter. In the analysis, cutting force signals were selected as model inputs, and tool wear condition was then identified using the trained model. However, expensive sensor and data acquisition device restrict the use of cutting force for many practical applications for TCM. As a possible solution, vibration signals including acceleration are used for online TCM. The backpropagation neural network (BPNN) was used to classify tool wear conditions using vibration signals [8]. However, it is noted that vibration signals are easily affected; thus, influence of tool self-excited vibration and extra noise must be resolved in TCM using vibration signals. From previous studies, acoustic emission (AE) has also been proposed for TCM. Sundaram et al. [9] used AE signals to monitor the tool wear during the cutting process, where tool wear had a significant effect above 200 kHz. Machine learning methods, such as support vector machine (SVM) and artificial neural network (ANN), were used to detect tool wear condition using AE [10]. However, additional sensors should be installed to capture acoustic signals, which increase the cost and complexity of the monitoring system [11].
Recently, power signals have been proposed and applied in TCM studies. A cutting power model was developed for TCM [12]. Moreover, cutting energy coefficients were extracted from power signals and used in TCM analysis [13]. In these studies, time series analysis is usually performed using power signals; thus, a predefined threshold between normal and abnormal tool conditions is required. Furthermore, other techniques have been proposed to extract features from tool power signals, including wavelet-based transform techniques. A novel model based on continuous wavelet transform and blind source separation was proposed for tool wear condition monitoring [14]. In [15], features were extracted from tool power signals using wavelet packet transform, from which different tool wear states were discriminated. Moreover, some machine learning methods have been used to deal with power signals. In [16], a model was established to monitor the tool life, where features extracted from power were updated by Bayesian inference. In addition, tool life was predicted in milling using power signals with neural network technique [17]. An ANN was used to evaluate real-time tool wear with spindle power signals, where features extracted from power signals were used as ANN inputs for training and validation [18].
It can be concluded from above studies that compared to other signals, tool power signals have great potential in TCM, since they can represent actual tool wear condition and can be measured easily and efficiently. However, in existing studies using tool power signals for TCM, extra and complex signal processing techniques are needed to extract features, which restrict its application for online analysis. Moreover, extraction of distinguishable features still relies on experts’ knowledge; thus, automatic TCM cannot be achieved.
With the increase of computing capacity, more advanced neural network models, including deep learning, are widely used in different fields such as image processing, speech recognition, fault diagnosis, and also TCM [19–21]. In the analysis, deep learning methods tend to be used in end-to-end model, combining feature extraction, dimensionality reduction, and monitoring. In [22], multiple stacked sparse autoencoders were used for TCM using unsupervised learning. A deep stacked autoencoder network was applied to classify spindle vibration data of different tool wear states [23]. In [24], a framework based on LSTM was proposed, where force, vibration, and AE signals were selected as model inputs. To reduce the computation time of the LSTM network, a convolutional bidirectional long short-term memory network was proposed in [25], which combined advantages of both deep convolutional neural network (CNN) and long short-term memory network (LSTM).
However, although several studies have been devoted to TCM with deep learning networks, the applications of deep learning network using tool power signals are still limited. Therefore, an accurate and online TCM technique is still urgently required, especially in intelligent manufacturing applications.
In this study, a novel method is proposed for accurate and online TCM using tool power signals, where both W-CONV and LSTM techniques are combined. With the proposed method, feature extraction and state classification can be included into one model, thus allowing the raw power signal as model input, without any preprocessing techniques. The effectiveness of proposed method is investigated using test data from cutting tools at different wear conditions. Moreover, test data from cutting tools with different sizes are used to further clarify the robustness of the proposed method.
The novelty of this work lies in two aspects. Firstly, with combination of W-CONV and LSTM, advantages of both models can be achieved, such as ability of expanding receptive field using W-CONV [26], and time-related feature extraction capacity with LSTM. Secondly, tool power signals are used in this analysis, due to their characteristics of easy and efficient collection, the proposed method can be used for practical applications for online TCM, without adding extra cost and complexity to the monitoring system.
The paper is organized as follows. Section 2 presents the methodologies, including W-CONV, LSTM, and proposed framework. In Section 3, the testing system and corresponding test data are described. In Section 4, effectiveness of the proposed method in TCM is investigated, in terms of both accuracy and required identification time. From the findings, conclusion is made in Section 5.
2. Methodologies
2.1. Convolutional Neural Network
As a feedforward neural network, the convolutional neural network (CNN) is widely used in the field of image processing and fault diagnosis. Figure 1 depicts a typical structure of CNN. It can be seen that its hidden layers include several convolutional layers and pooling layers.
[figure omitted; refer to PDF]
The convolutional layer uses convolution kernels to perform feature extraction with the inputs, and maps the features extracted from the previous layer to the next layer. An important characteristic of the convolutional layer is weight sharing, which can reduce computational complexity in the process of nonlinear convolution operations.
According to the dimension of input data, the convolution operation can be divided into one-dimensional convolution and two-dimensional convolution. Two-dimensional convolution is often used for image processing [27]. Since power signal is one-dimensional data, the one-dimensional CNN is used in this study. For time series data, convolution kernels move along the time axis to perform convolution operations. After that, the activation function is used to process the information by adding the bias to obtain a feature map that retains useful information. This can be expressed as follows:
Moreover, as shown in Figure 1, the pooling layer is located after the convolutional layer. The main function of this pooling layer is to reduce the number of parameters, where downsampling is widely applied to reduce the feature map dimension. In this study, the maximum pooling method is used in the pooling layer, which selects the largest statistical value of the region to represent its characteristics. The result of pooling the i-th channel of
2.2. Long Short-Term Memory
As the hidden layer structure in the conventional convolutional neural network is relatively simple, gradient disappearance or gradient explosion may be experienced when dealing with large amounts of data.
To address the above issues, the LSTM network is usually used, which is a special kind of recurrent neural network (RNN). Figure 2 shows the internal structure of LSTM neuron. It can be observed that the LSTM network has a three-state gate structure, including input gate, forget gate, and output gate, which provides selective memory in the network.
[figure omitted; refer to PDF]
In the LSTM network, the composition of gates includes a sigmoid network and a bit multiplier. The sigmoid layer can output a value between 0 and 1, and its value determines whether the input value can pass through the gate.
The forget gate determines what information from the previous moment is retained to the current moment and can play a role of forgetting useless information. This can be written as
The input gate determines the current network input
The output gate controls what information the unit state
2.3. Proposed Model
In this study, a deep learning network depicted as Figure 3 is proposed for TCM, where tool wear condition can be determined automatically by extracting features from tool power signals.
[figure omitted; refer to PDF]
It can be seen from Figure 3 that wide convolution kernels are used at the 1st convolutional layer, with which the network receptive field can be improved and high-frequency noise can be reduced. Moreover, the use of wide convolution kernels can reduce the number of convolutional layers, thus reducing the complexity of the network structure and parameter calculation.
It should be noted that except for the 1st convolutional layer, small convolution kernels are used at other convolutional layers, since the small convolution kernels can optimize local features and deepen the network depth to improve the performance of the network. Furthermore, outputs from the last pooling layer are injected to the LSTM layer, which can compensate shortcomings of CNN’s incomplete feature extraction in time series, such that the model generalization ability can be improved. Finally, the output from LSTM layer is regarded as inputs of softmax function, which can convert input neuron (0-1) probability distribution in order to classify different wear states. The softmax function can be expressed as follows:
In the analysis, the batch normalization (BN) method is used to reduce variance transfer between layers. It can normalize all hidden layers and reduce differences between samples. With BN, the network training time can be reduced effectively, and gradient disappearance or gradient explosion can also be minimized. It should be mentioned that feature maps are batch normalized between convolution operation and activation processing at convolutional layers. This process can be expressed as
Moreover, the reason of adding LSTM in the CNN is further clarified. As power signals from the tool cutting process are used in the analysis, which are periodic signals containing both global and local features, the proposed model should have the capability of spatial-temporal feature extractions. Therefore, local correlation of time series signals should be obtained to integrate local features before recognizing global features. With long-term memory of LSTM, current inputs can be processed based on previous state information; thus, local features can be fused and global features can be processed. Therefore, in the proposed model, the CNN can extract local features and reduce the noise influence, while LSTM can further extract time-related global features.
3. Description of Testing System and Corresponding Test Data
In this study, high speed steel containing 8% cobalt (HSS-Co8) with 4 flutes is used as the end milling tool, as the wear of HSS-Co8 can be measured easily. Moreover, two end milling tools with diameters of 8 mm and 10 mm are used in the test, respectively; thus, the robustness of proposed model can be illustrated. Table 1 lists technical parameters of two end milling tools.
Table 1
Technical parameters of end mills.
Mill dia. (mm) | Shank dia. (mm) | Overall length (mm) | No. of teeth/flutes |
8 | 10 | 69 | 4 |
10 | 10 | 72 | 4 |
In the test, the cutting process is conducted using a Hurco 3-axis VN1 CNC, where three phase current and voltage are collected with sample frequency of 50 kHz. It should be mentioned that since the sensors used in the tests will not add complexity to the monitoring system, the proposed model can be applied for practical machining applications. Figure 4 depicts the test bench used in the analysis.
[figure omitted; refer to PDF]
Moreover, in the experiment, each end mill is assigned a work piece with a dimension of 30 mm × 150 mm × 120 mm. The plate material is selected as commercial aluminium grade 6082 T651, as it is a common alloy used in manufacturing for its machinability and material properties.
During the cutting process, the milling tools are required to perform several milling sessions. It should be mentioned that at each cutting, the tools are used for a total of 40 minutes in the first session, as there is little sign of flank wear growth after only 20 minutes cutting at the first session. Except for the 1st milling session, each subsequent session is carried out for 20 minutes. After each cutting session, the tools are inspected optically, and flank wear land size is measured and recorded. Each test contains 4 milling sessions, which represents a total of 100 minutes of machining.
In the test, three phase voltage and current can be collected from end milling tools at 5 different tool wear conditions (0 min, 40 min, 60 min, 80 min, and 100 min). With collected voltages and currents, instantaneous power can be calculated as follows:
Based on above test configuration, 5 sets of power signals can be obtained from each test. Figure 5 depicts a typical calculated power signal from a cutting test using equation (11), where the start of spindle rotation, arrival and leave of cutting tool to the work piece, and cutting end are highlighted.
[figure omitted; refer to PDF]
Table 2 lists the control parameters during the cutting process and measured tool wear size after different milling sessions.
Table 2
Controlling parameters during the cutting process.
Mill dia. (mm) | Time | RPM (r/min) | Feed rate (m/min) |
8 | 0 | 4000 | 580 |
8 | 40 | 4000 | 580 |
8 | 60 | 4000 | 580 |
8 | 80 | 4000 | 580 |
8 | 100 | 4000 | 580 |
10 | 0 | 3100 | 600 |
10 | 40 | 3100 | 600 |
10 | 60 | 3100 | 600 |
10 | 80 | 3100 | 600 |
10 | 100 | 3100 | 600 |
4. Effectiveness of Proposed Method in TCM
4.1. Segmentation of Tool Output Power Signal
Figure 6 shows instantaneous power of the 8 mm tool at five different wear conditions (0 min, 40 min, 60 min, 80 min, and 100 min as listed in Table 2). It should be mentioned that only the power signal when the tool cuts at work piece is used; that is, power signals from 10 passes indicated in Figure 5 are used in the following analysis, since tool wear condition can be expressed when performing the cutting process.
[figures omitted; refer to PDF]
As can be seen from Figure 6, the output power signal increases with increased tool wear, but it is difficult to distinguish different tool wear conditions directly from power signals, since clearly features from different tool wear conditions cannot be observed.
In order to apply the proposed model, power signals are configured and divided into different samples. The rotation speeds of 8 mm and 10 mm tools are 4000 r/min and 3100 r/min, respectively, corresponding to 750 and 968 points at each rotation cycle. Therefore, in this analysis, each sample contains 2048 points to ensure that at least two rotation cycles of data are included, from which distinguishable features can be extracted. At each tool wear condition, 2000 samples are randomly selected from power signals. Moreover, 70% of samples are used for training, and the rest are used for testing. It means that there are 7000 samples for training and 3000 samples for testing in total.
To verify the model, a classification accuracy
4.2. Configuration of Proposed Model
In this analysis, the proposed model shown in Figure 3 is used for tool wear condition assessment, which consists of two convolutional layers, two pooling layers, an LSTM layer, and an output layer. In the model, mean square error is used as loss function, based on which the Adam algorithm is selected to update the learning rate automatically, and weights are updated with back propagation technique. Moreover, the dropout method is used in the model to prevent overfitting.
The analysis is implemented is performed in kears framework with python3.7, on a desktop with i7-6700K CPU and 32G RAM. Moreover, the number of proposed model training iterations is set to 20, as convergence is observed with this iteration.
As described in Section 2, wide convolution kernels are used at the 1st convolution layer. Based on previous studies [26], the size of convolution kernel in the 1st convolutional layer is selected as 64, in order to obtain larger receptive field. Moreover, the number of convolution kernel at the 1st convolution layer is set as 16, to accommodate the input with 2048 points. In the second convolutional layer, the size of the convolution kernel is 3, which is commonly used size in previous studies [26, 29]. However, there is no protocol for the determination of kernel number at the 2nd convolutional layer, and this will be investigated later. Regarding parameters at the LSTM layer, 32 units are selected with trail-and-error analysis, as too many units will increase the network computing time, while too little will reduce the accuracy.
From above configuration, the only uncertain parameter is the number of kernels at the 2nd convolution layer. In this study, five candidate values, including 16, 32, 64, 128, and 256, are used, and their performance is evaluated in terms of both accuracy and training time. Figure 7 shows the results with different kernel numbers at the 2nd convolution layer.
[figure omitted; refer to PDF]
It can be seen from Figure 7 that the classification accuracy is lower when the number of convolution kernels is too small. However, with too large kernel number, the accuracy will be reduced due to overfitting. Moreover, training time will increase with an increased kernel number. Considering both the accuracy and training time, 64 convolution kernels are selected in this study, where test accuracy can reach 96.8%, and the training time is 42 s.
Table 3 lists the configured model parameters used in this study.
Table 3
Parameters of the proposed model.
Name | Filters | Size/stride | Units | Input | Output | Function | Parameters |
Conv-1 | 16 | 64/16 | — | 1 × 2048 | 16 × 128 | Relu | 1040 |
Pooling1 | — | 2/2 | — | 16 × 128 | 16 × 64 | — | 0 |
Conv-2 | 64 | 3/1 | — | 16 × 64 | 64 × 64 | Relu | 3136 |
Pooling2 | — | 2/2 | — | 64 × 64 | 64 × 32 | — | 0 |
LSTM | — | — | 32 | 64 × 32 | 32 × 32 | Tanh | 12416 |
Dense | — | — | 32 × 32 | 1 × 5 | Softmax | 5125 |
4.3. Performance of Proposed Model in TCM
In this section, the performance of the proposed model in TCM is firstly investigated using test data from an 8 mm tool. Moreover, in order to further clarify the benefit of the proposed model, its classification results are compared to those with the conventional CNN. Furthermore, the effectiveness of the proposed model in TCM for a 10 mm tool is also investigated, such that the robustness of the proposed model can be illustrated.
4.3.1. Performance of Proposed Model in TCM for 8 mm Tool
In this case, 10 trials are performed, where training and test samples are randomly selected from the test data. Classification results are shown in Figure 8 and Table 4. All samples are randomly collected from the power data for all 10 passes cutting.
[figure omitted; refer to PDF]
Compared to the results using the proposed model, the average accuracy and the minimum accuracy from W-CONV are significantly reduced. The range of accuracy is 29.7%, while that of the proposed model is only 8%. It can be seen that the proposed model is more robust and more stable, especially when dealing with big data case. The confusion matrix for the lowest accuracy of W-CONV is shown in Figure 11. It can be seen that the tool wear conditions at 60 min and 100 min cannot be classified correctly. This further confirms that with the proposed model, the lack of capacity in time-related feature extraction with W-CONV can be properly addressed, thus increasing its classification accuracy in different data cases.
[figure omitted; refer to PDF]
In addition, mean squared error (MSE), root mean squared error (RMSE), and root mean squared logarithmic error (RMSLE) are introduced to compare the models. The three accuracy criteria can be calculated as follows:
For MSE, RMSE, and RMSLE, the smaller their value, the better the model performance. Tables 5–7 show the calculation results with the proposed model and W-CONV. It can be seen that the average MSEs of two model are 0.0159 and 0.0469, while the average RMSEs of two model are 0.00388 and 0.00639. Table 7 shows that the average RMSLEs of two models are 0.00288 and 0.00472. Regardless of the maximum value, minimum value or average value, MSE, RMSE, and RMSLE of the proposed model are smaller than the value of W-CONV, which is consistent with the results depicted in Figures 9–11.
Table 5
Comparison of two models using MSE of 10 trials.
Trials | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
Proposed model (10−3) | 8.3 | 8.1 | 19.9 | 13.1 | 8.9 | 29.4 | 9.4 | 17.1 | 30.6 | 14.5 |
W-CONV (10−3) | 23.1 | 23.4 | 72.9 | 84.2 | 111.3 | 11.2 | 24.5 | 8.3 | 51 | 59.4 |
Table 6
Comparison of two models using RMSE of 10 trials.
Trials | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
Proposed model (10−3) | 2.88 | 2.84 | 4.46 | 3.62 | 2.98 | 5.42 | 3.07 | 4.14 | 5.53 | 3.81 |
W-CONV (10−3) | 4.81 | 4.83 | 8.54 | 9.18 | 10.55 | 3.35 | 4.95 | 2.88 | 7.14 | 7.71 |
Table 7
Comparison of two models using RMSLE of 10 trials.
Trials | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
Proposed model (10−3) | 2.21 | 2.10 | 3.31 | 2.59 | 2.30 | 3.87 | 2.39 | 3.13 | 4.14 | 2.74 |
W-CONV (10−3) | 3.44 | 3.56 | 6.28 | 6.32 | 7.27 | 2.74 | 3.62 | 2.17 | 5.50 | 6.32 |
For further comparison, Figure 12 shows the training process with the proposed model and W-CONV. It is found that the proposed model can reach convergence on the 2nd iteration, while W-CONV converges after the 4th iteration. Therefore, it can be concluded that compared to conventional CNN, the proposed method can provide more accurate and efficient identification for tool wear conditions. This is due to the fact that without LSTM, some global features that are related to time will be ignored during training process in the big data case.
[figure omitted; refer to PDF]
The reason of worse classification results using W-CONV is further investigated using the smaller test dataset. In this analysis, only test data from single pass cutting are used (as shown in Figure 5). Figure 13 compares the classification accuracy using data from single pass cutting (small data case) and all 10 pass cuttings (big data case).
[figure omitted; refer to PDF]
It can be seen that with small data case, the W-CONV average predict accuracy of 10 trials is 99.2%, while its average accuracy is only 86.2% in big data case. The reason is that with small data case, test data have been trained during the training stage with 10 trials. However, with increased data amount, this cannot be achieved, leading to the worse classification results using W-CONV.
Furthermore, the training and testing time of each model is shown in Table 8. It should be mentioned that the testing time is the time of each sample. The training time of the proposed model is slightly longer than that of W-CONV, because the LSTM layer takes a certain amount of time to extract global features. However, in terms of the testing time of each sample, both the proposed model and W-CONV can reach the microsecond level and the difference between the two models is relatively small, which will not hinder it for online monitoring purpose. However, the difference in classification accuracy from two models is significant, which is shown in Figures 8 and 10, where the proposed model can provide more accurate classification results. Therefore, with considering of both computational times and classification accuracy, the proposed model can provide accurate classification while can still meet online monitoring requirement.
Table 8
Computational times of each model.
Model | Training time (s) | Testing time (μs) |
Proposed | 42 | 108 |
W-CONV | 30.5 | 95 |
4.3.2. Performance of Proposed Model in TCM for 10 mm Tool
To further verify the robustness of the proposed model, its effectiveness in TCM with 10 mm tool is investigated in this section. It should be mentioned that big data case is used herein; that is, training and testing samples are randomly collected from the power data for all 10 passes cutting. Results are listed in Table 9.
Table 9
Results of 10 trials of the proposed model.
Trials | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
Train | 99.5 | 99.9 | 100 | 99.7 | 100 | 99.8 | 100 | 100 | 100 | 100 |
Testing | 97.8 | 100 | 100 | 99.8 | 100 | 99.9 | 100 | 100 | 100 | 100 |
It can be seen from Table 9 that the proposed model can also provide accurate classification with test data from the 10 mm tool, where the average test accuracy of the 10 mm tool dataset reaches 99.75%, and the highest test accuracy and the lowest test accuracy are 100% and 97.8%, respectively.
Figure 14 shows the confusion matrix for the lowest and the highest accuracy (97.8% and 100%, respectively). It can be found that although some data are misclassified, the proposed model can still provide accurate classification, since different tool wear conditions can be discriminated correctly. Furthermore, computational times of the proposed model of the 10 mm tool are shown in Table 10. The testing time shows that the proposed model can be applied at practical applications for accurate and online TCM.
[figures omitted; refer to PDF]
Table 10
Computational times of the proposed model of the 10 mm tool.
Training time | Testing time |
40.5 (s) | 108 |
5. Conclusion
In this study, an improved deep learning model is proposed for tool wear condition assessment, which integrates advantages from W-CONV and LSTM, such that distinguishable features can be extracted automatically from tool test data. Moreover, output power signals from cutting tool during its operation are used in the analysis, since they can be collected easily and efficiently, without adding extra cost and complexity to the monitoring system. Therefore, the proposed model is applicable at practical applications for accurate and online tool wear condition assessment.
To validate the effectiveness of the proposed model, test data are collected from the cutting tool at different wear conditions. From 10-fold cross validation results, the proposed model can provide accurate and efficient assessment to the tool wear condition. Compared to results using conventional CNN, the proposed model shows better capability in dealing with massive data. Moreover, test data collected from cutting tools with different sizes are utilized in the analysis, such that the robustness of the proposed model in identifying wear condition of various tools can be illustrated, which will also be beneficial at practical applications. In future work, more test data will be added to investigate effectiveness of the proposed model in classification of more cutting tool states. In addition, the proposed model will be updated to provide accurate classification using the limited test to improve the robustness.
Acknowledgments
This work was supported by the National Natural Science Foundation of China (NSFC) (51975549), Anhui Provincial Natural Science Foundation (1908085ME161), and State Key Laboratory of Mechanical System and Vibration (MSV202017).
[1] D. E. Dimla, "Sensor signals for tool-wear monitoring in metal cutting operations-a review of methods," International Journal of Machine Tools and Manufacture, vol. 40 no. 8, pp. 1073-1098, DOI: 10.1016/s0890-6955(99)00122-4, 2000.
[2] Y. Altintas, I. Yellowley, "In-process detection of tool failure in milling using cutting force models," Journal of Engineering for Industry, vol. 111 no. 2, pp. 149-157, DOI: 10.1115/1.3188744, 1989.
[3] P. Bhattacharyya, D. Sengupta, "Estimation of tool wear based on adaptive sensor fusion of force and power in face milling," International Journal of Production Research, vol. 47 no. 3, pp. 817-833, DOI: 10.1080/00207540701403376, 2009.
[4] T. Mohanraj, S. Shankar, R. Rajasekar, N. R. Sakthivel, A. Pramanik, "Tool condition monitoring techniques in milling process-a review," Journal of Materials Research and Technology, vol. 9 no. 1, pp. 1032-1042, DOI: 10.1016/j.jmrt.2019.10.031, 2020.
[5] X. Jiang, C. Shen, J. Shi, Z. Zhu, "Initial center frequency-guided VMD for fault diagnosis of rotating machines," Journal of Sound and Vibration, vol. 435, pp. 36-55, DOI: 10.1016/j.jsv.2018.07.039, 2018.
[6] S. N. Huang, K. K. Tan, Y. S. Wong, "Tool wear detection and fault diagnosis based on cutting force monitoring," International Journal of Machine Tools & Manufacture, vol. 47 no. 3-4, pp. 444-451, DOI: 10.1016/j.ijmachtools.2006.06.011, 2007.
[7] H. Saglam, A. Unuvar, "Tool condition monitoring in milling based on cutting forces by a neural network," International Journal of Production Research, vol. 41 no. 7, pp. 1519-1532, DOI: 10.1080/0020754031000073017, 2003.
[8] W.-H. Hsieh, M.-C. Lu, S.-J. Chiou, "Application of backpropagation neural network for spindle vibration-based tool wear monitoring in micro-milling," The International Journal of Advanced Manufacturing Technology, vol. 61 no. 1–4, pp. 53-61, DOI: 10.1007/s00170-011-3703-x, 2012.
[9] S. Sundaram, P. Senthilkumar, A. Kumaravel, N. “Manoharan, "Study of flank wear in single point cutting tool using acoustic emission sensor techniques," ARPN Journal of Engineering and Applied Sciences, vol. 3, pp. 32-36, 2008.
[10] P. Krishnakumar, K. Rameshkumar, K. I. Ramachandran, "Machine learning based tool condition classification using acoustic emission and vibration data in high speed milling process using wavelet features," Intelligent Decision Technologies, vol. 12 no. 2, pp. 265-282, DOI: 10.3233/idt-180332, 2018.
[11] L. Xiaoli, "On-line detection of the breakage of small diameter drills using current signature wavelet transform," International Journal of Machine Tools and Manufacture, vol. 39 no. 1, pp. 157-164, DOI: 10.1016/s0890-6955(97)00066-7, 1999.
[12] H. Shao, H. L. Wang, X. M. Zhao, "A cutting power model for tool wear monitoring in milling," International Journal of Machine Tools and Manufacture, vol. 44 no. 14, pp. 1503-1509, DOI: 10.1016/j.ijmachtools.2004.05.003, 2004.
[13] M. Xu, R. B. Jerard, B. K. Fussell, "Energy based cutting force model calibration for milling," Computer-Aided Design and Applications, vol. 4 no. 1–4, pp. 341-351, DOI: 10.1080/16864360.2007.10738554, 2007.
[14] T. Benkedjouh, N. Zerhouni, S. Rechak, "Tool wear condition monitoring based on continuous wavelet transform and blind source separation," The International Journal of Advanced Manufacturing Technology, vol. 97 no. 9–12, pp. 3311-3323, DOI: 10.1007/s00170-018-2018-6, 2018.
[15] L. Mao, L. Jackson, P. Goodall, A. West, Enhanced Condition Monitoring of the Machining Process Using Wavelet Packet Transform, Safety and Reliability–Safe Societies in a Changing World, 2018.
[16] J. M. Karandikar, A. E. Abbas, T. L. Schmitz, "Tool life prediction using Bayesian updating. part 1: milling tool life model using a discrete grid method," Precision Engineering, vol. 38 no. 1,DOI: 10.1016/j.precisioneng.2013.06.006, 2014.
[17] C. Drouillet, J. Karandikar, C. Nath, A.-C. Journeaux, M. El Mansori, T. Kurfess, "Tool life predictions in milling using spindle power with the neural network technique," Journal of Manufacturing Processes, vol. 22, pp. 161-168, DOI: 10.1016/j.jmapro.2016.03.010, 2016.
[18] R. Corne, C. Nath, M. El Mansori, T. Kurfess, "Study of spindle power data with neural network for predicting real-time tool wear/breakage during inconel drilling," Journal of Manufacturing Systems, vol. 43 no. 2, pp. 287-295, 2017.
[19] H.-J. Lee, S.-G. Lee, "Arousal-valence recognition using CNN with STFT feature-combined image," Electronics Letters, vol. 54 no. 3, pp. 134-136, DOI: 10.1049/el.2017.3538, 2018.
[20] J. Zheng, X. Cao, B. Zhang, X. Zhen, X. Su, "Deep ensemble machine for video classification," IEEE Transactions on Neural Networks and Learning Systems, vol. 30 no. 2, pp. 553-565, DOI: 10.1109/tnnls.2018.2844464, 2019.
[21] C. Shen, Y. Qi, W. Jun, G. Cai, Z. Zhu, "An automatic and robust features learning method for rotating machinery fault diagnosis based on contractive autoencoder," Engineering Applications of Artificial Intelligence, vol. 76, pp. 170-184, 2018.
[22] C. Shi, G. Panoutsos, B. Luo, H. Liu, B. Li, X. Lin, "Using multiple-feature-spaces-based deep learning for tool condition monitoring in ultraprecision manufacturing," IEEE Transactions on Industrial Electronics, vol. 66 no. 5, pp. 3794-3803, DOI: 10.1109/tie.2018.2856193, 2019.
[23] V. Nguyen, V. Nguyen, V. Pham, "Deep stacked auto-encoder network based tool wear monitoring in the face milling process," Strojniški Vestnik-Journal of Mechanical Engineering, vol. 66 no. 4, pp. 227-234, DOI: 10.5545/sv-jme.2019.6285, 2020.
[24] H. B. Sun, J. D. Zhang, R. Mo, X. Z. Zhang, "In-process tool condition forecasting based on a deep learning method," Robotics and Computer Integrated Manufacturing, vol. 64, 2020.
[25] R. Zhao, R. Yan, J. Wang, K. Mao, "Learning to monitor machine health with convolutional bi-directional LSTM networks," Sensors, vol. 17 no. 2,DOI: 10.3390/s17020273, 2017.
[26] W. Zhang, G. Peng, C. Li, Y. Chen, Z. Zhang, "A new deep learning model for fault diagnosis with good anti-noise and domain adaptation ability on raw vibration signals," Sensors, vol. 17 no. 2,DOI: 10.3390/s17020425, 2017.
[27] Z. Zhu, G. Peng, Y. Chen, H. Gao, "A convolutional neural network based on a capsule network with strong generalization for bearing fault diagnosis," Neurocomputing, vol. 323, pp. 62-75, DOI: 10.1016/j.neucom.2018.09.050, 2019.
[28] H. H. Pan, X. X. He, S. Tang, F. M. Meng, "An improved bearing fault diagnosis method using one-dimensional CNN and LSTM," Journal of Mechanical Engineering, vol. 64, pp. 443-452, 2018.
[29] M. Qiao, S. Yan, X. Tang, C. K. Xu, Deep Convolutional and LSTM Recurrent Neural Networks for Rolling Bearing Fault Diagnosis under Strong Noises and Variable Loads, 2020.
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
Copyright © 2020 Lang Dai et al. This is an open access article distributed under the Creative Commons Attribution License (the “License”), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License. https://creativecommons.org/licenses/by/4.0/
Abstract
Something like normal functionality of tools in a manufacturing process is typically designed to ensure reliability, where fast and accurate identification of tool abnormal operation plays a vital role in intelligent manufacturing. In this study, a novel method is proposed to assess the cutting tool condition, which consists of a convolutional neural network with wider first-layer kernels (W-CONV), and long short-term memory (LSTM). The analysis benefits from the use of output power signals from the cutting tool, since they can be obtained easily and efficiently, enabling the proposed method to be applicable in practical operation for online condition monitoring. Moreover, effectiveness of the proposed method is investigated, using test data from cutting tools at various tool wear conditions. Results demonstrate that with the proposed method, tool wear condition can be identified accurately and efficiently. Furthermore, with test data collected at cutting tools with different sizes, the robustness of the proposed method can be further clarified.
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
Details







1 Department of Precision Machinery and Precision Instrumentation, University of Science and Technology of China, Hefei 230031, China
2 Department of Aeronautical and Automotive Engineering, Loughborough University, Loughborough LE11 3TU, UK
3 Department of Mechanical, Electrical and Manufacturing Engineering, Loughborough University, Loughborough LE11 3TU, UK
4 School of Rail Transportation, Soochow University, Suzhou 215131, China
5 Department of Precision Machinery and Precision Instrumentation, University of Science and Technology of China, Hefei 230031, China; Key Laboratory of Precision Scientific Instrumentation of Anhui Higher Education Institutes, University of Science and Technology of China, Hefei 230031, China