Skip to Content
ProcessesProcesses
  • Article
  • Open Access

3 April 2026

Research on the Collaborative Optimization Method of Power Prediction and DRL Control

,
and
Naval University of Engineering, Wuhan 430033, China
*
Author to whom correspondence should be addressed.

Abstract

This paper proposes a collaborative energy management strategy based on power prediction and deep reinforcement learning (DRL) to address the trade-offs among economic efficiency, durability, and dynamic performance in fuel cell hybrid power systems (FCHPS) under dynamic driving conditions. First, a hybrid prediction model termed LSTM-LSSVM with Cascade Correction (LSTM-LSSVM-CC) is developed. The cascade correction (CC) mechanism adopts a hierarchical structure to capture both low-frequency steady-state trends and high-frequency dynamic fluctuations, which are typically challenging for single models to represent. By integrating an online residual correction mechanism, this model generates accurate future power demand sequences. Second, a Dynamic Spatio-Temporal Fusion (DSTF) method is introduced to construct a high-dimensional DRL state space. This approach integrates predicted data, historical residuals, and real-time system states, enabling the agent to perform anticipatory decision-making. Third, a Dynamic Hierarchical Adaptive Multi-Objective Optimization Framework (DHAMOF) is designed. This framework dynamically adjusts objective weights and constraint boundaries based on real-time operating characteristics, enabling adaptive switching of optimization priorities across diverse scenarios. Furthermore, a closed-loop control architecture comprising “prediction–decision–execution–feedback” is established. By incorporating rolling horizon optimization and a proportional-integral (PI) residual compensation mechanism, the proposed architecture effectively suppresses prediction error accumulation and mitigates communication delays. Simulation results under combined CLTC-P and WLTP driving cycles demonstrate that, compared to conventional fixed-weight strategies, the proposed method achieves an 11.3% reduction in hydrogen consumption, a 30.9% decrease in S O C fluctuation range, and a 55.3% reduction in power tracking error. Moreover, under disturbance scenarios involving prediction errors, sensor noise, and a 200 ms communication delay, the system exhibits superior robustness: the increase in hydrogen consumption is limited to within 8.3 g/100 km, and the power tracking error is reduced by 65.6% relative to uncorrected baselines. This collaborative optimization approach overcomes the limitations of traditional open-loop prediction and fixed-weight control, offering a novel technical pathway for the high-efficiency and stable operation of fuel cell hybrid power systems.

1. Introduction

With the intensifying global energy crisis and environmental pollution issues, new energy vehicles (NEVs) have become the core direction of green transformation in the transportation sector [1]. Among them, fuel cell hybrid power systems (FCHPS), featuring zero emissions, long driving range, and fast hydrogen refueling, are regarded as one of the most promising development pathways for future NEVs [2]. By integrating fuel cells and energy storage devices, such systems can effectively compensate for the shortcomings of single power sources in terms of dynamic response, energy efficiency, and endurance [3,4,5]. However, under complex and dynamic driving conditions—such as urban congestion, highway cruising, and rapid acceleration—the system faces an inherent multi-objective conflict among economic efficiency, durability, and dynamic performance. Pursuing minimum hydrogen consumption for economic optimization may cause the fuel cell to operate long-term in inefficient regions, accelerating membrane electrode assembly (MEA) degradation. Enhancing dynamic response performance requires frequent power redistribution, which may lead to significant State-of-Charge ( S O C ) fluctuations. Conversely, overemphasizing durability protection may compromise power responsiveness and energy utilization efficiency [6]. Traditional energy management strategies—such as rule-based control and dynamic programming (DP)—struggle to achieve dynamic balance among multiple objectives under complex and time-varying conditions. Rule-based control depends heavily on expert experience and lacks adaptability, while DP can obtain globally optimal solutions but suffers from the curse of dimensionality, making it unsuitable for real-time control [7].
Deep Reinforcement Learning (DRL), as an intelligent control method with autonomous decision-making and online learning capabilities, provides a new solution for complex, nonlinear, and strongly coupled system control through continuous interactions between the agent and the environment. In recent years, DRL has been widely applied to the energy management of fuel cell hybrid systems, showing promising adaptability and optimization potential. However, its performance strongly depends on the completeness of the state-space information. Conventional DRL strategies make decisions based solely on the current vehicle states, lacking predictive insight into future driving conditions. As a result, the system exhibits delayed responses to sudden power demand changes, making it difficult to balance dynamic performance and energy efficiency [8,9,10,11,12].
To address this issue, researchers have introduced power prediction techniques to provide foresight for DRL-based decision-making by predicting short-term future power demand. However, most existing prediction models rely on single algorithms such as LSTM or SVM, which exhibit large cumulative errors in long-horizon predictions and poor adaptability to abrupt condition changes [13,14,15,16,17,18]. Moreover, prediction and control are typically coupled in an open-loop structure, allowing prediction errors to propagate directly into the control loop, thereby degrading strategy performance. In addition, the objective weight coefficients in multi-objective optimization are often fixed, limiting the system’s ability to adaptively adjust optimization priorities according to changing driving conditions [19].
To overcome these limitations, this paper proposes a collaborative optimization energy management method that integrates power prediction and deep reinforcement learning (DRL) [20]. The proposed framework adopts an LSTM-LSSVM-CC hybrid prediction model as its core, enhanced by an online residual correction mechanism to improve power demand prediction accuracy. A Dynamic Spatio-Temporal Fusion (DSTF) method is employed to integrate predicted sequences, historical residuals, and real-time operating states into a high-dimensional DRL state space, enabling the agent to make predictive and adaptive control decisions. Furthermore, a Dynamic Hierarchical Adaptive Multi-Objective Optimization Framework (DHAMOF) is developed to dynamically adjust objective weights and constraint conditions based on driving characteristics. Finally, a closed-loop “Prediction–Decision–Execution–Feedback” control architecture is constructed, incorporating rolling optimization and residual compensation mechanisms to suppress the effects of prediction error accumulation and communication delay. Simulation results under CLTC-P and WLTP hybrid driving conditions, as well as multiple disturbance scenarios, verify the effectiveness of the proposed method in improving system economy, durability, and dynamic performance, providing both theoretical support and engineering solutions for the efficient and stable operation of fuel cell hybrid power systems [21].

2. Collaborative Optimization Framework Design

This section proposes a collaborative optimization framework based on power prediction information and Deep Reinforcement Learning (DRL). The framework aims to achieve simultaneous optimization of global energy efficiency and dynamic stability for the fuel cell hybrid power system (FCHPS) through a coupling mechanism that integrates dynamic condition prediction with real-time energy allocation [22].
The framework utilizes the LSTM-LSSVM-CC vehicle condition prediction model (as described in the previous section) as the feedforward input, and the DRL-based energy management strategy as the core controller, forming a closed-loop optimization chain consisting of prediction–decision–execution–feedback [23,24]. The core concept lies in expanding the state space of the DRL agent with predictive information, allowing the control strategy to make forward-looking decisions.
Additionally, a multi-objective optimization strategy is employed to balance energy efficiency, S O C stability, and dynamic response requirements, thereby realizing synergistic enhancement between prediction accuracy and control performance. The overall structure of the collaborative optimization framework is illustrated in Figure 1.
Figure 1. Collaborative optimization framework for prediction and control.
The prediction module (LSTM-LSSVM-CC model) processes historical vehicle speed, acceleration, and battery S O C data to generate power demand forecasts for future time windows (e.g., 1–5 s) { P req , pred t   +   1 ,   ,   P req , pred t   +   k } .
The state space integration combines the current state ( S O C , P req ) with the predicted state ( P req , pred ) to form a multidimensional state vector. This process incorporates fuel consumption, S O C deviation, prediction error penalties, and dynamic response performance (e.g., fuel cell power fluctuations). The system outputs real-time power allocation commands for the fuel cell and energy storage system. The collaborative optimization mechanism employs a sliding window algorithm to dynamically adjust the confidence weights of the DRL strategy while correcting prediction errors in real time. It also adaptively prioritizes optimization objectives based on operating conditions (e.g., CLTC-P congestion scenarios, WLTP highway scenarios). Finally, the actual operational data ( S O C , fuel consumption) is fed back to the prediction module for online updates.
The prediction module employs the LSTM-LSSVM-CC model with an online residual correction mechanism. It continuously monitors the actual power demand P req , real and computes the residual sequence Δ P req = P req , real P req , pred . This residual sequence serves as an additional input to drive the LSTM network to dynamically update its weight parameters, thereby reducing the cumulative error in long-term predictions.
The DRL control module employs multidimensional state fusion to integrate predictive data into the DRL state space, effectively addressing the lag in response to abrupt variables characteristic of traditional strategies. Furthermore, it dynamically adjusts the credibility of predicted values based on residual standard deviation, thereby mitigating the interference of abnormal predictions on control operations.
The framework addresses the conflicting objectives of ‘economy, durability, and dynamics’ in fuel cell systems by designing the following collaborative rules, as detailed in Table 1.
Table 1. Collaborative optimization rules.
This method overcomes the limitations of traditional open-loop prediction or independent control by implementing joint iterative optimization of predictive models and control strategies through dynamic error feedback. It integrates predictive sequences, historical residuals, and real-time states into a high-dimensional state vector, thereby enhancing the deep reinforcement learning (DRL) strategy’s ability to perceive complex operating conditions. By dynamically adjusting optimization objectives’ priorities based on operational characteristics, it avoids performance trade-offs under fixed weighting schemes.

3. Design of DRL Control Strategy Based on Prediction

3.1. Integration of Predicted Data and DRL State Space

To fully exploit the predictive capability of the LSTM-LSSVM-CC model, this section proposes a Dynamic Spatiotemporal Fusion (DSTF) method, which organically integrates the predicted future power demand sequence with the real-time vehicle states into the state space of the DRL algorithm, thereby enabling the agent to make anticipatory and informed control decisions.
The implementation logic and technical details of this fusion process are divided into three main steps.
  • State Space Expansion Design
Traditional DRL state spaces rely solely on the current vehicle states (such as S O C and power demand). In contrast, the proposed method introduces predicted power demand sequences and historical residual information to construct a multi-dimensional composite state vector, defined as:
s ( t ) = SOC ( t ) , P req ( t ) Current   state P req , pred ( t + 1 ) , , P req , pred ( t + k ) Prediction   sequence Δ P req ( t 1 ) , , Δ P req ( t m ) Historical   residuals
In this framework, the prediction sequence represents the output of LSTM-LSSVM-CC for the next k steps (e.g., k = 5), capturing short-term power demand trends. The historical residual refers to the error between the actual and predicted power over the past m steps ( Δ P req   =   P req , real     P req , pred ), reflecting the model’s recent reliability.
Experimental results demonstrate that the DRL strategy achieves optimal balance between energy efficiency and stability when k = 5 (5 s prediction window) and m = 3 (3-step residual backtracking) (Figure 2).
Figure 2. Influence of prediction parameters on system performance.
As illustrated in Figure 2, when k = 5, the system achieves optimal equilibrium between hydrogen consumption efficiency (lowest on the left axis) and S O C stability (lowest on the right axis). Increasing the m value enhances stability (the triangular marker shifts closer to the bottom of the right axis), but results in a slight increase in hydrogen consumption. When k = 7, performance degrades, indicating that an excessively long prediction window causes model overfitting.
2.
Dynamic Confidence Weight Allocation
The reliability of the predicted data varies dynamically with driving conditions; therefore, confidence weights are introduced to adaptively adjust their influence on the state space.
The confidence coefficient is calculated as follows:
w t   =   1 1   +   1 m i = 1 m Δ P req 2 t     i
When the confidence weight w ∈ [0, 1] is set, the larger the residual fluctuation (indicating unreliable predictions), the smaller w becomes. Then, the state vector is corrected by introducing a weight attenuation factor into the prediction sequence to suppress interference from low-confidence predictions.
P req , pred , adj t   + i = w t   P req , pred t   + i + 1     w t   P req t ( i = 1 ,   ,   k )
As shown in the formula, P req , pred , adj t   +   i denotes the equivalent predicted power value after safety boundary correction. when the prediction error is significant (e.g., w   < 0.3), the predicted value becomes an inertial extension of the current value, preventing erroneous predictions from misleading the DRL strategy.
3.
Data Standardization and Feature Engineering
To eliminate dimensionality differences and enhance DRL training efficiency, the state vector undergoes hierarchical normalization. The current state battery S O C is linearly mapped to [0, 1], with the target range (40–80%) corresponding to [0.4, 0.8]. P req is standardized using Z-score, based on the historical data mean μ P and standard deviation σ P .
The predicted value is independently normalized at each step, with the dynamic benchmark being the current power demand, as shown in the formula.
P ^ req , pred t   + i = P req , pred t   + i     P req t max P req t , P nom
where P nom denotes the system’s rated power to prevent the denominator from becoming too small. The historical residuals are standardized using a sliding window, with the window length matching the residual backtracking step size m.
Δ P ^ req t     i = Δ P req t     i     μ Δ P σ Δ P
Taking the CLTC-P operating condition as an example, the DRL strategy performance before and after state space expansion is compared, as detailed in Table 2.
Table 2. Performance improvement with DSTF state fusion.
The state-space fusion reduces hydrogen consumption by 8.1%, minimizes S O C fluctuations by 25.3%, and enhances dynamic response speed by 56.3%. This section demonstrates the effectiveness and engineering feasibility of predictive data and DRL state-space fusion through theoretical analysis and simulation validation, laying the foundation for subsequent multi-objective optimization design.

3.2. Multi-Objective Optimization Design

In the field of multi-objective optimization, the goals of economic efficiency, durability, and dynamic performance often exhibit significant conflicts and nonlinear coupling characteristics. To achieve optimal energy management for fuel cell hybrid power systems (FCHPS), this paper proposes a Dynamic Hierarchical Adaptive Multi-Objective Framework (DHAMOF). By integrating prediction information with Deep Reinforcement Learning (DRL) through a collaborative mechanism, this framework constructs hierarchically weighted reward functions and dynamic constraint conditions, enabling the energy management strategy to adaptively balance multi-objective priorities under varying operating conditions.
The core concept of DHAMOF lies in leveraging the predictive guidance provided by future data to achieve dynamic decoupling and rebalancing of optimization objectives, thereby overcoming the limitations of conventional fixed-weight strategies.
In multi-objective optimization problems, Pareto Optimality serves as the fundamental criterion for evaluating solution quality. However, the real-time control requirements of fuel cell hybrid systems demand that the control policy rapidly converge to a feasible near-optimal solution, rather than exhaustively exploring the entire Pareto frontier. To this end, the DHAMOF framework adopts a strategy that combines the weighted-sum method with prediction-driven dynamic constraints, transforming the multi-objective optimization problem into a dynamic single-objective optimization formulation. The mathematical representation is expressed as:
max R t   = i = 1 n α i P pred , S real   r i S real , a s . t .   g j P pred , S real     0 ,     j   =   1 ,   2 ,   ,   m
In the formula: α i is the dynamic weight coefficient, which depends on the predicted power sequence P pred   =   P req , pred t   +   1 ,   ,   P req , pred t   +   k and the real-time state S real = SOC t , P req t , with r i being the reward function for each sub-objective and g j representing the constraint based on predicted data.
The advantage of this modeling method is that it not only retains the computational efficiency of the weighted sum method, but also enhances the time-varying nature of the constraints through predictive information, thus better meeting the requirements of actual working conditions.
Based on the core optimization objectives of the fuel cell hybrid system, the following sub-reward functions and their dynamic coupling mechanisms are defined.
(1)
Hydrogen minimization
r eco t = λ 1   m H 2 ˙ t m max ˙     λ 2   P FC t P FC , opt P nom
In the formula, m H 2 ˙ t denotes the instantaneous hydrogen consumption rate of the fuel cell, while m max ˙ represents the maximum allowable hydrogen consumption. P FC , opt indicates the optimal power point (approximately 70% of rated power) for fuel cell efficiency, driving its operation within the high-efficiency range. When the predicted power demand remains stable ( σ P pred   <   0.5   kW ), increasing the weight of λ 1 enhances economic performance.
(2)
Power tracking accuracy
r dyn t = γ   P req t     P FC t + P Batt t + P SC t P nom
The formula directly penalizes deviations between actual output and required power to ensure real-time power response. In rapid acceleration scenarios ( Δ P pred / Δ t   >   2     kW / s ), the system prioritizes supercapacitor activation to meet high-frequency demands by adjusting the γ parameter.
(3)
Durability Objective: Battery Life Protection
r life t = η 1   e SOC t 0.6     η 2   I Batt t I max
The exponential term in the formula forces the battery State of Charge ( S O C ) to remain near the midpoint (60%), thereby slowing down battery aging. The linear term suppresses high-current charging and discharging (with I max as the maximum allowable current). When the S O C consistently deviates from the safe range (e.g., >80% or <40% for more than 5 min), it triggers the time-varying increment of η 1 , η 2 .
To address the time-varying nature of operating conditions, the DHAMOF framework dynamically adjusts the weight coefficients α i of each sub-objective based on predicted data, as detailed in Table 3.
Table 3. Dynamic weight adjustment strategies.
In Table 3, the economic weight is adjusted adaptively according to the forecast volatility as shown in the formula:
α eco t   =   α eco base   1   +   1 1 + σ P pred
Here, α eco base denotes the base value of the economic weight, while σ P pred represents the standard deviation of the predicted power sequence { P req , pred t   +   1 ,   ,   P req , pred t   +   k } , which characterizes the volatility of future power demand.
The dynamic weight surges during power fluctuations, with the specific variation as shown in the formula:
α dyn t   =   α dyn base   1   +   tan h Δ P pred Δ t
where α dyn base denotes the base value of the dynamic weight. Δ P pred / Δ t : The power variation rate between adjacent prediction steps ( Δ P   =   P req , pred t   +   1     P req , pred t ), indicating the magnitude of power demand fluctuations. The tan h function, a hyperbolic tangent function with an output range of (−1, 1), is employed to mitigate the impact of abrupt changes.
The dynamic adjustment rule for the durability weight α life is based on the following key parameters:
(a)
Battery S O C deviation: | SOC t − 0.6| (absolute value of deviation from the 60% midpoint of S O C );
(b)
Charge and discharge current: | I Batt t | (absolute value of the battery’s instantaneous current)
(c)
Trigger time threshold: cumulative time t offset during which the battery S O C remains outside the safe range (e.g., S O C < 40% for 300 s)
Its dynamic adjustment formula:
α life t   =   α life base   1   +   κ 1   SOC t     0.6   +   κ 2   I Batt t I max   1   +   t offset T th
where α life base represents the durability base value weight, κ1 and κ2 are the gain coefficients for S O C deviation and current penalty, and T th denotes the time threshold for triggering compensation (e.g., T th = 300 s).
(d)
Prediction-driven constraint design
To enhance the strategy’s foresight, dynamic constraints are imposed based on predicted power demand sequences: the fuel cell power limit, with specific settings as shown in the formula:
P FC , min   =   min i = 1 , , k P req , pred t   +   i   0.4 P FC , max   =   max i = 1 , , k P req , pred t   +   i   1.2
Ensure the fuel cell output covers future demand with a 20% margin. The charge–discharge current constraints are given by the following formula.
I Batt t min I max , i = 1 k P req , pred t + i V Batt ,   I max
The current limit is relaxed dynamically according to the forecast of future demand to avoid short-time overload.
Table 4 compares the performance of the DHAMOF framework with fixed-weight strategies under the CLTC-P and WLTP hybrid driving cycle.
Table 4. DHAMOF vs. fixed-weight strategy performance.
The dynamic weight adjustment and predictive constraints significantly improve the overall performance of the strategy, especially under high dynamic conditions, where the fuel cell efficiency and battery life protection are optimized simultaneously.
From a control theory perspective, the DHAMOF framework fundamentally constructs an approximate analytical solution space for time-varying multi-objective optimization problems. By incorporating predictive data, the system captures implicit characteristics of future operating conditions within extended state space dimensions, transforming traditional static optimization into a dynamic game process. This mechanism mirrors human drivers’ decision-making: experienced drivers not only respond to current road conditions but also preemptively adjust throttle and braking strategies by anticipating road surface undulations and traffic signal changes, achieving optimal balance between fuel efficiency and driving comfort. Within this framework, the predictive model serves as the agent’s “pre-sensor,” while DRL simulates the brain’s “decision center.” Through adaptive weight adjustment mechanism, both components work in close coordination to achieve global optimization. Notably, although the DHAMOF framework demonstrates significant simulation advantages, its engineering implementation still faces real-time challenges in onboard computing units. Future research could explore edge-cloud collaborative architectures, transferring high-load predictive model computations to the cloud while retaining DRL’s real-time decision-making capabilities in onboard terminals, thereby achieving optimal performance trade-offs under limited resources.

3.3. Real-Time Control and Dynamic Adjustment

To achieve real-time energy management in fuel cell hybrid systems, this paper proposes a predictive-driven dynamic closed-loop control architecture. By deeply integrating DRL strategies with online prediction model updates, it establishes a “perception-decision-correction” real-time control loop. The architecture ensures system stability and efficiency under complex operating conditions through dynamic priority adjustment, rolling optimization, and residual compensation. The following sections elaborate on three key aspects: control flow, dynamic parameter correction, and real-time performance assurance.
Real-time control consists of two core modules (Figure 3): feedforward prediction compensation and feedback dynamic correction, forming a closed-loop optimization system. The feedforward module predicts future power demand using LSTM-LSSVM-CC to generate initial power allocation commands. The feedback module continuously adjusts prediction errors by incorporating real-time operational data (e.g., S O C , fuel efficiency) and modifies DRL policy actions accordingly. The high-speed control loop (50 ms cycle) executes DRL actions and power allocation, while the low-speed update loop (1 s cycle) performs real-time updates to prediction model weights and DRL policy parameters.
Figure 3. Real-time control loop architecture.
To mitigate the cumulative effect of prediction errors on DRL strategies, a window-rolling optimization method is proposed. The initial action a(t) is generated from the current prediction sequence { P req , pred ( t   +   1 ) , …, P req , pred t   +   k }, and the local optimization problem is recalculated at each Δ t time step (t = 0.5) using the latest prediction data. The detailed process is illustrated in the formula.
a new = arg max a R t + γ i = 1 k R t + i
Then perform incremental correction on the initial motion:
a t     a t   +   λ   a new     a t
λ is the smoothing factor, which inhibits the frequent action jump.
To compensate for the prediction residual Δ P req   =   P req , real     P req , pred , the compensation signal P comp t   =   K p   Δ P req t   +   K i   j = 1 m Δ P req t     j is constructed. Here, the proportional gain K p targets the fast-response instantaneous residual, while the integral gain K i eliminates the steady-state residual. This compensation signal is directly superimposed onto the DRL output action to form the final power command:
P FC ,   final t   =   P FC ,   DRL t   +   P comp t
The DRL strategy handles global optimization, while the compensation module focuses on local error correction to prevent frequent policy adjustments due to prediction errors, thereby enhancing system stability. To avoid compensation overshoot and adapt to varying operating conditions, a dynamic gain mechanism is introduced, as shown in the following equation:
K p t   =   K p base   1     e σ P pred / 2 K i t   =   K i base   1 1   +   Δ P req
In such cases, when predicting high volatility ( σ P pred ), reduce K p to suppress high-frequency noise interference; when the residual accumulation is large ( Δ P req ), reduce K i to avoid integration saturation.

4. Algorithm Convergence and Robustness Analysis

4.1. Convergence Analysis

This paper conducts a comprehensive evaluation of the convergence characteristics of the proposed strategy through multidimensional experiments, assessing training stability, multi-scenario adaptability, and robustness boundaries. The analysis reveals the convergence behavior and optimization potential of the Prediction-Embedded DRL (PE-DRL) algorithm within complex dynamic systems.
Under CLTC-P and WLTP hybrid driving conditions, key performance indicators of the PE-DRL algorithm were recorded over 2000 training steps, as illustrated in Figure 4.
Figure 4. Convergence metrics during training.
(a)
Critic network loss function (mean squared TD error):
L critic = 1 N i = 1 N y i     Q s i , a i θ Q 2
(b)
The dynamic decay of policy entropy is given by the following formula
H π =   a π a s log π a s
Convergence progress of PE-DRL versus traditional DDPG under a fixed 2000-step training budget (Table 5):
Table 5. PE-DRL and Traditional DDPG.
With the same training steps, PE-DRL demonstrates significantly better convergence depth and policy stability than traditional methods, validating its rapid convergence advantage.
Simulation results demonstrate that PE-DRL achieves rapid and stable convergence within a 2000-step training budget through its predictive embedding and dynamic reward coordination mechanism. The system’s core advantages include reducing invalid action sampling rates to accelerate policy gradient optimization, while its residual compensation and noise suppression modules enhance tolerance to disturbances and prediction errors. The lightweight network architecture combined with priority-based experience replay maximizes learning efficiency within the limited step budget.

4.2. Robustness Analysis

To validate the reliability of the predictive embedding PE-DRL algorithm in complex uncertain environments, this section conducts a robustness evaluation centered on multidimensional disturbance experiments. The assessment covers three dimensions: prediction error tolerance, sensor noise suppression, and communication latency. By comparing it with the DDPG strategy, the study reveals the algorithm’s stability boundaries and failure modes in practical engineering scenarios.
There are three core evaluation indicators in the robustness evaluation index:
(a)
Power tracking error ( e P   =   P req     P out ): A metric that reflects the system’s responsiveness to sudden dynamic load changes.
(b)
The S O C fluctuation range ( Δ SOC = SOC max     SOC min ) indicates the charge–discharge stability of the energy storage system.
(c)
The increment of hydrogen consumption quantifies the impact of disturbance on economy.
The experimental disturbance scenario design is shown in Table 6.
Table 6. Robustness test scenarios.
Performance analysis under multi-perturbation scenarios:
(a)
Failure scenario of forecasting model
The disturbance intensity was set to Gaussian noise with a standard deviation of σ   =   0.3 P nom ( P nom   =   1   kW ) for the predicted power addition; specific performance metrics are shown in Table 7.
Table 7. Performance under prediction model failure.
The PE-DRL model dynamically corrects prediction deviations through its residual compensation module ( P comp ), effectively mitigating the direct interference of outliers on DRL strategies.
  • (b) Sensor noise scene
The S O C measurement value is added with ±5% random noise, and the power sensor noise bandwidth is 2 kHz. Specific performance comparison metrics are shown in Table 8.
Table 8. Performance under sensor noise.
It is observed that PE-DRL incorporates a sliding average filter layer into the Critic network to mitigate the impact of high-frequency noise on Q-value estimation.
  • (c) Communication delay scenario
To simulate real-world vehicular network communication delays, a 200 ms fixed delay is injected into the DRL control loop for critical state signals ( SOC ,   P req ). A delay queue is inserted in the state observation channel to ensure that the current values of SOC and P req are historical state data ( SOC ( t )   =   SOC ( t     200   ms ) ,   Preq ( t )   =   Preq ( t     200   ms ) ). The test scenarios include frequent start–stop operations under CLTC-P conditions and power spikes under WLTP high-speed conditions, to validate the impact of delays on control strategies.
The robustness of the collaborative optimization framework is evaluated by comparing key metrics of PE-DRL with traditional DDPG algorithms in latency scenarios (results shown in Table 9).
Table 9. Performance under communication delay.
Table 9 demonstrates that in scenarios with 200 ms vehicle network communication latency, the PE-DRL algorithm outperforms traditional DDPG in terms of robustness and control performance. Specifically, PE-DRL achieves a power tracking error of only 1.1 kW (65.6% lower than DDPG), reduces the S O C fluctuation range to 31.3% (3.4% reduction), and minimizes the hydrogen consumption increment to +22.5 g/100 km (42% lower than DDPG). These results indicate that PE-DRL effectively mitigates control lag caused by latency through its collaborative optimization framework’s delay compensation mechanisms (e.g., historical state prediction and multi-objective dynamic balancing). Under hybrid operating conditions, it combines power response accuracy, energy management stability, and economic advantages, providing enhanced adaptability for energy management strategy deployment in real-world vehicle communication latency environments.

5. Conclusions

This study proposes a novel collaborative optimization framework for fuel cell hybrid electric vehicles, providing a new perspective by restructuring the interaction between prediction and decision-making. Distinct from traditional open-loop or simple serial approaches, our primary innovation lies in a “Prediction–Decision–Execution–Feedback” closed-loop architecture is developed. This framework integrates a Cascade-Corrected Hybrid Power Prediction Model (LSTM-LSSVM-CC) with an online residual correction mechanism to suppress long-horizon error accumulation at the source. We further introduce a Dynamic Spatio-Temporal Fusion state space that incorporates future power sequences with dynamic confidence weighting, endowing the agent with genuine “forward-looking” decision-making capabilities. Complementing this is the Dynamic Hierarchical Adaptive Multi-Objective Optimization Framework, which enables millisecond-level adaptive prioritization of economy, durability, and responsiveness based on real-time operating conditions. Coupled with a dual compensation mechanism of Receding Horizon Optimization and PI residual correction, the proposed strategy demonstrates exceptional robustness against complex disturbances. Simulation results confirm that this approach not only achieves an 11.3% reduction in hydrogen consumption, a 30.9% decrease in S O C fluctuations, and a 55.3% improvement in power tracking accuracy, but also fundamentally resolves the control failure issues caused by prediction error propagation, offering a new theoretical paradigm and technical pathway for intelligent energy management in fuel cell systems.

Author Contributions

Conceptualization, M.L.; Methodology, M.L.; Software, M.L.; Validation, M.L.; Investigation, Y.L.; Resources, Y.L.; Data curation, Y.L. and X.H.; Writing—original draft, M.L.; Writing—review and editing, M.L.; Visualization, X.H.; Supervision, X.H. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Data Availability Statement

The original contributions presented in this study are included in the article. Further inquiries can be directed to the corresponding author.

Conflicts of Interest

The authors declare no conflict of interest.

Nomenclature

Symbols and Variables
aVehicle acceleration
P ^ req Predicted power demand sequence
e r e s Residual sequence
S t Multidimensional composite state vector for DRL
kPrediction horizon steps
mHistorical residual backtracking steps
w c Confidence weight coefficient for predicted data
σ r e s Standard deviation of the residual sequence
ω i Dynamic weight coefficient for sub-objective i
m H 2 ˙ Instantaneous hydrogen consumption rate
abbreviation
FCHPSFuel Cell Hybrid Power System
DRLDeep Reinforcement Learning
LSTM-LSSVM-CCLong Short-Term Memory—Least Squares Support Vector Machine with Cascade Correction
DSTFDynamic Spatio-Temporal Fusion
DHAMOFDynamic Hierarchical Adaptive Multi-Objective Optimization Framework
PE-DRLPrediction-Embedded Deep Reinforcement Learning

References

  1. Ma, J.; Liu, X.; Wu, Z.; Shen, R.; Liu, H.; Li, F. A Review of Degradation Prediction Methods for Proton Exchange Membrane Fuel Cells. In Proceedings of the 2025 International Conference on Electrical Automation and Artificial Intelligence (ICEAAI), Guangzhou, China, 10–12 January 2025. [Google Scholar] [CrossRef] [Scilit]
  2. Lu, X.; Qu, Y.; Wang, Y.; Qin, C.; Liu, G. A comprehensive review on hybrid power system for PEMFC-HEV: Issues and strategies. Energy Convers. Manag. 2018, 171, 1273–1291. [Google Scholar] [CrossRef] [Scilit]
  3. Tao, Z.; Zhang, C.; Xiong, J.; Hu, H.; Ji, J.; Peng, T.; Nazir, M.S. Evolutionary gate recurrent unit coupling convolutional neural network and improved manta ray foraging optimization algorithm for performance degradation prediction of PEMFC. Appl. Energy 2023, 336, 120821. [Google Scholar] [CrossRef] [Scilit]
  4. Ayub, N.; Aurangzeb, K.; Awais, M.; Ali, U. Electricity Theft Detection using CNN-GRU and Manta Ray Foraging Optimization Algorithm. In 2020 IEEE 23rd International Multitopic Conference (INMIC); IEEE: Piscataway, NJ, USA, 2020. [Google Scholar] [CrossRef] [Scilit]
  5. Yan, R.; Xu, L.; Zhao, X. Research on Energy Management Strategies for Fuel Cell Vehicles Based on Improved Rules. In 2024 IEEE 25th China Conference on System Simulation Technology and its Application (CCSSTA); IEEE: Piscataway, NJ, USA, 2024; pp. 521–524. [Google Scholar] [CrossRef] [Scilit]
  6. Hua, Z.; Zheng, Z.; Pahon, E.; Pera, M.C.; Gao, F. A review on lifetime prediction of proton exchange membrane fuel cells system. J. Power Sources 2022, 529, 231256. [Google Scholar] [CrossRef] [Scilit]
  7. Xie, S.; He, H.; Peng, J. An energy management strategy based on stochastic model predictive control for plug-in hybrid electric buses. Appl. Energy 2017, 196, 279–288. [Google Scholar] [CrossRef] [Scilit]
  8. Lu, L.; Zhao, H.; Liu, X.; Sun, C.; Zhang, X.; Yang, H. MPC-ECMS Energy Management of Extended-Range Vehicles Based on LSTM Multi-Signal Speed Prediction. Electronics 2023, 12, 2642. [Google Scholar] [CrossRef] [Scilit]
  9. Quan, S.; Wang, Y.X.; Xiao, X.; He, H.; Sun, F. Real-time energy management for fuel cell electric vehicle using speed prediction-based model predictive control considering performance degradation. Appl. Energy 2021, 304, 117845. [Google Scholar] [CrossRef] [Scilit]
  10. He, K.; Mao, L.; Yu, J.; Jackson, L. Long-Term Performance Prediction of PEMFC Based on LASSO-ESN. IEEE Trans. Instrum. Meas. 2021, 70, 1–11. [Google Scholar] [CrossRef] [Scilit]
  11. Wen, J.; Chen, T.; Lan, Y.; Dai, H.; Liang, X. Comparative Analysis of Four Models Based on Bidirectional Gated Recurrent Unit for Voltage Degradation and Fault Prediction in Pemfcs. arXiv 2024. [Google Scholar] [CrossRef] [Scilit]
  12. Liu, J.; Li, Q.; Chen, W.; Yan, Y.; Qiu, Y.; Gao, T. Remaining useful life prediction of PEMFC based on long short-term memory recurrent neural networks. Int. J. Hydrogen Energy 2019, 44, 5470–5480. [Google Scholar] [CrossRef] [Scilit]
  13. Liu, B.; Wei, X.; Sun, C.; Wang, B.; Huo, W. A controllable neural network-based method for optimal energy management of fuel cell hybrid electric vehicles. Int. J. Hydrogen Energy 2024, 55, 1371–1382. [Google Scholar] [CrossRef] [Scilit]
  14. Feng, J.; Han, Z.; Wu, Z.L.M. Approximate optimal energy management with a high-precision vehicle speed prediction algorithm. Proc. Inst. Mech. Eng. Part D J. Automob. Eng. 2024, 238, 774–787. [Google Scholar] [CrossRef] [Scilit]
  15. Zheng, C.; Ningyuan, G.; Jiangwei, S.; Renxin, X.; Peng, D. A Hierarchical Energy Management Strategy for Power-Split Plug-in Hybrid Electric Vehicles Considering Velocity Prediction. IEEE Access 2018, 6, 33261–33274. [Google Scholar] [CrossRef] [Scilit]
  16. Sun, C.; He, H.; Sun, F. The Role of Velocity Forecasting in Adaptive-ECMS for Hybrid Electric Vehicles. Energy Procedia 2015, 75, 1907–1912. [Google Scholar] [CrossRef] [Scilit]
  17. Lin, X.; Zhang, J.; Su, L. A trip distance adaptive real-time optimal energy management strategy for a plug-in hybrid vehicle integrated driving condition prediction. J. Energy Storage 2022, 52, 105055. [Google Scholar] [CrossRef] [Scilit]
  18. Chen, Z.; Hu, H.; Wu, Y.; Zhang, Y.; Li, G.; Liu, Y. Stochastic model predictive control for energy management of power-split plug-in hybrid electric vehicles based on reinforcement learning. Energy 2020, 211, 118931. [Google Scholar] [CrossRef] [Scilit]
  19. Lin, X.; Wu, J.; Wei, Y. An ensemble learning velocity prediction-based energy management strategy for a plug-in hybrid electric vehicle considering driving pattern adaptive reference SOC. Energy 2021, 234, 121308. [Google Scholar] [CrossRef] [Scilit]
  20. Xie, S.; Hu, X.; Xin, Z.; Li, L. Time-Efficient Stochastic Model Predictive Energy Management for a Plug-In Hybrid Electric Bus with Adaptive Reference State-of-Charge Advisory. IEEE Trans. Veh. Technol. 2018, 67, 5671–5682. [Google Scholar] [CrossRef] [Scilit]
  21. Du, J.; Zhang, X.; Wang, S.; Liu, X. A Health-Aware Fuzzy Logic Controller Optimized by NSGA-II for Real-Time Energy Management of Fuel Cell Electric Commercial Vehicles. Machines 2025, 13, 1048. [Google Scholar] [CrossRef] [Scilit]
  22. Bayram, F.; Aupke, P.; Ahmed, B.S.; Kassler, A.; Theocharis, A.; Forsman, J. DA-LSTM: A dynamic drift-adaptive learning framework for interval load forecasting with LSTM networks. Eng. Appl. Artif. Intell. 2023, 123, 17. [Google Scholar] [CrossRef] [Scilit]
  23. Karabanov, S.M.; Karabanov, A.S.; Suvorov, D.V.; Gololobov, G.P.; Slivkin, E.V. Study of the Efficiency of Hybrid Energy Storage Systems on the Basis of Electric Double Layer Capacitor and Accumulator. In Diagnostic Techniques for Semiconductor Materials Processing; Cambridge University Press: Cambridge, UK, 2015; Volume 1773. [Google Scholar] [CrossRef] [Scilit]
  24. Wang, Y.; Wang, L.; Li, M.; Chen, Z. A review of key issues for control and management in battery and ultra-capacitor hybrid energy storage systems. eTransportation 2020, 4, 100064. [Google Scholar] [CrossRef] [Scilit]
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.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.