Vertical Force Monitoring of Racing Tires: A Novel Deep Neural Network-Based Estimation Method
Abstract
:1. Introduction
- A novel combination of the strengths of deep neural networks and Random Forests has been used to estimate vertical tire forces better than existing related studies.
- A highly reliable dataset of racing tires with a specific hardness level has been obtained. The tests were performed using an original test rig setup in a racing tire manufacturer’s factory to simulate the original behavior of the racing tire.
- One of the important contributions is the use of inputs directly related to the vertical force for more realistic estimation. Acceleration, speed, and tire internal pressure values were used instead of irrelevant values used in the literature.
- The labeling of analog data representing the acceleration acting on the tire was automated using deep learning to reduce labeling effort and enhance reliability.
2. Related Works
2.1. Observer and Filter-Based Estimation of Vertical Force
2.2. Hybrid and Pure Neural Network Approaches in Vertical Tire Force Estimation
2.3. Analysis of Methodological Constraints in Related Works
2.3.1. Peak Radial Displacement-Based Approaches
- : radial acceleration signal measured during tire–ground interactions;
- : the time required for the tire to traverse the contact patch, which serves as the integration limit.
- : vertical load;
- P: tire inflation pressure;
- : experimentally derived coefficients.
2.3.2. Contact Patch Length-Based Methods
- R: the free radius of the tire;
- t: the time required for the tire to complete one full rotation;
- : the time required for the tire to traverse the contact patch.
2.3.3. Vehicle Model-Based Estimation Approaches
- : vertical force acting on the wheel;
- : suspension spring stiffness;
- : suspension damping coefficient;
- : suspension compression;
- : suspension compression velocity;
- : force due to camber effects;
- : unsprung mass;
- g: gravitational acceleration.
- : sprung and unsprung masses;
- : suspension stiffness and damping coefficients;
- : tire stiffness and damping coefficients;
- : vertical displacements of the sprung and unsprung masses;
- : velocities of the sprung and unsprung masses;
- : actuator force (if active suspension is used);
- : vertical displacement and velocity of the road surface.
- : vertical forces on the front and rear tires;
- : tire stiffness for front and rear tires;
- : vertical displacements of the front and rear tires;
- : road surface roughness at the front and rear tires;
- : road deflections due to vehicle-bridge interaction (if applicable).
2.3.4. Tire Model-Based Estimation Approaches
2.3.5. Data Driven Estimation Approaches
3. Random Forest Assisted Deep Neural Network Model
3.1. Conventional Random Forest Approach
- Sequential dependencies: RF treats each data point independently, failing to capture the sequential dependencies inherent in the 251-point voltage signal. These dependencies, both short term and long term, are crucial for accurately estimating the target force value.
- Aggregate effects of sequential data: The target force value reflects the cumulative effect of all 251 voltage points. RF processes each point in isolation and cannot account for this aggregate relationship.
- Low variance in the target variable: All 251 points are labeled with the same force value, which reduces the variance in the target variable. This hinders RF’s ability to optimize its decision trees effectively and limits its generalization capability.
- Complex nonlinear relationships: The voltage signal exhibits nonlinear patterns and trends that RF struggles to model with its decision tree structure, leading to suboptimal regression performance.
- Identifying critical patterns: Some regions within the sequential data are more influential on the target force value. However, RF fails to prioritize these critical patterns, treating all data points equally.
- Lack of contextual information: Constant parameters such as pressure and rotational speed significantly influence the voltage signal. RF cannot directly incorporate these contextual factors without explicit feature engineering, which may introduce errors or biases.
- Time series challenges in RF: While RF can be effective in time series tasks using lag features or sliding windows, such techniques are limited to capturing short-term dependencies. In our problem, the voltage signal requires modeling long-term dependencies and cumulative effects across the entire sequence, which RF is unable to achieve effectively.
- Incorporation of sequential dependencies: Long-term and short-term dependencies within the 251-point voltage signal are modeled using LSTM and MGU. These components capture the temporal structure of the data and provide RF with enriched features that reflect sequential patterns and dependencies.
- Optimization with MGU for training and inference speed: Instead of relying solely on LSTM layers, MGU is utilized to optimize training and inference speed. MGU reduces computational complexity while maintaining the ability to model sequential dependencies effectively, making the system more efficient for real-time applications.
- Extraction of nonlinear relationships: A 1D CNN is employed to extract local patterns and nonlinear relationships from the voltage signal. These patterns, often inaccessible to RF, are passed as high-quality features to improve its regression performance.
- Prioritization of critical patterns: Multihead Attention highlights the most influential regions within the sequential data, enabling RF to focus on the key segments that are more predictive of the target force value.
- Mitigation of low target variance: The enriched features derived from deep learning components introduce additional context and variability, allowing for RF to perform better even when the target variable exhibits low variance.
- Integration of contextual information: The effects of constant parameters such as pressure and rotational speed are implicitly captured by the deep learning layers. These parameters are then incorporated into RF’s feature space, reducing the need for explicit feature engineering.
- Enhancing interpretability through feature integration: By combining the outputs of CNN, LSTM, MGU, and Multihead Attention, the method produces a comprehensive feature set that bridges the gap between raw sequential data and RF’s decision-making process.
- Improved efficiency in feature engineering: The reliance on manual feature extraction is significantly reduced by leveraging automated feature generation from deep learning architectures, thus streamlining the process and minimizing errors.
3.2. The Architecture of the Proposed Hybrid RFADNN Model
3.3. Deep Neural Network Model of the Proposed Method
- Receptive field RF is the maximum length of input data that the model can consider at once.
- kernel_size is the size of the kernel (filter) used in each convolutional layer.
- dilation_ratei is the dilation rate at the layer, which exponentially increases with the layer level.
- n is the total number of layers.
- : forget gate weight matrix.
- : input gate weight matrix.
- : output gate weight matrix.
- : cell state candidate weight matrix.
- : forget gate weight matrix in MGU.
- : weight matrix for the hidden state candidate update.
- Sigmoid function (): The sigmoid function outputs values between 0 and 1, which determine how much information to pass through the gate.
- Tanh function (tanh): Used for cell state candidates and hidden states, outputs values between −1 and 1.
- Element-wise multiplication (⊙): Used for controlling which parts of the cell state are updated.
3.4. Implementation Details of the Proposed Method
- The flow starts with training the model, , using the training dataset. The training process continues either until the maximum number of epochs is reached or the loss function shows no significant decrease over a certain number of epochs.
- After completing one iteration of training, an intermediate model is created by extracting the final layer of the Fully Connected Neural Network, which is the last layer of .
- Using this intermediate model, features (intermediate vertical force predictions) are collected from the training dataset, which includes acceleration, pressure, and speed data.
- These features, along with their corresponding labels, are used to train the Random Forest Regressor.
- During inference and testing, the intermediate model is again used to collect features from the test dataset (acceleration, pressure, and speed). The Random Forest Regressor then predicts the final vertical force based solely on these collected features.
- If the Mean Absolute Error (MAE) of the predictions on the test dataset exceeds 1.0 kgf, another iteration of training begins for both and the Random Forest Regressor.
- The iterative training process continues until the MAE falls below 1. Once this criterion is met, the training process is considered complete, and the final predictions are utilized.
4. Dataset Construction
4.1. Experimental Data Acquisition Setup
4.2. Data Collection and Labeling
4.2.1. Pre-Labeling After Data Collection Phase
4.2.2. Preprocessing and Manual Labeling
4.2.3. Automatic Data Labeling
- Filtering out excessively noisy signal blocks that could not be corrected through preprocessing;
- Automatically segmenting the pre-labeled 60 s data block into 251-point segments and assigning these the corresponding state identifier;
- Reducing the time and manual effort required for labeling.
5. Performance Evaluations
- : actual measured force;
- : values estimated by the model;
- : the average of the actual values;
- n: the number of samples.
6. Conclusions
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Acknowledgments
Conflicts of Interest
References
- Gu, T.; Li, B.; Quan, Z.; Bei, S.; Yin, G.; Guo, J.; Zhou, X.; Han, X. The vertical force estimation algorithm based on smart tire technology. World Electr. Veh. J. 2022, 13, 104. [Google Scholar] [CrossRef]
- Ding, X.; Wang, Z.; Zhang, L.; Liu, J. A comprehensive vehicle stability assessment system based on enabling tire force estimation. IEEE Trans. Veh. Technol. 2022, 71, 11571–11588. [Google Scholar] [CrossRef]
- Li, R.; Sun, Y.; Lu, Z.; Tian, G. Tire Force Allocation with Different Vertical Load Estimation Methods for 4WID-4WIS Vehicles. In Proceedings of the 2022 IEEE Vehicle Power and Propulsion Conference (VPPC), Merced, CA, USA, 1–4 November 2022; pp. 1–6. [Google Scholar]
- Lee, H.; Taheri, S. Intelligent tires? A review of tire characterization literature. IEEE Intell. Transp. Syst. Mag. 2017, 9, 114–135. [Google Scholar] [CrossRef]
- Rezaeian, A.; Zarringhalam, R.; Fallah, S.; Melek, W.; Khajepour, A.; Chen, S.-K.; Moshchuck, N.; Litkouhi, B. Novel tire force estimation strategy for real-time implementation on vehicle applications. IEEE Trans. Veh. Technol. 2015, 64, 2231–2241. [Google Scholar] [CrossRef]
- Liang, G.; Wang, Y.; Garcia, A.; Liu, Z.; Kaliske, M.; Wei, Y. A Universal Approach to Tire Forces Estimation by Accelerometer-Based Intelligent Tire: Analytical Model and Experimental Validation. Tire Sci. Technol. 2022, 50, 2–26. [Google Scholar] [CrossRef]
- Zhang, B.; Xu, T.; Wang, H.; Huang, Y.; Chen, G. Vertical tire forces estimation of multi-axle trucks based on an adaptive treble extend Kalman filter. Chin. J. Mech. Eng. 2021, 34, 55. [Google Scholar] [CrossRef]
- Wilson, G.; Ramirez-Serrano, A.; Sun, Q. Geometric-based tyre vertical force estimation and stiffness parameterisation for automotive and unmanned vehicle applications. Veh. Syst. Dyn. 2017, 55, 168–190. [Google Scholar] [CrossRef]
- Harth, V.; Fayet, M.; Renou, L.M.C. A modelling approach to tire-obstacle interaction. Multibody Syst. Dyn. 2004, 11, 23–39. [Google Scholar] [CrossRef]
- Kim, S.; Jeong, Y.; Kim, J.; Lee, S.; Chung, C. Vehicular vertical tire forces estimation using unscented Kalman filter. In Proceedings of the 12th Asian Control Conference (ASCC), Kitakyushu, Japan, 9–12 June 2019; pp. 325–330. [Google Scholar]
- Wang, H.; Nagayama, T.; Su, D. Estimation of Dynamic Tire Force by Measurement of Vehicle Body Responses with Numerical and Experimental Validation. Mech. Syst. Signal Process. 2019, 123, 369–385. [Google Scholar] [CrossRef]
- Jiang, K.; Yang, D.; Xie, S.; Xiao, Z.; Victorino, A.; Charara, A. Real-time estimation and estimation of tire forces using digital map for driving risk assessment. Transp. Res. Part C 2019, 107, 463–489. [Google Scholar] [CrossRef]
- Acosta, M.; Kanarachos and, S.; Fitzpatrick, M. A Virtual Sensor for Integral Tire Force Estimation using Tire Model-Less Approaches and Adaptive Unscented Kalman Filter. In Proceedings of the 14th International Conference on Informatics in Control, Automation and Robotics (ICINCO), Madrid, Spain, 26–28 July 2017; pp. 386–397. [Google Scholar]
- Jeong, D.; Kim, S.; Lee, J.; Choi, S.B.; Kim, M.; Lee, H. Estimation of tire load and vehicle parameters using intelligent tires combined with vehicle dynamics. IEEE Trans. Instrum. Meas. 2020, 70, 9502712. [Google Scholar] [CrossRef]
- Singh, K.; Taheri, S. Accelerometer based method for tire load and slip angle estimation. Vibration 2019, 2, 174–186. [Google Scholar] [CrossRef]
- Doumiati, M.; Victorino, A.; Lechner, D.; Baffet, G.; Charara, A. Observers for vehicle tyre/road forces estimation: Experimental validation. Veh. Syst. Dyn. 2010, 48, 1345–1378. [Google Scholar] [CrossRef]
- Schmeitz, A.J.; Teerhuis, A.P. Robustness and applicability of a model-based tire state estimator for an intelligent tire. Tire Sci. Technol. 2018, 46, 105–126. [Google Scholar] [CrossRef]
- Xu, N.; Askari, H.; Huang, Y.; Zhou, J.; Khajepour, A. Tire force estimation in intelligent tires using machine learning. IEEE Trans. Intell. Transp. Syst. 2020, 23, 3565–3574. [Google Scholar] [CrossRef]
- Breiman, L. Random Forests. Mach. Learn. 2001, 45, 5–32. [Google Scholar] [CrossRef]
- Ji, Y.; Zeng, J.; Ren, L. Research on the estimation of Tire Radial Load Based on 1D CNN and BiGRU. Int. J. Comput. Intell. Syst. 2023, 16, 185. [Google Scholar] [CrossRef]
- Im, S.J.; Oh, J.S.; Kim, G.W. Simultaneous Estimation of Unknown Road Roughness Input and Tire Normal Forces Based on a Long Short-Term Memory Model. IEEE Access 2022, 10, 16655–16669. [Google Scholar] [CrossRef]
- Wang, G.; Li, S.; Feng, G. Online Estimation of Three-Directional Tire Forces Based on a Self-Organizing Neural Network. Machines 2023, 11, 344. [Google Scholar] [CrossRef]
- Viehweger, M.; Vaseur, C.; van Aalst, S.; Acosta, M.; Regolin, E.; Alatorre, A.; Desmet, W.; Naets, F.; Ivanov, V.; Ferrara, A.; et al. Vehicle state and tyre force estimation: Demonstrations and guidelines. Veh. Syst. Dyn. 2021, 59, 675–702. [Google Scholar] [CrossRef]
- Cheon, D.; Choi, W.; Nam, K.; Oh, S. Tire vertical force estimation method using suspension deformation and stochastic road model in vehicle suspension system. In Proceedings of the IEEE Vehicle Power and Propulsion Conference (VPPC), Merced, CA, USA, 1–4 November 2022; pp. 1–5. [Google Scholar]
- Suyabodha, A. A relationship between tyre pressure and rolling resistance force under different vehicle speed. In Proceedings of the 2017 International Conference on Mechanical, Aeronautical and Automotive Engineering (ICMAA 2017), MATEC Web of Conferences, Malacca, Malaysia, 25–27 February 2017; Volume 108, p. 12004. [Google Scholar]
- Bernard, S.; Adam, S.; Heutte, L. Dynamic random forests. Pattern Recognit. Lett. 2012, 33, 1580–1586. [Google Scholar] [CrossRef]
- Zhou, G.B.; Wu, J.; Zhang, C.L.; Zhou, Z.H. Minimal gated unit for recurrent neural networks. Int. J. Autom. Comput. 2016, 13, 226–234. [Google Scholar] [CrossRef]
- Hochreiter, S.; Schmidhuber, J. Long Short-term Memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef] [PubMed]
- Jiawei, L.; Wu, W.; Feng, X. Improved Physics-Informed Neural Networks Combined with Small Sample Learning to Solve Two-Dimensional Stefan Problem. Entropy 2023, 25, 675. [Google Scholar] [CrossRef]
Indices/Components | Physical Meaning | Set of Measured Values |
---|---|---|
Vertical load applied to the tire (in kgf) | 150, 180, 210, 240, 270, 300, 330, 360, 390, 420 | |
Internal pressure of the tire (in kPa) | 200, 220 | |
Rotational speed of the tire (in km/h) | 30, 50, 70 | |
i | Index representing different vertical load levels | (corresponding to 150–420 kgf) |
j | Index representing different pressure levels | (corresponding to 200, 220 kPa) |
k | Index representing different speed levels | (corresponding to 30, 50, 70 km/h) |
Vertical force under specific load, pressure, and speed | Measured for 32 unique states selected from the 60 possible combinations of indices |
Gate/State | Equation |
---|---|
Forget gate | |
Input gate | |
Output gate | |
Cell state candidate | |
Cell state update | |
Hidden state |
Gate/State | Equation |
---|---|
Forget gate | |
Hidden state candidate | |
Hidden state update |
Method | MAE | RMSE | % NRMS |
---|---|---|---|
Proposed method (RFADNN) | 0.773 | 3.930 | 1.455 |
LSTM | 1.816 | 4.702 | 1.741 |
1D Convolution-BiGRU [20] | 3.028 | 5.568 | 2.062 |
1D Dilated Convolution | 3.781 | 6.193 | 2.29 |
Random Forest (100 trees) | 10.22 | 261.28 | 5.99 |
Random Forest (10,000 trees) | 10.108 | 253.27 | 5.89 |
Method | Hidden Layers/Units | |
---|---|---|
Proposed method (RFADNN) | 0.998 | 9/* |
LSTM | 0.996 | 3/16-32-251 |
1D Convolution-BiGRU [20] | 0.995 | 3/32-64-128 |
Random Forest (100 trees) | 0.960 | - |
Random Forest (10,000 trees) | 0.962 | - |
Method | Model Size (MB) | Avg. Estimation Time (ms) |
---|---|---|
Proposed method (RFADNN) | 178.435 | 3.440 |
LSTM | 259.835 | 1.047 |
1D Convolution-BiGRU [20] | 44.050 | 0.934 |
1D Dilated Convolution | 258.395 | 0.742 |
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. |
© 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/).
Share and Cite
Öngir, S.; Kaleli, E.C.; Konyar, M.Z.; Ertunç, H.M. Vertical Force Monitoring of Racing Tires: A Novel Deep Neural Network-Based Estimation Method. Appl. Sci. 2025, 15, 123. https://doi.org/10.3390/app15010123
Öngir S, Kaleli EC, Konyar MZ, Ertunç HM. Vertical Force Monitoring of Racing Tires: A Novel Deep Neural Network-Based Estimation Method. Applied Sciences. 2025; 15(1):123. https://doi.org/10.3390/app15010123
Chicago/Turabian StyleÖngir, Semih, Egemen Cumhur Kaleli, Mehmet Zeki Konyar, and Hüseyin Metin Ertunç. 2025. "Vertical Force Monitoring of Racing Tires: A Novel Deep Neural Network-Based Estimation Method" Applied Sciences 15, no. 1: 123. https://doi.org/10.3390/app15010123
APA StyleÖngir, S., Kaleli, E. C., Konyar, M. Z., & Ertunç, H. M. (2025). Vertical Force Monitoring of Racing Tires: A Novel Deep Neural Network-Based Estimation Method. Applied Sciences, 15(1), 123. https://doi.org/10.3390/app15010123