1. Introduction
Lithium-ion batteries have become a crucial part of modern energy infrastructure, widely used in portable electronic devices, electric vehicles, and renewable energy storage systems. They have significantly impacted our work patterns, daily habits, and even contributed to sustainable development. As a result, ensuring the safe use of lithium-ion batteries has become a major challenge. Common lithium-ion battery faults include overcharging and over-discharging [1], internal short circuits [2], aging [3], manufacturing defects [4], and mechanical damage [5]. Early detection of battery module faults is vital for enhancing the stability and safety of energy storage systems. The academic community has extensively studied battery fault diagnosis technologies, which can be broadly categorized into model-based methods and data-driven methods. Model-based diagnostic approaches, such as equivalent circuit models [6], electrochemical models [7], and thermal models [8], are typically used to analyze and predict battery health. However, these methods involve complex mathematical derivations and rely on precise parameter estimation, limiting their practical application. While model-based methods offer physical interpretability and accuracy, they come with higher adaptation costs and development complexity. In contrast, data-driven methods such as machine learning [9], deep learning [10], and data analysis [11] can automatically learn fault patterns from historical data, reducing reliance on complex physical models and proving more suitable for real-world applications. With the successful application of deep learning in image recognition, speech recognition, and semantic analysis [12,13], its potential in intelligent fault diagnosis has garnered widespread attention. For example, Reza Rouhi Ardeshiri et al. [14] proposed a method to convert battery signals into multi-channel images, and used a 2D convolutional neural network (CNN) to automatically extract features from these images to achieve an online estimation of the state of charge (SOC) of the battery. Ming Xing You et al. [15] introduced a health assessment method based on voltage, current, and temperature data extracted during battery charging and discharging processes. These data were divided into training, validation, and testing sets, and a long short-term memory (LSTM) recurrent neural network was used to develop a battery capacity estimation model for evaluating the state of health (SOH) of the battery. Zhi Wei Dong et al. [16] compared the performance of backpropagation neural networks, LSTM, and CNNs, finding that CNNs excelled in estimating the SOC of low-charge batteries. Hang Yuan et al. [17] proposed a fault diagnosis method combining Symmetrized Dot Pattern (SDP) and CNNs, which calibrated current signals through phase adjustment to improve the robustness of the neural network. They considered factors affecting the current signal, computed the calibration residual signal (CRS), and amplified subtle fault information in the current signal. These CRSs were converted into SDP images with color information and used for fault pattern recognition through a pre-trained 2D CNN.
Building on the application of deep learning in lithium battery fault diagnosis as presented in the above literature, this study proposes a fault recognition method combining Symmetrized Dot Pattern (SDP) [18] with convolutional neural networks (CNNs) [19] to detect four types of lithium battery module faults. In the experiments, we used the NI PXI-5105 to collect battery signals, which were then converted and processed into SDP input images. These images were subsequently analyzed using CNNs to extract features and identify faults. Additionally, we compared this method with advanced deep learning models such as ResNet [20] and VGG [21] to evaluate recognition accuracy. CNN, as a fundamental deep learning model, performs excellently in image classification tasks and is a natural choice for this study. Meanwhile, VGG and ResNet, as more complex advanced network architectures, demonstrate outstanding performance in image recognition tasks. By comparing these models, we aim to assess the differences in recognition accuracy between simpler and more complex models in fault diagnosis, providing a more comprehensive perspective on the application of deep learning in lithium battery fault recognition. Experimental results show that this method effectively identifies lithium battery fault types with high recognition accuracy.
2. Methodology
2.1. Symmetric Data Point Coordinate Method
This study proposes a fault detection method for lithium battery modules based on the Symmetrized Dot Pattern (SDP) coordinate system. The SDP algorithm transforms the raw signals of faulty modules into two-dimensional, snowflake-like patterns, capturing the characteristics of lithium batteries under different fault conditions as key features for fault identification. An examples of these snowflake patterns is shown in Figure 1.
Using the SDP method, the voltage signals are converted into two-dimensional images, where the X-axis and Y-axis correspond to the horizontal and vertical pixel coordinates of the image, respectively. These images reflect texture features associated with different fault types. The images are then cropped into 64 × 64 pixel feature maps, which serve as an input to train a convolutional neural network (CNN) for feature extraction and fault classification.
The symmetrized dot pattern (SDP) method [22] is a data transformation technique used to process time-domain square wave signals. This method involves converting the signal into polar coordinate feature images through a data extraction system. Figure 2 demonstrates the principle of this method, where the radius (i), the clockwise rotation angle (), and the counterclockwise rotation angle () are the three main features of the image. In the sampled square wave data of the lithium battery module state signal, each signal sampling point represents the signal strength at time , while the signal sampling point represents the signal strength at time . By substituting these data into Equations (1)–(3), the transformed polar coordinate points O(r(i), , ()) can be obtained. By changing the initial rotation angle, different coordinate symmetric images of the lithium battery module state signal can be generated. In summary, the symmetrized dot pattern method is an effective signal processing technique that aids in the analysis and understanding of the state of lithium batteries. Figure 2
Symmetrized dot pattern.
[Figure omitted. See PDF]
(1)
(2)
(3)
The feature map parameters in this study are designed to analyze and identify faults in lithium battery modules. These parameters are defined as follows: represents the maximum value of the original signal, represents the minimum value of the original signal, denotes the time interval parameter between signals, (1 ≤ ≤ 10) represents the initial offset angle on the x-axis, and (φ) is the amplification coefficient for the rotation angle (). Experimental tests found that setting φ to 60°, to 3, and to 3 effectively aids in identifying and analyzing faults in lithium battery modules.
2.2. Convolutional Neural Network
Convolutional neural networks (CNNs) originated in the late 1980s to early 1990s [23], proposed by French computer scientist Yann LeCun and his team. In 1989, LeCun and others developed the LeNet model, an early prototype of CNNs. LeNet-5 demonstrated the potential of CNNs in image data processing, laying the foundation for more complex CNN architectures. Since then, CNNs have been widely applied in fields such as image recognition [24], medical image analysis [25], and fault diagnosis [26]. CNNs have not only significantly reduced manual labor and time consumption but have also driven the extensive application of deep learning in computer vision, facilitating technological progress in advanced deep convolutional networks.
2.2.1. Convolutional Kernel and Convolution Layer
The CNN architecture employed in this study features three convolutional layers and three fully connected layers. Each convolutional layer utilizes a 3 × 3 kernel paired with the ReLU activation function. The first convolutional layer focuses on extracting fundamental features such as edges, lines, and textures. The second layer builds on this by identifying more complex patterns like shapes and angles. The third layer further refines the process, detecting high-level features that enable the model to recognize intricate patterns within the images. The detailed structure of the CNN model used in this study is illustrated in Figure 3.
The model then processes information through three fully connected layers, outputting the final classification. The first layer outputs 1000 neurons, the second layer outputs 512 neurons, and the final layer outputs 5 neurons. This design effectively handles image classification tasks, using the ReLU activation function and a softmax layer to ensure classification accuracy.
In the CNN model, the convolutional kernel [27] is an essential component of the convolutional layer. The calculation for the feature map size after the convolution operation is shown in Equation (4). represents the size of the output feature map, is the size of the input feature map, denotes the size of the convolutional kernel, is the step size of the kernel’s movement for each convolution, and is the zero-padding value.
(4)
2.2.2. Pooling Layer
The pooling layer in CNNs reduces the size of feature maps through downsampling, lowering computational and memory requirements while retaining key features. Common pooling methods include max pooling and average pooling. Max pooling selects the maximum value in a region, emphasizing features like edges and textures, while average pooling averages values in a region, smoothing the feature map. The alternating use of convolutional and pooling layers reduces feature map resolution and extracts abstract features, which is beneficial for complex image processing tasks.
2.2.3. Fully Connected Layer
The fully connected layers in this study, as shown in Figure 4, are placed after the convolutional layers and handle the final classification or prediction. The model has three fully connected layers: the first layer with 1000 neurons, the second with 512 neurons, and the last with 5 neurons for classification output. These layers integrate features from the convolutional layers into a feature vector, then use the softmax function to calculate the class probability distribution for classification.
The softmax function [27] is commonly used in multi-class classification problems. It transforms a K-dimensional real-valued vector into a K-dimensional probability distribution, ensuring each element is between 0 and 1, and the sum of all elements equals 1. In practical applications, this allows us to identify the class with the highest predicted probability. The function is commonly used in multi-class classification tasks to convert the model’s output into probability values. Its mathematical formula is shown in Equation (5). Take the vector where denotes the s-th element of the vector and n is the number of elements in Z. The output of the softmax function, , represents the probability distribution generated by the softmax function.
(5)
3. Research System Architecture and Fault Design
3.1. Experimental System Process Architecture
This study detects fault signals in lithium battery modules using an experimental platform. A waveform generator inputs a high-frequency square wave signal into the module. The load signal is captured by a high-speed data acquisition card, processed into a snowflake pattern using the symmetrized dot pattern (SDP) method, and fault types are identified using a CNN. The system architecture is shown in Figure 5.
Figure 6 shows the experimental platform combining the NI PXI-5105 data acquisition card and the NI PXIe-1071 chassis for fault signal detection. This system features a 60 MHz sampling frequency, 8 synchronized channels, and 12-bit resolution, with built-in memory and instrument drivers for data streaming and analysis, allowing comprehensive capture of lithium battery fault signals.
3.2. Design of Experimental Fault Models for Lithium
This experiment established five lithium battery fault signal models, including: Model A for normal state, Model B for over-discharge, Model C for overcharge, Model E for aging, and Model D for simulating leakage caused by external forces. Detailed information about the models is summarized in Table 1. The lithium battery used in the experiment has the following specifications: a nominal voltage of 3.2 V, a capacity of 25 Ah, a weight of 600 g, a cycle life of 2500 cycles, a charging voltage of 3.65 V, a charging current of 17.5 A, a discharge voltage of 2.5 V, and a discharge current of 25 A.
In this study, a 3.2 V, 25 Ah lithium iron phosphate (LiFePO4) battery was used for the experiments. All the batteries were preconditioned, as shown in Figure 7, to ensure consistent charge levels. Initially, each battery was charged to 4.2 V using the constant current mode (0.12 C, 3 A), and then switched to the constant voltage mode until the current dropped below 0.05 A. The experimental setup also included various equipment to manage and monitor the charging and discharging processes, which are summarized in Table 2.
3.2.1. Normal (Type 1)
Lithium batteries, as core components in energy storage systems, play a critical role in energy storage and release. Under normal operating conditions, lithium batteries should exhibit stable voltage and capacity, consistently provide the designed output power, and maintain a long service life within the specified charge and discharge cycles. The lithium iron phosphate (LiFePO4) battery used in this study has a performance specification of 3.2 V, 25 Ah, and 80 Wh, which meets its technical requirements. The test was conducted using a programmable electronic load for a 3 A (0.12 C) discharge test, as shown in Figure 8. The measured discharge voltage and capacity curves were obtained at an ambient temperature of 24 °C, with the operating voltage ranging from 3.13 V to 3.27 V, in accordance with the manufacturer’s standard for LiFePO4 batteries. Figure 9 shows the appearance of the normal lithium battery used in this study.
3.2.2. Over-Discharging (Type 2)
When lithium batteries are over-discharged beyond their design limits, it results in excessively low internal voltage, causing permanent capacity loss. According to the literature [28], low-voltage conditions pose risks such as irreversible electrode damage, reduced charging efficiency, and shorter cycle life, potentially leading to irreversible damage.
In this study, after preheating a single lithium battery model, discharge was performed at 3 A with a cutoff voltage of 2.5 V, followed by a 30 min cooling period. The battery was then charged at 3 A in the constant current (CC) mode until it reached 4.2 V, at which point the charging mode switched to constant voltage (CV) until the current dropped to 0.05 A. A subsequent 30 min cooling period followed. This cycle was repeated 10 times. As shown in Figure 10, the voltage dropped to 2.5 V, and the over-discharged battery model exhibited a slight swelling at the center compared to a normal battery.
3.2.3. Overcharging (Type 3)
Long-term overcharging can cause an imbalance in the chemical reactions inside a lithium battery, leading to swelling, temperature rise, and performance degradation. According to reference [29], the risks of overcharging a lithium battery in high-temperature environments include thermal runaway, reduced capacity, and shortened lifespan, which not only affect performance but also pose safety hazards.
In this study, the battery was preheated and charged at 3 A constant current until it reached 4.8 V, then switched to the constant voltage mode until the current dropped below 0.05 A. After charging, a 30 min cooling period was applied. As shown in Figure 11, the overcharged battery model displayed significant swelling in the area circled in red, compared to the normal battery model.
3.2.4. Leakage (Type 4)
Battery leakage is typically caused by manufacturing defects, external impacts, overcharging, and packaging issues. Leakage can corrode the battery casing and internal components, potentially damaging the surrounding environment and equipment. It leads to performance degradation, increased internal resistance, and capacity loss, and in severe cases, can even cause fires [30]. In this study, a steel nail was used to puncture the battery model lightly, and the battery was left to stand for 20 days to simulate leakage. As shown in Figure 12, there are no visible differences in appearance, but the leakage area, circled in red, shows slight swelling compared to the normal battery model when touched.
3.2.5. Aging (Type 5)
The aging of lithium batteries is typically associated with factors such as manufacturing defects, charge–discharge cycles, high-temperature environments, overcharging, over-discharging, and external impacts. According to reference [31], after aging, the battery’s efficiency declines, its lifespan shortens, and the cutoff discharge voltage decreases, affecting the normal operation of the device. In this study, the battery was charged at 3 A under the constant current mode until it reached 4.2 V, then switched to the constant voltage mode until the charging current dropped to 0.05 A. After charging, a 10 min cooling period was applied, followed by discharging at 3 A with a cutoff voltage of 2.6 V to prevent over-discharging, and another 10 min cooling period. This charge–discharge cycle was repeated 20 times to simulate excessive use and battery aging. As shown in Figure 13, significant swelling was observed in the area circled in red on the battery’s surface.
3.3. Fault Model Capacity Experiment
In our study, after completing the creation of fault models and conducting capacity tests for the four fault types as shown in Figure 14, it was observed that the capacity of each fault model showed significant degradation compared to the normal model. The most significant capacity degradation was caused by aging, followed by leakage, over-discharge, and overcharge. Aging primarily causes capacity degradation due to the failure of internal chemical reactions and the gradual loss of electrode materials, leading to a reduction in the battery’s energy storage ability. The leakage model reduces battery performance by disrupting internal chemical reactions. Over-discharge causes the battery voltage to drop too low, damaging the battery structure and resulting in irreversible capacity loss. Overcharge causes the battery voltage to become too high, damaging the electrodes and electrolyte, leading to capacity degradation and increased safety risks.
4. Experimental Results
4.1. Original Waveform Measurement
Before starting the experiment, the lithium battery was charged using a constant current–constant voltage (CC-CV) mode, with a preset charging voltage of 3.5 V and a current threshold of I < 0.5 A. Signal acquisition was conducted for five fault types. A high-frequency square wave signal with a frequency of 80.5 kHz and 20 Vp-p was input. Data were sampled at 25 μs intervals over four cycles. A total of 3000 samples were collected, with 400 used for training and 200 for testing per fault type.
As shown in Figure 15a, the output voltage waveform of the lithium battery is affected by the voltage drop across the load, resulting in a decrease in peak voltage. The main differences in the battery signals are observed in the voltage fluctuations within the positive and negative half-cycles. Therefore, voltage fluctuations associated with different fault types can serve as identification signals. In Figure 15b, comparing the over-discharge model with the normal model, a small oscillation is observed near the voltage drop in the 15 to 20 μ/s range. In Figure 15c, the overcharge model shows larger voltage fluctuations compared to the normal model during the 10 to 15 μ/s period. In Figure 15d, the leakage model exhibits differences from the normal model in terms of voltage peak fluctuations in the 0 to 5 μ/s range in both the positive and negative half-cycles, as well as a decrease in peak voltage in the 10 to 20 μ/s range. Finally, comparing the aging model in Figure 15e with the normal model, a slight oscillation around 15 to 20 μ/s is observed, similar to the oscillation seen in the over-discharge model in Figure 15b.
4.2. Application of the Symmetric Point Coordinate Method in Lithium Battery Modules
This study focuses on analyzing the waveform signals generated by lithium battery modules and inputting the data into the SDP system to produce corresponding feature maps. Figure 16 displays the feature images for the five types of lithium battery module faults, which are essential for fault detection and diagnosis.
The snowflake patterns of lithium batteries under different fault conditions have distinct features for fault identification. The distribution and density of these patterns vary with the fault type. Significant differences can be observed when comparing the fault model to the normal model, primarily concentrated at the center. This feature was applied in deep learning for fault training and identification.
4.3. Recognition Results of the CNN
In this study, the CNN model for fault type identification used 3000 snowflake feature images, with 400 training samples and 200 testing samples for each fault type. The method effectively classified lithium battery module faults, achieving a recognition accuracy of 99.9%, as shown in Table 3. The high accuracy is attributed to the CNN’s powerful deep feature extraction capability, while batch normalization improved training stability and addressed the vanishing gradient problem. The SGDM optimizer ensured fast convergence, and proper data partitioning enhanced the model’s generalization, resulting in excellent performance in the lithium battery image recognition task.
Figure 17 shows the CNN confusion matrix, with the horizontal axis representing actual fault types and the vertical axis representing predicted fault types. Green indicates correct classifications, while red indicates misclassifications. The accuracy and misclassification rates for each fault type are shown in the light gray grid, and the overall accuracy and misclassification rates are in the dark gray grid at the bottom right.
The results show that the 200 Type A (normal battery) samples were classified with 100% accuracy. Type B (over-discharged battery) had an accuracy of 99.9%, with one sample misclassified as a leakage battery. Type C (overcharged battery), Type D (leakage battery), and Type E (aging battery) all showed excellent classification, with all 200 samples correctly classified.
This study demonstrates the high accuracy achieved by combining SDP and CNN, as shown in Figure 18 and Table 4. When the number of training epochs is set to 50, the accuracy is 95.7%, and it increases to 99.9% after 100 epochs, with the best results obtained at 100 epochs. The study also explores advanced deep learning algorithms, such as ResNet-18 and VGG-19. At 50 epochs, SDP + CNN achieved 95.7% accuracy in 121.9 s, while SDP + ResNet-18 achieved 89.8% accuracy in 232 s, and SDP + VGG-19 achieved 94.4% accuracy in 369.6 s. At 100 epochs, SDP + CNN reached 99.9% accuracy in 218.5 s, SDP + ResNet-18 achieved 91.5% accuracy in 458.6 s, and SDP + VGG-19 achieved 96.0% accuracy in 723.5 s. In conclusion, SDP + CNN performed excellently at both 50 and 100 epochs, in terms of both training time and accuracy. In comparison, although ResNet-18 and VGG-19 also showed high accuracy, their training times were significantly longer, especially VGG-19, which had a much longer training time than CNN. Ultimately, the combination of SDP and CNN achieved the best performance in lithium battery fault recognition, in terms of both accuracy and training time.
5. Discussion
This study combines the methods of snowflake diagrams and convolutional neural networks (CNN), particularly for their effectiveness in lithium battery fault diagnosis. Compared to model-based fault diagnosis methods, our approach offers significant advantages, as model-based methods typically rely on complex mathematical models and assumptions, while our research transforms battery voltage signals into images using snowflake diagrams and employs CNN for automatic feature extraction, avoiding extensive physical assumptions. This enables us to capture both temporal and spatial features of the signals, improving fault classification accuracy and offering stronger adaptability. However, the method may face challenges when dealing with more complex fault types, such as thermal runaway and internal short circuits, where model-based methods generally provide theoretical support. Our method, on the other hand, requires more training data to maintain high accuracy and still needs to improve robustness and generalization in multi-fault-type recognition. To further enhance fault diagnosis accuracy and robustness, we suggest that future research could involve experiments at different temperatures to explore the impact of temperature variations on battery fault diagnosis. Additionally, future studies should focus on including more fault types, particularly common fault modes in practical applications, such as thermal runaway and internal short circuits, to improve the practicality and performance of fault diagnosis models.
6. Conclusions
This paper proposes a method for lithium battery module fault diagnosis by combining snowflake patterns and convolutional neural networks (CNNs). By extracting the signal features of the battery under load conditions, the method can accurately determine the battery’s state. The study covers five different battery states: normal, overcharge, over-discharge, leakage, and aging. The experimental results show that as the number of training epochs increases from 50 to 100, the CNN model’s recognition accuracy improves significantly, achieving optimal performance. The study also compares advanced deep learning algorithms, such as ResNet and VGG, and the results show that CNN outperforms these two more complex network architectures in terms of fault recognition accuracy and training efficiency. While ResNet and VGG are more suitable for processing complex images, CNN performed better in this study. These results validate the effectiveness of the proposed method and further demonstrate the broad potential of this technology for future applications, especially in fault diagnosis and state assessment based on signal features, providing fast and efficient solutions.
Conceptualization, M.-H.W.; methodology, M.-H.W.; software, J.-X.H.; Data curation, J.-X.H.; investigation, J.-X.H.; resources, M.-H.W.; writing—original draft, J.-X.H.; writing—review & editing, M.-H.W. and S.-D.L.; visualization, J.-X.H.; supervision, M.-H.W., S.-D.L. project administration, M.-H.W. and S.-D.L. All authors have read and agreed to the published version of the manuscript.
Not applicable.
Not applicable.
Data are contained within the article.
The authors declare no conflicts of interest.
Footnotes
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Figure 15. Signals of lithium battery fault types: (a) normal, (b) over-discharge, (c) overcharge, (d) leakage, and (e) aging.
Figure 16. Snowflake diagram of lithium battery fault types: (a) normal, (b) over-discharge, (c) overcharge, (d) leakage, and (e) aging.
Figure 17. Confusion matrix for fault diagnosis of lithium battery modules based on convolutional neural networks.
Lithium battery—four common faults.
Lithium Battery—Four Common Faults | |
---|---|
Type A | Normal (Type 1) |
Type B | Over-discharging (Type 2) |
Type C | Overcharging (Type 3) |
Type D | Leakage (Type 4) |
Type E | Aging (Type 5) |
Experimental equipment.
Equipment | Model | Specification |
---|---|---|
Programmable DC Power Supply | ITECH-IT6302 | Output voltage: 0–30 V, |
Programmable Electronic Load | ITECH-IT8512A | Max input voltage: 120 V, |
NI PXIe | NI PXI-5105 | 60 MHz sampling rate, 8 synchronized channels, and 12-bit resolution |
Signal | Agilent 33220A | Frequency range: 1 µHz to 20 MHz |
Results of lithium-ion battery fault detection based on CNN.
Fault Types | Training Pattern | Testing Pattern | Accuracy (%) |
---|---|---|---|
Type A | 400 | 200 | 99.9 |
Type B | 400 | 199 | |
Type C | 400 | 200 | |
Type D | 400 | 200 | |
Type E | 400 | 200 |
Lithium-ion battery fault detection performance comparison.
Algorithm | Training Time (s) | Testing Time (s) | Epoch | Accuracy (%) |
---|---|---|---|---|
SDP + CNN | 121.9 | 0.3970 | 50 | 95.7 |
SDP + Res-Net18 | 232.0 | 0.7095 | 50 | 89.8 |
SDP + VGG-19 | 369.6 | 0.0107 | 50 | 94.4 |
SDP + CNN | 218.5 | 0.4457 | 100 | 99.9 |
SDP + Res-Net18 | 458.6 | 0.7602 | 100 | 91.5 |
SDP + VGG-19 | 723.5 | 0.0067 | 100 | 96.0 |
References
1. Gan, N.; Sun, Z.; Zhang, Z.; Xu, S.; Liu, P.; Qin, Z. Data-Driven Fault Diagnosis of Lithium-Ion Battery Over-discharge in Electric Vehicles. IEEE Trans. Power Electron.; 2022; 37, pp. 4575-4588. [DOI: https://dx.doi.org/10.1109/TPEL.2021.3121701]
2. Han, S.; Choi, C.; Kwon, S.; Lee, S.; Kim, J. Electrical Analysis about internal short circuit using additional resistance in high energy lithium-ion battery. Proceedings of the 2020 20th International Conference on Control, Automation and Systems (ICCAS); Busan, Republic of Korea, 13–16 October 2020.
3. Sepasihooyi, S.; Abdollahi, F. Fault detection of Lithium-lon Battery in Electric Vehicles Considering Ageing Effects. Proceedings of the 2022 8th International Conference on Control, Instrumentation and Automation (ICCIA); Tehran, Islamic Republic of Iran, 2–3 March 2022.
4. Yu, Y.; Yao, Z.; Tian, F. Multi-task Deep Learning Based Defect Detection for Lithium Battery Tabs. Proceedings of the 2022 China Automation Congress (CAC); Xiamen, China, 25–27 November 2022.
5. Sahraei, E.; Gilaki, M.; Lynch, W.; Kirtley, J.; Soudbakhsh, D. Cycling Results of Mechanically Damaged Li-Ion Batteries. Proceedings of the 2019 IEEE Electric Ship Technologies Symposium (ESTS); Washington, DC, USA, 14–16 August 2019.
6. Li, D.; Zhang, Z.; Liu, P.; Wang, Z.; Zhang, L. Battery Fault Diagnosis for Electric Vehicles Based on Voltage Abnormality by Combining the Long Short-Term Memory Neural Network and the Equivalent Circuit Model. IEEE Trans. Power Electron.; 2021; 36, pp. 1303-1315. [DOI: https://dx.doi.org/10.1109/TPEL.2020.3008194]
7. Zhang, Y.; Zhang, P.; Hu, J.; Zhang, C.; Zhang, L.; Wang, Y.; Zhang, W. Fault Diagnosis Method of Lithium-Ion Battery Leakage Based on Electrochemical Impedance Spectroscopy. IEEE Trans. Ind. Appl.; 2024; 60, pp. 1879-1889. [DOI: https://dx.doi.org/10.1109/TIA.2023.3327227]
8. Wang, N.; Yang, Q.; Xing, J.; Jia, H.; Chen, W. Thermal Fault Diagnosis Method of Lithium Battery Based on LSTM and Battery Physical Model. Proceedings of the 2022 41st Chinese Control Conference (CCC); Hefei, China, 25–27 July 2022.
9. Sharma, R.; Bala, A.; Singh, a.; Singh, M. State of Health Estimation for Li-Ion Battery Using Machine Learning. Proceedings of the 2023 IEEE International Conference on Metrology for eXtended Reality, Artificial Intelligence and Neural Engineering (Metro XRAINE); Milano, Italy, 25–27 October 2023.
10. Zhao, X.; He, H.; Huang, R.; Dou, J.; Wang, Y.; Jia, C. A deep learning-based power battery capacity estimation model assisted with feature vector construction. Proceedings of the 2022 International Conference on Electrical, Computer and Energy Technologies (ICECET); Prague, Czech Republic, 20–22 July 2022.
11. Gao, D.; Hou, J.; Liang, K.; Yang, Q. Fault Diagnosis System for Electric Vehicle Charging Devices Based on Fault Tree Analysis. Proceedings of the 2018 37th Chinese Control Conference (CCC); Wuhan, China, 25–27 July 2018.
12. Sainath, T.; Weiss, R.; Wilson, K.; Li, B.; Narayanan, A.; Variani, E. Multichannel Signal Processing with Deep Neural Networks for Automatic Speech Recognition. IEEE/ACM Trans.; 2017; 25, pp. 965-979. [DOI: https://dx.doi.org/10.1109/TASLP.2017.2672401]
13. Fan, J.; Zhao, T.; Kuang, Z.; Zheng, Y.; Zhang, J.; Yu, J. HD-MTL: Hierarchical Deep Multi-Task Learning for Large-Scale Visual Recognition. IEEE Trans. Image Process.; 2017; 26, pp. 1923-1938. [DOI: https://dx.doi.org/10.1109/TIP.2017.2667405] [PubMed: https://www.ncbi.nlm.nih.gov/pubmed/28207396]
14. Ardeshiri, R.; Ma, C. State of Charge Estimation of Lithium-ion Battery Using Deep Convolutional Stacked Bidirectional LSTM. Proceedings of the 2021 IEEE 30th International Symposium on Industrial Electronics (ISIE) Kyoto; Japan, 20–23 June 2021.
15. You, M.; Liu, Y.; Chen, Z.; Zhou, X. Capacity Estimation of lithium battery based on charging data and Long Short-term Memory Recurrent Neural Network. Proceedings of the 2022 IEEE Intelligent Vehicles Symposium (IV); Aachen, Germany, 4–9 June 2022.
16. Dong, Z.; Zhou, X.; Liu, Y. Comparison of Neural Network Models in Lithium-Ion Batteries’ State of Charge Estimation. Proceedings of the 2023 4th International Conference on Smart Grid and Energy Engineering (SGEE); Zhengzhou, China, 24–26 November 2023.
17. Yuan, H.; Chen, J.; You, X.; Wu, H.; Dong, Y.; Shi, Q. Fault Diagnosis of Bearing in PMSM Based on Calibrated Stator Current Residual Signal and Improved Symmetrized Dot Pattern. IEEE Sens. J.; 2024; 24, pp. 3232-3246. [DOI: https://dx.doi.org/10.1109/JSEN.2023.3340408]
18. Lu, H.; Zhao, X.; Tao, B.; Yin, Z. Online Process Monitoring Based on Vibration-Surface Quality Map for Robotic Grinding. IEEE/ASME Trans. Mechatron.; 2020; 25, pp. 2882-2892. [DOI: https://dx.doi.org/10.1109/TMECH.2020.2996939]
19. Rastegarpanah, A.; Contreras, C.; Stolkin, R. Hyperparameter-optimized CNN and CNN-LSTM for Predicting the Remaining Useful Life of Lithium-Ion Batteries. Proceedings of the 2023 Eleventh International Conference on Intelligent Computing and Information Systems (ICICIS); Cairo, Egypt, 21–23 November 2023.
20. Zhang, K.; Sun, M.; Han, T.; Yuan, X.; Guo, L.; Liu, T. Residual Networks of Residual Networks: Multilevel Residual Networks. IEEE Trans. Circuits Syst. Video Technol.; 2018; 28, pp. 1303-1314. [DOI: https://dx.doi.org/10.1109/TCSVT.2017.2654543]
21. Jothika, G.; Khilar, R. Improving Disease Detection in Tomato Leaves Using Visual Geometry Group 19 Compared to the Artificial Neural Network Algorithm. Proceedings of the 2024 International Conference on Intelligent and Innovative Technologies in Computing, Electrical and Electronics (IITCEE); Bangalore, India, 24–25 January 2024.
22. Yang, T.; Ma, J.; Yuan, J.; Wang, S. Reactor Coolant System Fault Diagnosis Method Using Symmetrized Dot Pattern Images and DSCNN. Proceedings of the 2023 CAA Symposium on Fault Detection, Supervision and Safety for Technical Processes (SAFEPROCESS); Yibin, China, 22–24 September 2023.
23. Lecun, Y.; Bottou, L.; Bengio, Y.; Haffner, P. Gradient-based learning applied to document recognition. Proc. IEEE; 1998; 86, pp. 2278-2324. [DOI: https://dx.doi.org/10.1109/5.726791]
24. Yanagisawa, H.; Yamashita, T.; Watanabe, H. A study on object detection method from manga images using CNN. Proceedings of the 2018 International Workshop on Advanced Image Technology (IWAIT); Chiang Mai, Thailand, 7–9 January 2018.
25. Kido, S.; Hirano, Y.; Hashimoto, N. Detection and classification of lung abnormalities by use of convolutional neural network (CNN) and regions with CNN features (R-CNN). Proceedings of the 2018 International Workshop on Advanced Image Technology (IWAIT); Chiang Mai, Thailand, 7–9 January 2018.
26. Li, L.; Yuan, X.; Yang, C. Fault Diagnosis for Rolling Bearings Using Time-Frequency Energy Matrix Difference and CNN. Proceedings of the 2023 9th International Conference on Mechanical and Electronics Engineering (ICMEE), Xi’an; China, 17–19 November 2023.
27. Wang, M.; Hung, C.; Lu, S.; Chen, F.; Su, Y.; Kuo, C. Fault Diagnosis of Wind Turbine Gearbox Using Vibration Scatter Plot and Visual Geometric Group Network. Processes; 2024; 12, 985. [DOI: https://dx.doi.org/10.3390/pr12050985]
28. Xiong, J.; Banvait, H.; Li, L.; Chen, Y.; Xie, J.; Liu, Y.; Wu, M.; Chen, J. Failure detection for over-discharged Li-ion batteries. Proceedings of the 2012 IEEE International Electric Vehicle Conference (IEVC); Greenville, SC, USA, 4–8 March 2012.
29. Wu, X.; Chen, Y.; Han, X.; Du, J.; Wen, T.; Sun, Y. Analysis of performance degradation of lithium iron phosphate power battery under slightly overcharging cycles. Proceedings of the 2020 4th CAA International Conference on Vehicular Control and Intelligence (CVCI); Hangzhou, China, 18–20 December 2020.
30. Zhang, C.; Zhang, P.; Wang, Y.; Zhang, L.; Hu, J.; Zhang, W. Support Vector Machine Based Lithium-ion Battery Electrolyte Leakage Fault Diagnosis Method. Proceedings of the 2022 4th International Conference on Smart Power & Internet Energy Systems (SPIES); Beijing, China, 9–12 December 2022.
31. You, H.; Zhu, J.; Wang, X.; Jiang, B.; Wei, X.; Dai, H. Lithium-Ion Battery Online Capacity Diving Multilevel Evaluation and Early Warning Method Based on State of Nonlinear Aging. Proceedings of the 2022 4th International Conference on Smart Power & Internet Energy Systems (SPIES); Beijing, China, 9–12 December 2022.
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
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/). Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License.
Abstract
This paper proposes a hybrid algorithm combining the symmetrized dot pattern (SDP) method and a convolutional neural network (CNN) for fault detection in lithium battery modules. The study focuses on four fault types: overcharge, over-discharge, aging, and leakage caused by manual perforation. An 80.5 kHz high-frequency square wave signal is input into the battery module and recorded using a high-speed data acquisition card. The signal is processed by the SDP method to generate characteristic images for fault diagnosis. Finally, a deep learning algorithm is used to evaluate the state of the lithium battery. A total of 3000 samples were collected, with 400 samples used for training and 200 for testing for each fault type, achieving an overall identification accuracy of 99.9%, demonstrating the effectiveness of the proposed method.
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