Research on Intelligent Hierarchical Energy Management for Connected Automated Range-Extended Electric Vehicles Based on Speed Prediction
Abstract
1. Introduction
1.1. Literature Review
1.2. Motivation and Innovation
2. Velocity Prediction Model Based on Acceleration Sequence
2.1. Acceleration Sequence Prediction Algorithm Based on Kalman Filtering
Algorithm 1: Vehicle speed prediction based on Kalman filtering |
Input: Sensor measurement sequence {z1, z2, …, zN}, control input sequence {a1, a2, …, aN}, sampling interval dt Output: Followed vehicle speed estimation sequence 1: // Initialization parameters 2: Initialize x_t_minus_1 = [0; 0] // Initial state [Vehicle speed; Acceleration] 3: Initialize P_t_minus_1 = eye(2) // Initial covariance matrix 4: Define F = [1, dt; 0, 1], B = [0.5*dt^2; dt], H = [1, 0] // State transfer matrix, control matrix, observation matrix 5: Define Q = q_var * eye(2), R = r_var // Noise covariance 6: for t = 1 to N do // Time-based iteration 7: // Forecasting phase 8: u_t = a_t // The acceleration of the preceding vehicle at the current moment is used as a control input 9: x_t_hat_minus = F * x_t_minus_1 + B * u_t // Priori state estimation 10: P_t_minus = F * P_t_minus_1 * F′ + Q // Priori Estimated covariance 11: // Update phase 12: z_t = Get Wheel Speed Measurement(t) // Get the wheel speed sensor measurement value at the current moment 13: K_t = P_t_minus * H′ * inv(H * P_t_minus * H′ + R) // Filter gain matrix 14: x_t_hat = x_t_hat_minus + K_t * (z_t - H * x_t_hat_minus) // Posteriori estimated state update 15: P_t = (eye(2) - K_t * H) * P_t_minus // Posteriori estimated covariance update 16: x_t_minus_1 = x_t_hat, P_t_minus_1 = P_t // Save the result of the current moment for the next iteration 17: // Output current speed estimate 18: Output Or Record (x_t_hat(1)) // Following speed 19: end for 20: Function Output Or Record (value) // Output or record the estimated speed of the following vehicle (for plotting or subsequent processing) 21: end Function |
2.2. Speed Predictions Results Based on the Acceleration Sequence
3. Hierarchical EMS Based on Speed Prediction
3.1. EMS for Eco-Vehicles in a Connected Scenario
- (1)
- The optimal constant-speed profile vopt is established as a stationary horizontal line. Derived from preceding vehicle historical driving data, the canonical acceleration profile vacc (standstill → maximum speed limit) and deceleration profile vdec (maximum speed limit → standstill) are extracted. These are systematically integrated with the emergency braking profile vbre to synthesize the optimal velocity trajectory.
- (2)
- The preceding vehicle’s speed prediction is based on its current speed vpre and SPaT information (remaining time tremain). An acceleration sequence model generates the speed sequence, which is combined with position data (d1-pre, d2-pre) to estimate its arrival times t1-pre and t2-pre at traffic signals (implemented in Section 2).
- (3)
- The temporal information from two adjacent signals and the predicted preceding vehicle arrival time is utilized to calculate the minimum allowable time and maximum allowable time for the eco-vehicle’s arrival at the first and second signal:
- (4)
- The eco-vehicle’s arrival times (t1-acc/t1-opt/t1-dec for Signal 1, t2-acc/t2-opt/t2-dec for Signal 2) under three speed profiles (vacc, vopt, vdec) are computed. Prioritizing sustained travel duration maximization within the prediction horizon, the optimal speed profile vopt serves as the baseline velocity, formulated as:
3.2. Multi-Objective Optimization Model
4. Verification and Results Analysis
4.1. Simulation Results and Analysis of Vehicle Speed Prediction of Eco-Vehicles
4.2. Comparative Analysis and Verification of Experimental Results
4.3. Experimental Test Implementation and Its Results
5. Conclusions
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
Nomenclature
CAR-EEV | connected automated range-extended electric vehicle | EMSMPC-P | Bayesian-optimized model predictive EMS based on PMP |
EMS | energy management strategy | CD-CS | charge depleting-charge sustaining |
MOO | multi-objective optimization | CD-Blend | charge depleting-blend |
PMP | Pontryagin’s minimum principle | SoC | state of charge |
DP | dynamic programming | MPC | model predictive control |
References
- Panaparambil, V.S.; Kashyap, Y.; Castelino, R.V. A review on hybrid source energy management strategies for electric vehicle. Int. J. Energy Res. 2021, 45, 19819–19850. [Google Scholar] [CrossRef]
- Mohan, A.; Manitha, P.V. Hybrid electric vehicles with V2X topology and smart energy management: An overview of their potential and limitations. In Proceedings of the 2nd IEEE International Conference on Futuristic Technologies, INCOFT 2023, Belagavi, Karnataka, India, 24–26 November 2023. [Google Scholar] [CrossRef]
- Yang, Y.; Sun, H.; Jiang, S.; Tian, J.; Ai, Q. Study on coordinated control strategy for auxiliary power units in range-extended electric vehicles. Energy Rep. 2025, 13, 865–874. [Google Scholar] [CrossRef]
- Tran, D.-D.; Vafaeipour, M.; El Baghdadi, M.; Barrero, R.; Van Mierlo, J.; Hegazy, O. Thorough state-of-the-art analysis of electric and hybrid vehicle powertrains: Topologies and integrated energy management strategies. Renew. Sustain. Energy Rev. 2020, 119, 109596. [Google Scholar] [CrossRef]
- Uralde, J.; Barambones, O.; del Rio, A.; Calvo, I.; Artetxe, E. Rule-based operation mode control strategy for the energy management of a fuel cell electric vehicle. Batteries 2024, 10, 214. [Google Scholar] [CrossRef]
- Wang, F.; Wen, Q.Y.; Xu, B. An energy saving rule-based strategy for electric-hydraulic hybrid wheel loaders. Proc. Inst. Mech. Eng. Part D-J. Automob. Eng. 2023, 238, 4081–4092. [Google Scholar] [CrossRef]
- Hou, S.; Gao, J.; Zhang, Y.; Chen, M.; Shi, J.; Chen, H. A comparison study of battery size optimization and an energy management strategy for FCHEVs based on dynamic programming and convex programming. Int. J. Hydrog. Energy 2020, 45, 21858–21872. [Google Scholar] [CrossRef]
- Park, D.; Lee, W.; Jeong, J.; Karbowski, D.; Kim, N. Eco-driving profile optimization by dynamic programming for battery electric vehicles. Int. J. Automot. Technol. 2024, 25, 1309–1321. [Google Scholar] [CrossRef]
- Deng, T.; Wu, S.; Chen, Q.; Liu, P. Multi-objective energy management strategy for PHEVs based on working condition information prediction and time-varying equivalence factor ECMS. Automot. Innov. 2024, 7, 698–715. [Google Scholar] [CrossRef]
- Sun, H.; Fu, Z.; Tao, F.; Zhu, L.; Si, P. Data-driven reinforcement-learning-based hierarchical energy management strategy for fuel cell/battery/ultracapacitor hybrid electric vehicles. J. Power Sources 2020, 455, 227964. [Google Scholar] [CrossRef]
- Yang, C.; Du, X.; Wang, W.; Yang, L.; Zha, M. A rolling convergent equivalent consumption minimization strategy for plug-in hybrid electric vehicles. IEEE Trans. Veh. Technol. 2023, 73, 1–13. [Google Scholar] [CrossRef]
- Wu, X.; Gu, Y.; Xu, M. Adaptive energy management strategy for extended-range electric vehicle based on micro-trip identification. IEEE Access 2020, 8, 176555–176564. [Google Scholar] [CrossRef]
- Liu, X.; Du, J.; Ma, J.; Liu, G.; Xiong, Y. An adaptive co-state design method for PMP-based energy management of plug-in hybrid electric vehicles based on fuzzy logical control. J. Energy Storage 2024, 102, 114118. [Google Scholar] [CrossRef]
- Zhang, B.; Xu, F.; Shen, T. A real-time energy management strategy for parallel HEVs with MPC. In Proceedings of the 2019 IEEE Vehicle Power and Propulsion Conference (VPPC), Hanoi, Vietnam, 14–17 October 2019. [Google Scholar] [CrossRef]
- Hou, Z.; Chu, L.; Du, W.; Hu, J.; Jiang, J.; Yang, J. A novel dual-model MPC-based energy management strategy for fuel cell electric vehicle. IEEE Trans. Transp. Electrif. 2024, 10, 8585–8604. [Google Scholar] [CrossRef]
- Hu, J.; He, H.; Wang, Z.; Ji, S.; Duan, Z. A switched model predictive control with parametric weights-based mode transition strategy for a novel parallel hybrid electric vehicle. Control. Eng. Pract. 2025, 155, 106161. [Google Scholar] [CrossRef]
- Thomas, J.; Thomas, A.; Biju, A.; Mathew, A.; Jose, C.P.; Haneesh, K.M. A GPS-gradient mapped database-based fuzzy energy management system for a Series—Parallel hybrid electric vehicle. In Advances in Electrical Control and Signal Systems; Springer: Singapore, 2020. [Google Scholar] [CrossRef]
- Zhang, L.; Liu, W.; Qi, B. Combined prediction for vehicle speed with fixed route. Chin. J. Mech. Eng. 2020, 33, 60. [Google Scholar] [CrossRef]
- Tian, H.; Wang, X.; Lu, Z.; Huang, Y.; Tian, G. Adaptive fuzzy logic energy management strategy based on reasonable SOC reference curve for online control of plug-in hybrid electric city bus. IEEE Trans. Intell. Transp. Syst. 2018, 19, 1607–1617. [Google Scholar] [CrossRef]
- Chen, B.; Wang, M.; Hu, L.; Zhang, R.; Li, H.; Wen, X.; Gao, K. A hierarchical cooperative eco-driving and energy management strategy of hybrid electric vehicle based on improved TD3 with multi-experience. Energy Convers. Manag. 2025, 326, 119508. [Google Scholar] [CrossRef]
- Bouwman, K.R.; Pham, T.H.; Wilkins, S.; Hofman, T. Predictive energy management strategy including traffic flow data for hybrid electric vehicles. IFAC Pap. 2017, 50, 10046–10051. [Google Scholar] [CrossRef]
- Luo, Y.; Chen, T.; Li, K. Multi-objective decoupling algorithm for active distance control of intelligent hybrid electric vehicle. Mech. Syst. Signal Process. 2015, 64–65, 29–45. [Google Scholar] [CrossRef]
- Zhang, F.; Qi, Z.; Xiao, L.; Coskun, S.; Xie, S.; Liu, Y.; Li, J.; Song, Z. Co-optimization on ecological adaptive cruise control and energy management of automated hybrid electric vehicles. Energy 2025, 314, 133542. [Google Scholar] [CrossRef]
- Sun, Y.; Wang, X.; Li, L.; Shi, J.; An, Q. Modelling and control for economy-oriented car-following problem of hybrid electric vehicle. IET Intell. Transp. Syst. 2019, 13, 825–833. [Google Scholar] [CrossRef]
- Xie, S.; Liu, T.; Li, H.; Xin, Z. A study on predictive energy management strategy for a plug-in hybrid electric bus based on Markov Chain. Qiche Gongcheng/Automot. Eng. 2018, 40, 871–877+911. [Google Scholar] [CrossRef]
- Sakhdari, B.; Vajedi, M.; Azad, N.L. Ecological adaptive cruise control of a plug-in hybrid electric vehicle for urban driving. In Proceedings of the IEEE International Conference on Intelligent Transportation Systems, Rio de Janeiro, Brazil, 1–4 November 2016; IEEE: Piscataway, NJ, USA, 2016. [Google Scholar] [CrossRef]
- Xu, Z.; Sun, K.; Gao, Y.; Hu, J.; Gao, B.; Hong, J. PCC energy-saving optimization based on historical driving data identification of energy consumption model. In Proceedings of the 2023 7th CAA International Conference on Vehicular Control and Intelligence (CVCI), Changsha, China, 27–29 October 2023. [Google Scholar] [CrossRef]
- Kim, J.H.; Yoon, S.W. Dual Deep Neural Network Based Adaptive Filter for Estimating Absolute Longitudinal Speed of Vehicles. IEEE Access 2020, 8, 214616–214624. [Google Scholar] [CrossRef]
Strategy | Cfuel_ele | ∆Cfuel_ele | Tpass | ∆Tpass | Qloss | ∆Qloss | Icom_ovp |
---|---|---|---|---|---|---|---|
CD-CS | 0.76 | − | 35.5 | − | 11.6% | − | 0.76 |
CD-Blend | 0.75 | −1.32% | 34.6 | −2.5% | 10.2% | −13.79% | 0.88 |
DP | 0.70 | −7.89% | 11.6 | −67.3% | 9.5% | −18.1% | 0.94 |
EMSMPC-P | 0.71 | −6.58% | 12.3 | −65.4% | 9.6% | −17.2% | 0.93 |
Components | Parameters | Value | Components | Parameters | Value |
---|---|---|---|---|---|
Engine | Maximum power (kW) | 65 | Battery | Continuous discharge capacity (C) | 2 |
Minimum speed (r/min) | 950 | Nominal voltage (V) | 320 | ||
Maximum speed (r/min) | 6500 | Capacity (A·h) | 25 | ||
Generator | Maximum power (kW) | 60 | Motor | Peak power (kW) | 75 |
Maximum speed (r/min) | 9000 | Maximum speed (r/min) | 9000 |
Strategy | SoC0 = 0.4 | ||||||
---|---|---|---|---|---|---|---|
Cfuel_ele | ∆Cfuel_ele | Tpass | ∆Tpass | Qloss | ∆Qloss | Icom_ovp | |
CD-CS | 0.78 | − | 36.5 | − | 13.6% | − | 0.72 |
CD-Blend | 0.76 | −2.56% | 35.2 | −3.5% | 12.2% | −10.29% | 0.83 |
DP | 0.72 | −7.69% | 13.1 | −64.1% | 10.9% | −19.85% | 0.91 |
EMSMPC-P | 0.72 | −7.69% | 13.8 | −62.2% | 11.4% | −16.18% | 0.90 |
Strategy | SoC0 = 0.8 | ||||||
Cfuel_ele | ∆Cfuel_ele | Tpass | ∆Tpass | Qloss | ∆Qloss | Icom_ovp | |
CD-CS | 0.75 | − | 36.4 | − | 12.1% | − | 0.78 |
CD-Blend | 0.74 | −1.33% | 34.7 | −4.6% | 11.8% | −2.48% | 0.85 |
DP | 0.71 | −5.33% | 12.6 | −65.4% | 9.8% | −19.01% | 0.94 |
EMSMPC-P | 0.71 | −5.33% | 13.1 | −64.0% | 10.2% | −15.70% | 0.93 |
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. |
© 2025 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
Lai, X.; Liu, H.; Lei, Y.; Sun, W.; Wang, S.; Xiang, J.; Wang, Z. Research on Intelligent Hierarchical Energy Management for Connected Automated Range-Extended Electric Vehicles Based on Speed Prediction. Energies 2025, 18, 3053. https://doi.org/10.3390/en18123053
Lai X, Liu H, Lei Y, Sun W, Wang S, Xiang J, Wang Z. Research on Intelligent Hierarchical Energy Management for Connected Automated Range-Extended Electric Vehicles Based on Speed Prediction. Energies. 2025; 18(12):3053. https://doi.org/10.3390/en18123053
Chicago/Turabian StyleLai, Xixu, Hanwu Liu, Yulong Lei, Wencai Sun, Song Wang, Jinmiao Xiang, and Ziyu Wang. 2025. "Research on Intelligent Hierarchical Energy Management for Connected Automated Range-Extended Electric Vehicles Based on Speed Prediction" Energies 18, no. 12: 3053. https://doi.org/10.3390/en18123053
APA StyleLai, X., Liu, H., Lei, Y., Sun, W., Wang, S., Xiang, J., & Wang, Z. (2025). Research on Intelligent Hierarchical Energy Management for Connected Automated Range-Extended Electric Vehicles Based on Speed Prediction. Energies, 18(12), 3053. https://doi.org/10.3390/en18123053