Next Article in Journal
Effects of Hyperedge Overlap and Internal Structure on Hypernetwork Synchronization Dynamics
Previous Article in Journal
Evolving Public Attitudes Towards the HPV Vaccine in China: A Fine-Grained Emotion Analysis of Sina Weibo (2016 vs. 2024)
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Fault Recovery Strategy with Net Load Forecasting Using Bayesian Optimized LSTM for Distribution Networks

College of Artificial Intelligence and Automation, Hohai University, Nanjing 210024, China
*
Author to whom correspondence should be addressed.
Entropy 2025, 27(9), 888; https://doi.org/10.3390/e27090888
Submission received: 7 June 2025 / Revised: 27 July 2025 / Accepted: 6 August 2025 / Published: 22 August 2025
(This article belongs to the Section Multidisciplinary Applications)

Abstract

To address the impact of distributed energy resource volatility on distribution network fault restoration, this paper proposes a strategy that incorporates net load forecasting. A Bayesian-optimized long short-term memory neural network is used to accurately predict the net load within fault-affected areas, achieving an R2 of 0.9569 and an RMSE of 12.15 kW. Based on the forecasting results, a fast restoration optimization model is established, with objectives to maximize critical load recovery, minimize switching operations, and reduce network losses. The model is solved using a genetic algorithm enhanced with quantum particle swarm optimization (GA-QPSO), a hybrid metaheuristic known for its superior global exploration and local refinement capabilities. GA-QPSO has been successfully applied in various power system optimization problems, including service restoration, network reconfiguration, and distributed generation planning, owing to its effectiveness in navigating large, complex solution spaces. Simulation results on the IEEE 33-bus system show that the proposed method reduces network losses by 33.2%, extends the power supply duration from 60 to 120 min, and improves load recovery from 72.7% to 75.8%, demonstrating enhanced accuracy and efficiency of the restoration process.

1. Introduction

With the rapid development of renewable energy, the large-scale integration of DG presents new challenges to the stable operation of distribution networks, especially under the carbon strategy of carbon peaking and carbon neutrality. To enhance the grid’s self-healing capability following faults while ensuring supply–demand balance and maintaining power quality, it is essential to design efficient fault restoration strategies based on accurate net load forecasting [1]. In this context, fault restoration strategies that combine islanding operation with network reconfiguration have emerged as a prominent research focus, owing to their ability to flexibly reallocate power and rapidly restore critical loads [2].
Extensive research has been conducted worldwide on fault restoration in distribution networks with a high penetration of DG. Reference [3] proposes a fault restoration strategy tailored for DG-integrated systems and introduces two islanding operation criteria. Building on this, Ref. [4] quantifies the influence of weather conditions on component failure rates and suggests leveraging DG to enhance grid resilience. However, this method fails to precisely characterize the supply–demand balance between DG output and load demand, potentially resulting in DG instability and energy curtailment [5].
To address computational efficiency, Ref. [6] introduces an automatic fast search strategy, significantly improving solution performance. Nonetheless, it requires predefined fault scenarios and lacks dynamic adaptability. In response, Ref. [7] adopts cloud-edge collaborative technology in flexible interconnected distribution networks to enhance the real-time responsiveness of fault restoration algorithms. Ref. [8] proposes a new fast self-healing technology for distribution networks based on line topology and beat frequency attenuation, using strategies like network reconfiguration, IIDG control and redundant resource modeling, with advantages of fast response, high recovery rate and reduced loss. Similarly, Ref. [9] incorporates photovoltaic (PV) forecasting results into a dynamic tree knapsack model to construct an optimal fault restoration strategy. Commonly used fault restoration algorithms include classical methods [10,11] and nature-inspired heuristic optimization approaches. Classical algorithms often suffer from local optima and are increasingly inadequate for modern power systems. Nature-inspired heuristic optimization approaches, such as ant colony optimization [12,13], firefly algorithms [14,15], and particle swarm optimization (PSO) [16,17], have gained attention for their superior global search capabilities. Among these algorithms, genetic algorithms have been widely applied in fault restoration strategies due to their population-based exploration and flexible encoding schemes. However, GAs may still converge prematurely to suboptimal solutions. To address this issue, Ref. [18] proposes the integration of QPSO to perform secondary refinement of GA-generated solutions, thereby improving convergence accuracy and solution quality in complex restoration scenarios.
In the domain of load forecasting, AI-based models frequently employ techniques such as backpropagation neural networks (BPNNs) [19,20], convolutional neural networks (CNNs) [21,22], and recurrent neural networks (RNNs) [23]. Among them, long short-term memory (LSTM) networks have been extensively adopted for load and renewable energy forecasting, owing to their superior ability to capture temporal dependencies in time series data. Nevertheless, the performance of LSTM models is highly sensitive to hyperparameter configurations such as learning rate, batch size, and number of hidden units. This makes hyperparameter optimization a critical aspect of LSTM model design, warranting in-depth investigation to improve prediction accuracy.
In summary, current research on fault restoration in distribution networks has made notable progress. However, under the growing integration of distributed energy resources, existing approaches often fall short in accurately capturing net load characteristics and ensuring timely restoration. This may result in power imbalances and voltage violations during network reconfiguration.
To address the aforementioned challenges, this study proposes an efficient fault restoration strategy that integrates islanding and network reconfiguration, based on GA-QPSO, with full consideration of net load forecasting results. First, a short-term net load forecasting method is developed using an LSTM neural network, whose hyperparameters—such as learning rate, batch size, and number of hidden units—are optimized using Bayesian techniques to enhance predictive accuracy (LSTM–Bayesian). Based on the forecasting output, a mathematical model for fault restoration is formulated. Then, a hybrid GA-QPSO algorithm is employed to optimize the islanding configuration. Specifically, the GA is first used to perform global exploration and generate candidate solutions, which are subsequently refined by QPSO to perform local exploitation and identify high-quality optimal solutions, thereby improving convergence stability and precision. Finally, simulations are conducted on the IEEE 33-bus distribution system with integrated distributed generation to validate the accuracy and effectiveness of the proposed strategy.

2. Net Load Forecasting Based on Bayesian-Optimized LSTM

2.1. Long Short-Term Memory Network

The long short-term memory network is an improved variant of the recurrent neural network (RNN) [24]. By introducing a gating mechanism, LSTM enables the selective retention and forgetting of information within sequences, demonstrating significant advantages in time series forecasting, natural language processing, speech recognition, and related fields. In power system applications, LSTM is widely used for load forecasting as well as photovoltaic (PV) and wind power prediction due to its ability to capture temporal dependencies and periodic patterns. The structure of the LSTM network is illustrated in Figure 1.
The LSTM network consists of three types of gates: the input gate, output gate, and forget gate. The input gate determines when new information should be written into the memory cell, the output gate controls the information to be sent out from the cell, and the forget gate decides which historical information should be discarded. The mathematical expressions of these three gates are given in Equations (1)–(3), respectively:
f t = σ ( W f · [ h t 1 , x t ] + b f )
i t = σ ( W i · [ h t 1 , x t ] + b i )
o t = σ ( W o [ h t 1 , x t ] + b o )
where the components of the equations are as follows:
  • W f , W i , and W o are the weight matrices associated with the forget gate, input gate, and output gate, respectively;
  • b f , b i , and b o are the corresponding bias vectors;
  • x t denotes the input vector at time step t;
  • h t 1 is the output (hidden state) from the previous time step;
  • σ represents the sigmoid activation function;
  • f t , i t , and o t refer to the forget gate, input gate, and output gate activations at time t, respectively.
The candidate memory cell uses the hyperbolic tangent (tanh) function as its activation, and the retained information is computed as shown in Equation (4):
C t ¯ = tanh ( W c · [ h t 1 , x t ] + b C )
where W c denotes the weight matrix, b C is the bias vector, and C t ¯ represents the candidate memory cell state reflecting the retained information.
The update of the cell state is calculated as shown in Equation (5):
C t = f t C t 1 + i t C t ¯
where denotes the element-wise (Hadamard) multiplication, and C t represents the updated cell state.
The hidden state is calculated as in Equation (6):
h t = o t tanh ( C t )
When the output gate activation approaches 1, the LSTM network effectively transmits all retained information to the prediction module. Through gating mechanisms, LSTM selectively preserves important information over long time horizons while discarding irrelevant data, which is particularly crucial for tasks requiring long-term dependencies.

2.2. Bayesian Optimization Algorithm

The core strength of Bayesian optimization lies in its ability to address two major challenges in hyperparameter tuning for machine learning models: the uncertainty of the objective function and the high computational cost of evaluating it. By constructing a probabilistic surrogate model, Bayesian optimization updates the posterior distribution of the objective function based on a limited number of evaluations. This iterative process efficiently guides the search toward the optimal set of hyperparameters with significantly reduced computational overhead [25].
As an efficient global optimization strategy, the core architecture of the Bayesian optimization algorithm consists of two key components: the probabilistic surrogate model and the acquisition function, which work in tandem to guide the search. The execution process is as follows:
  • Initialization: Construct a prior distribution for the surrogate model, serving as the initial approximation of the objective function.
  • Sampling point selection: Determine the next sampling point x by maximizing the acquisition function a(x), which balances the trade-off between exploring uncertain regions and exploiting areas with known promising results.
  • Objective evaluation: Evaluate the objective function c(x) at the selected point x, and obtain the corresponding output value y.
  • Model update: Update the surrogate model using the newly observed data pair (x,y), resulting in a revised posterior distribution that reflects the most recent information.
  • Iterative optimization: Repeat steps 2–4 until a stopping criterion is met, such as reaching the maximum number of iterations or satisfying convergence conditions.
In practice, Gaussian Processes (GPs) are the most widely used probabilistic surrogate models in Bayesian optimization, owing to their flexible non-parametric nature and strong capability for uncertainty quantification. The acquisition function, on the other hand, guides the search process by determining where to sample next. Common acquisition functions include Probability of Improvement (PI) and Expected Improvement (EI). These functions are designed to balance two competing goals: (1) local exploitation, by refining the search near the current best-known solution to identify potentially better candidates; and (2) global exploration, by sampling in less-explored regions to avoid premature convergence and enhance the global search capability of the algorithm.

2.3. Bayesian Optimization of LSTM

The performance of LSTM is highly sensitive to the configuration of their hyperparameters. However, the nonlinear interactions and interdependencies among these parameters make the tuning process challenging. Prior studies have demonstrated that the optimal selection of key hyperparameters—such as the number of hidden neurons, learning rate, and batch size—can substantially enhance the predictive accuracy of LSTM models in time series forecasting tasks [26].
To enhance the accuracy of net load forecasting, this paper proposes the use of Bayesian optimization for tuning the hyperparameters of LSTM networks. In power system load forecasting and renewable generation prediction scenarios, Bayesian optimization efficiently identifies optimal hyperparameter combinations by constructing probabilistic surrogate models—such as Gaussian Processes—and updating the posterior distribution of the objective function using historical evaluation data. Through acquisition functions like Expected Improvement (EI), it achieves a balance between exploration and exploitation with minimal evaluations. This approach significantly improves LSTM’s ability to model load fluctuations and generation uncertainties, effectively reduces forecasting errors, provides a more reliable basis for fault recovery strategies, and contributes to the efficient and stable operation of power systems.
To address different levels of missing data in the samples, this paper adopts a tiered preprocessing strategy. For short gaps (fewer than 10 consecutive missing time steps), linear interpolation is employed for data imputation. For moderate gaps (between 10 and 100 missing steps), a moving average method is used. In cases of extensive missing data (exceeding 100 time steps), the affected samples are discarded entirely. Furthermore, if more than 20% of the values in a dataset are missing, the entire dataset is excluded from analysis.
To quantitatively evaluate the performance of the logging curve prediction, the Root Mean Square Error (RMSE) and the coefficient of determination (R2) are adopted as evaluation metrics. Their calculation formulas are given in Equations (7) and (8):
R M S E = 1 N i = 1 N ( y ^ i y i ) 2
R 2 = ( N x y x y ) [ ( N x 2 ( x ) 2 ) × ( N y 2 ( y ) 2 ) ]
where N is the total number of data points, y ^ i denotes the predicted value for the i data point, and y i represents the corresponding true value.
In this paper, measured wind power data from [27] are used to compare the prediction results for a typical day. The comparison is illustrated in Figure 2 and summarized in Table 1.
The results clearly demonstrate that the Bayesian optimization–LSTM model achieves superior peak prediction accuracy compared to other models and outperforms the CNN-LSTM model in valley prediction. In terms of overall performance, the Bayesian optimization–LSTM exhibits a significant improvement in prediction accuracy, as measured by RMSE, and achieves higher feature correlation, as reflected by the R2 value, compared to other commonly used models.
The optimization model is ultimately applied to forecasting by integrating meteorological and power generation datasets. Specifically, meteorological data from days with similar weather conditions are selected, with the power generation data from the day prior to each meteorologically similar day used as the input and the generation data on the similar day itself used as the output. This approach enables the training of a DG output forecasting model, which can be similarly applied to load prediction.
After obtaining the forecasts for power output and load, the net load is calculated using Equation (9):
P n e t = P l o a d P D G
where P n e t denotes the net load power, P l o a d denotes the total load demand, and P D G denotes the total output power of distributed generation.

3. Fault Recovery Strategies for Distribution Networks with Distributed Generation

3.1. Objective Function

After a distribution network fault occurs, the load power supply in the non-faulted areas is first restored through main grid reconfiguration. Subsequently, an objective function is formulated to restore power to the remaining unserved areas via islanding. The objective function is defined as shown in Equation (10):
f min = ω 1 · i = 1 n j = 1 3 Z j P i + ω 2 · a = 1 L K a K a * + ω 3 · k = 1 s β k R k P k 2 + Q k 2 U k 2
where the components of the equation are as follows:
  • i = 1 n j = 1 3 Z j P i denotes the total power of different classes of de-energized loads;
  • a = 1 L K a K a * denotes the number of switching operations;
  • β k R k ( P k 2 + Q k 2 ) / U k 2 denotes the active power loss in the network.
Additional notation is as follows:
  • n is the total number of load nodes without power;
  • Z j denotes the class of load at node j ;
  • P i is the active power of the i t h important lost load node;
  • L is the total number of switches in the system;
  • K a and K a * represent the switching states of switch iii before and after reconfiguration, respectively, where 1 indicates closed and 0 indicates open;
  • s is the total number of branches in the system;
  • β k is the switching state of branch k , where 1 indicates closed and 0 indicates open;
  • R k is the resistance of branch k ;
  • P k and Q k are the active and reactive power flows on branch k ;
  • U k is the voltage magnitude at the receiving end of branch k ,
In addition, ω 1 , ω 2 , ω 3 are weighting coefficients reflecting the priority of the objectives: prioritizing restoration of important loads and minimizing power loss are core objectives, while the number of switching operations and line losses are conventional objectives. Therefore, the weighting values must be assigned according to their priority levels.
Specifically, the weights are assigned as follows:
For the first set of objectives: Z 1 : Z 2 : Z 3 = 100:10:1;
For the second set of objectives: ω 1 : ω 2 : ω 3 = 7:1:2.

3.2. Model Constraints

(1)
Nodal Power Balance Constraint:
P G i + P D G i P L i = U i j = 1 N U j ( G i j cos θ i j + B i j sin θ i j ) Q G i + Q D G i Q L i = U i j = 1 N U j ( G i j cos θ i j + B i j sin θ i j )
where P G i and Q G i denote the active and reactive power injected by node i respectively. P D G i and Q D G i denote the active and reactive power injected by the DG of node i , respectively. P L i and Q L i denote the active and reactive loads of node i , respectively. U i and U j denote the voltages at the first and last nodes i and j of the branch, respectively. G i j and B i j denote the conductance and conductivity between the i t h and j t h nodes, respectively, and θ i j denotes the phase difference between the i t h and j t h nodes.
(2)
Nodal voltage constraints:
U i min U i U i max
where U i min and U i max denote the minimum and maximum allowable voltages at node i .
(3)
Branch active power constraints:
| P i | P i max
where P i is the active power of branch i and P i max is the maximum allowable active power for branch i .
(4)
Distributed generation constraints:
P D G i min P D G i P D G i max
where P D G i min and P D G i max denote the minimum and maximum generation power of the distributed generator at node i .

3.3. Islanding and Network Reconfiguration Recovery Based on GA-QPSO Algorithm

GA is an intelligent optimization technique inspired by the principles of biological evolution, renowned for its strong global search capability and parallel processing features [28]. In distribution networks, where a large number of switches are involved—especially under large-scale faults or outages—the resulting solution space for reconfiguration and islanding becomes significantly large and complex. GA demonstrates clear advantages in such scenarios, as it effectively handles the intricate topological constraints of power systems and efficiently explores the vast search space. However, conventional GAs often suffer from limited local search accuracy, which can lead to premature convergence to suboptimal solutions during the evolutionary process, ultimately affecting the quality and robustness of the final optimization results.
To overcome the aforementioned limitations, this paper introduces and enhances the quantum-behaved particle swarm optimization (QPSO) algorithm. QPSO incorporates probabilistic behavioral models from quantum mechanics, offering superior local search accuracy and a stronger ability to escape local optima. This makes it an effective complement to the GA, particularly in compensating for GA’s insufficient local exploitation capability. By integrating QPSO into the GA framework and applying fine tuning after each generation of evolution, the overall optimization accuracy and convergence speed are significantly improved. This hybrid approach markedly enhances the global search performance, solution stability, and robustness of the recovery strategy. The mathematical formulations of the QPSO algorithm are presented in Equations (15)–(17):
p i = p b e s t i + g b e s t 2
m b e s t = 1 N i = 1 N p b e s t i
x i ( t + 1 ) = p i ± β · | m b e s t x i ( t ) | · ln ( 1 u )
where p b e s t i represents the historical optimal position of the particle itself; g b e s t represents the global optimal position; p i is the center of the search direction; m b e s t represents the average of the current historical optimal positions of all particles; β represents the contraction–expansion factor; x i ( t + 1 ) represents the position of the next moment; and u is a random number obeying the [0, 1] uniform distribution.
The objectives of islanding and restorative reconfiguration include minimizing network losses, reducing the number of switching operations, minimizing load shedding, and prioritizing critical load restoration. The procedure for islanding and restorative reconfiguration is outlined as follows:
  • Initial data input: Import the post-fault distribution network data, including topology, fault location, load distribution, and switching states, where each switch node is binary-encoded (0/1) to represent on/off status.
  • Feasible solution generation and population initialization: Construct an initial solution set meeting network constraints using a radial structure strategy, ensuring reasonable network distribution and a stable base for optimization.
  • Genetic evolution and structural optimization: Apply selection, crossover, and mutation operations to globally explore the solution space, iteratively updating islanding schemes to maintain population diversity and solution feasibility.
  • Local search enhancement: Introduce QPSO for the local optimization of elite individuals after each genetic generation, leveraging quantum behavior and the best population positions to improve convergence and escape local optima.
  • Islanding scheme verification: Assess the optimized islanding solutions for physical topology, load distribution, and voltage stability and analyze potential power imbalances using load forecasts.
  • Dynamic topology update: Update the network topology based on optimization results to clarify backbone connectivity and available branches for subsequent reconfiguration.
  • Population regeneration and iterative optimization: Use loop coding and genetic recombination to regenerate feasible solutions, evaluate them via the fitness function, and retain the best individuals to guide evolution.
  • Final recovery scheme determination: Perform gradient-level fine tuning on the optimal solution to maximize load restoration, network connectivity, and operational stability.
The algorithm flowchart of the proposed method is illustrated in Figure 3.

4. Validating Cases

4.1. Results and Analyses

To assess the effectiveness of the proposed reconfiguration and islanding recovery strategy, the IEEE 33-bus distribution system—depicted in Figure 4—is adopted as the test case. This widely used benchmark system consists of 33 buses, 32 sectionalizing switches, and 5 tie switches and operates at a nominal voltage level of 12.66 kV.
The load categories and their corresponding weight factors for each bus are presented in Table 2, while the locations and capacities of distributed generation units are detailed in Table 3.
Assuming natural disasters cause multiple line outages on lines 2–3, 7–8, and 20–21 between 10:00 and 12:00 on a given day, the system is partitioned into three silos according to the silo division scheme, as illustrated in Figure 5. The GA-QPSO algorithm parameters are set as follows: population size of 100, chromosome length of 36, stochastic variance of 0.15, maximal GA iterations of 50, maximal QPSO iterations of 30, particle number of 20, and a convergence control parameter of 1.5. These values were determined based on empirical tuning through multiple experimental trials. The parameters were adjusted iteratively to balance optimization quality and computational efficiency, ensuring stable convergence behavior for the IEEE 33-bus test system.
Power supply to Island 1 can be restored through main network reconfiguration. For the remaining unenergized islands, planned islands are formed by utilizing DGs. Based on the preliminary division results, there is an option to close certain tie switches to merge DG2 and DG4 into a larger Island 3. Therefore, accurate load forecasting is necessary to support this decision. In this study, net load forecasting for the isolated islands is performed using data from [27], with the results presented in Figure 6.
Based on the net load prediction results, it is evident that merging DG2 and DG4 into a larger island for fault recovery poses a safety risk, since the net load remains positive between 11:00 and 13:00 on that day. Therefore, this option is excluded. The updated network topology is then subjected to local optimization using the GA-QPSO algorithm with the same parameter settings as previously described. The final islanding and restoration configuration is illustrated in Figure 7.
As shown in Figure 7, the reconfiguration restores power supply to nodes 10, 28, and 29.
As shown in Figure 8 and Figure 9, the reconfiguration successfully restores power supply to nodes 10, 28, and 29. The optimization results are summarized in Table 4. Specifically, the GA begins to converge after 35 iterations, with the fitness value decreasing from 189.36 to 144.35. Subsequently, the quantum-behaved particle swarm optimization, initialized with the GA solution, starts converging after 22 iterations, further reducing the fitness value to 137.37.
The optimization results are summarized in Table 4.
The results indicate that the proposed algorithm effectively reduces network losses. The switching operations are limited to two actions within the permissible range, and the method requires only 7 s to execute. Specifically, this computation time refers to the duration from the completion of the island partition optimization to the generation of the final fault recovery strategy, including the execution of the GA-QPSO optimization process. With its fast response characteristics, the approach can significantly enhance power grid stability.

4.2. Performance Comparison

To validate the superiority of the operational algorithms proposed in this paper for distribution network fault recovery, the IEEE 33-node system with three DGs, adapted from references [29,30], is selected as the benchmark case, as shown in Figure 10. In this system, node 0 represents the power source. It is assumed that permanent faults occur at sectional switches S9 and S22. The pre-fault recovery state, the recovery strategies from [29,30], and the strategy proposed in this paper are compared with the results summarized in Table 5.
It can be observed that both the method proposed in [28] and the recovery strategy presented in this paper demonstrate improved performance compared to the pre-fault state. However, the strategy proposed herein achieves recovery with fewer switching operations (2 vs. 3) while maintaining lower network losses (76.08 kW vs. 118.51 kW in [29] and 71.08 kW in [30]), making it more conducive to optimizing the objective function.
This improvement can be attributed to the hybrid design of the GA-QPSO algorithm. The GA ensures global exploration of the vast reconfiguration space, while the QPSO refines high-quality individuals through local exploitation, thus avoiding premature convergence and local optima. Additionally, the integration of real-time net load forecasting allows for more adaptive and secure islanding decisions, especially in scenarios involving fluctuating distributed generation. This ensures that the final configuration avoids unsafe operations such as merging DGs when the net load remains positive, as discussed in Section 4.1.
In contrast, the strategies in [29] and [30] either rely on rule-based heuristics or fixed topological assumptions, which may limit flexibility or responsiveness to actual net load conditions. The proposed method, by contrast, dynamically incorporates forecast information into the reconfiguration process, enabling more accurate recovery with minimal actions. These advantages highlight its suitability for real-time self-healing in modern distribution networks.

5. Conclusions

In this paper, a comprehensive strategy is proposed to address the dynamic fault recovery problem in active distribution networks, integrating net load forecasting, islanding operation management, and network reconfiguration optimization. A corresponding mathematical recovery model is developed. The experimental results demonstrate that the GA-QPSO algorithm reduces network losses by 33.2% within only 7 s of computation time. Furthermore, the Bayesian-optimized LSTM model improves prediction accuracy on the test set by 46.3% compared to the conventional LSTM benchmark. This approach significantly enhances the real-time response capability of distribution network fault recovery and improves system operational stability.
Despite its promising performance, the proposed strategy has several limitations. The forecasting module depends on high-quality and complete meteorological and generation datasets, which may be unavailable in some practical environments. Additionally, while the GA-QPSO algorithm is computationally efficient in medium-sized networks, its scalability in large-scale systems with higher DG penetration remains to be further validated. Moreover, ideal communication infrastructure and complete system observability are assumed, which may not always hold true in actual applications.
Future work will focus on incorporating stochastic forecasting and robust optimization to improve adaptability under uncertainty. Communication delays, partial observability, and real-time dispatch constraints will also be considered to enhance the practical feasibility of the approach. Furthermore, the method will be tested on larger-scale distribution systems and integrated into realistic operation platforms. Engineering scenarios such as those presented in [31], which utilize real-world distribution network data from Beijing and focus on post-disaster emergency resource coordination, provide valuable references and practical environments for the future validation of our proposed strategy. We will further seek cooperation with the authors of that study and request the dataset to verify our method. With the advancement of the “Carbon Peak and Carbon Neutrality” goals, further research will also explore incorporating green optimization metrics such as carbon emission cost and energy efficiency into the multi-objective framework.

Author Contributions

Methodology: Z.D.; writing—original draft preparation: Z.D.; writing—review and editing: Z.D. and Y.C. All authors have read and agreed to the published version of the manuscript.

Funding

This work is supported by the National Natural Science Foundation of China under Grant Nos. 62103132 and 62003132, the Natural Science Foundation of Jiangsu Province under Grant No. BK20241779, and the Major Special Science and Technology Project of Yunnan Province under Grant No. 202402AF080006.

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 conflicts of interest.

Abbreviations

The following abbreviations are used in this manuscript:
DGDistributed Generation
QPSOQuantum-behaved Particle Swarm Optimization
GAGenetic Algorithm
LSTMLong Short-Term Memory network
GA-QPSOGenetic Algorithm and Quantum-behaved Particle Swarm Optimization
RNNRecurrent Neural Network

References

  1. Xie, M.; Lin, S.; Dong, K.; Zhang, S. Short-Term Prediction of Multi-Energy Loads Based on Copula Correlation Analysis and Model Fusions. Entropy 2023, 25, 1343. [Google Scholar] [CrossRef]
  2. Wang, F.; Cetinay, H.; He, Z.; Liu, L.; Van Mieghem, P.; Kooij, R.E. Recovering Power Grids Using Strategies Based on Network Metrics and Greedy Algorithms. Entropy 2023, 25, 1455. [Google Scholar] [CrossRef]
  3. Bai, Y.; Gu, X.; Li, S.; Liu, K. Coordinated restoration method of transmission and distribution network considering distribution network fault repair scenario. Int. J. Electr. Power Energy Syst. 2023, 151, 109153. [Google Scholar] [CrossRef]
  4. Quintero, J.M.; Uribe, J.A.; Bernal, O.; Henao, C.O. Optimal restoration algorithm for active distribution network considering island mode of the microgrids, e-Prime—Advances in Electrical Engineering. Electron. Energy 2025, 12, 100976. [Google Scholar] [CrossRef]
  5. Savastianov, M.; Smedley, K.; Cao, J. Power System Recovery from Momentary Cessation with Transient Stability Improvement. IEEE Trans. Power Syst. 2024, 39, 6014–6025. [Google Scholar] [CrossRef]
  6. Bae, I.S.; Son, E.T.; Kim, S.Y.; Kim, D.M. Optimum Cable Sizing for Offshore Wind Farms Using Binary Integer Programming. IEEE Access 2023, 11, 132708–132717. [Google Scholar] [CrossRef]
  7. Yang, L.; Cui, X.; Qin, Y. Emergency power supply scheme and fault repair strategy for distribution networks considering electric -traffic synergy. Sustain. Energy Grids Netw. 2024, 40, 101575. [Google Scholar] [CrossRef]
  8. Wang, W.; Zhang, K.; Lv, S.; Zheng, Z.; Li, G.; Bai, L. Research and Application of New Fast Self-Healing Technology of Distribution Network Based on Line Topology and Beat Frequency Attenuation. Results in Engineering. 2025, 106641. [Google Scholar] [CrossRef]
  9. Wang, K.; Zhao, Z.; Zhong, J.; Xu, F. Dynamic Fault Recovery Strategy for Distribution Network Based on Improved Simulated Annealing Genetic Algorithm. Smart Grid 2024, 52, 16–22. [Google Scholar] [CrossRef]
  10. Zhao, R.; Hou, Z.; Lu, J.; Lin, G.; Yan, J.; Chen, J.; Pan, K.; Wang, F. Distributed coordinated service restoration strategy for transmission and distribution networks based on distribution network partition. Electr. Power Syst. Res. 2025, 246, 111675. [Google Scholar] [CrossRef]
  11. Huang, W.; Sun, K.; Qi, J.; Ning, J. Optimal Allocation of Dynamic Var Sources Using the Voronoi Diagram Method Integrating Linear Programing. IEEE Trans. Power Syst. 2017, 32, 4644–4655. [Google Scholar] [CrossRef]
  12. Chen, L.; Jiang, Y.; Deng, X.; Zheng, S.; Chen, H.; Islam, M.R. A multi-period restoration approach for resilience increase of active distribution networks by considering fault rapid recovery and component repair. Int. J. Electr. Power Energy Syst. 2024, 161, 110181. [Google Scholar] [CrossRef]
  13. Zhang, B.; Crossley, P. Reliability improvement using ant colony optimization applied to placement of sectionalizing switches. Energy Procedia 2017, 142, 2604–2610. [Google Scholar] [CrossRef]
  14. Liu, S.; Zhao, L.; Li, J.; Hou, Z. Dynamic fault recovery method of a photovoltaic distribution network considering switch state set adjustment. Power Syst. Prot. Control 2021, 49, 24–31. [Google Scholar]
  15. Nayak, P.; Dash, P.K.; Mishra, S.P. Stability assessment and optimal state-feedback system design for PQ-Vf coordination in a PV/DFIG/DSG based microgrid. Renew. Energy Focus 2018, 27, 14–32. [Google Scholar] [CrossRef]
  16. Avilés, J.P.; Mayo-Maldonado, J.C.; Micheloud, O. A multi-objective evolutionary approach for planning and optimal condition restoration of secondary distribution networks. Appl. Soft Comput. 2020, 90, 106182. [Google Scholar] [CrossRef]
  17. Shaikh, M.S.; Raj, S.; Babu, R.; Kumar, S.; Sagrolikar, K. A hybrid moth–flame algorithm with particle swarm optimization with application in power transmission and distribution. Decis. Anal. J. 2023, 6, 100182. [Google Scholar] [CrossRef]
  18. Song, W.; Qiao, Y.; Park, S.C.; Qian, X. A hybrid evolutionary computation approach with its application for optimizing text document clustering. Expert Syst. Appl. 2015, 42, 2517–2524. [Google Scholar] [CrossRef]
  19. Xu, P.; Song, Y.; Du, J.; Zhang, F. Town gas daily load forecasting based on machine learning combinatorial algorithms: A case study in North Chin. Chin. J. Chem. Eng. 2024, 75, 239–252.0. [Google Scholar] [CrossRef]
  20. Li, H.; Tang, M.; Mu, Y.; Wang, Y.; Yang, T.; Wang, H. Achieving accurate and balanced regional electric vehicle charging load forecasting with a dynamic road network: A case study of Lanzhou City. Appl. Intell. 2024, 54, 9230–9252. [Google Scholar] [CrossRef]
  21. Tang, Z.; Ji, T.; Kang, J.; Huang, Y.; Tang, W. Learning global and local features of power load series through transformer and 2D-CNN: An image-based multi-step forecasting approach incorporating phase space reconstruction. Appl. Energy 2025, 378, 124786. [Google Scholar] [CrossRef]
  22. Hu, X.; Li, H.; Si, C. Improved composite model using metaheuristic optimization algorithm for short-term power load forecasting. Electr. Power Syst. Res. 2025, 241, 111330. [Google Scholar] [CrossRef]
  23. Fu, Z.; Qian, H.; Wei, W.; Chu, X.; Yang, F.; Guo, C.; Wang, F. An Informer-BiGRU-temporal attention multi-step wind speed prediction model based on spatial-temporal dimension denoising and combined VMD decomposition. Energy 2025, 326, 136265. [Google Scholar] [CrossRef]
  24. Liu, X.; Song, J.; Tao, H.; Wang, P.; Mo, H.; Du, W. Quarter-Hourly Power Load Forecasting Based on a Hybrid CNN-BiLSTM-Attention Model with CEEMDAN, K-Means, and VMD. Energies 2025, 18, 2675. [Google Scholar] [CrossRef]
  25. Griffith, A.; Harris, M. Efficient techno-economic optimization of integrated energy systems using Bayesian optimization. Energy 2025, 326, 136117. [Google Scholar] [CrossRef]
  26. Lin, S.; Wang, Y.; Wei, H.; Wang, X.; Wang, Z. Hybrid Method for Oil Price Prediction Based on Feature Selection and XGBOOST-LSTM. Energies 2025, 18, 2246. [Google Scholar] [CrossRef]
  27. Chen, Y.; Xu, J. Solar and wind power data from the Chinese State Grid Renewable Energy Generation Forecasting Competition. Sci. Data 2022, 9, 577. [Google Scholar] [CrossRef] [PubMed]
  28. Duan, Y.; Gao, C.; Xu, Z.; Ren, S.; Wu, D. Multi-Objective Optimization for the Low-Carbon Operation of Integrated Energy Systems Based on an Improved Genetic Algorithm. Energies 2025, 18, 2283. [Google Scholar] [CrossRef]
  29. Zhou, J.; Xie, H.; Zheng, B. Coordination of Distribution Network Fault Reconfiguration and Islanded Operation Based on Hybrid Algorithm. Power Syst. Technol. 2015, 39, 136–142. [Google Scholar]
  30. Ma, Z.; Liu, Y.; Xu, L.; Zhu, J.; Lin, Q. Operation Strategy for Distribution Network Fault Restoration Considering Islanding and Reconfiguration. Electr. Power Constr. 2018, 39, 128–136. [Google Scholar] [CrossRef]
  31. Wan, H.; Liu, W.; Shi, Q.; Liu, J.; Zhang, S. A Post-Disaster Centralized Matching and Decentralized Dispatch Strategy for Emergency Resources in Urban Power Network. Trans. China Electrotech. Soc. 2024, 39, 7463–7480. [Google Scholar]
Figure 1. Structure of the long short-term memory network.
Figure 1. Structure of the long short-term memory network.
Entropy 27 00888 g001
Figure 2. Comparison of prediction performance across different algorithms.
Figure 2. Comparison of prediction performance across different algorithms.
Entropy 27 00888 g002
Figure 3. Algorithm flowchart of the proposed GA-QPSO fault recovery method.
Figure 3. Algorithm flowchart of the proposed GA-QPSO fault recovery method.
Entropy 27 00888 g003
Figure 4. Architecture diagram of the IEEE 33-bus distribution system.
Figure 4. Architecture diagram of the IEEE 33-bus distribution system.
Entropy 27 00888 g004
Figure 5. Preliminary siloing scheme diagram.
Figure 5. Preliminary siloing scheme diagram.
Entropy 27 00888 g005
Figure 6. Net load forecast results.
Figure 6. Net load forecast results.
Entropy 27 00888 g006
Figure 7. Final restoration strategy diagram.
Figure 7. Final restoration strategy diagram.
Entropy 27 00888 g007
Figure 8. GA convergence curve diagram.
Figure 8. GA convergence curve diagram.
Entropy 27 00888 g008
Figure 9. QPSO convergence curve diagram.
Figure 9. QPSO convergence curve diagram.
Entropy 27 00888 g009
Figure 10. Structure of the IEEE 33-node distribution network as a benchmark case.
Figure 10. Structure of the IEEE 33-node distribution network as a benchmark case.
Entropy 27 00888 g010
Table 1. Comparison of prediction performance across different algorithms.
Table 1. Comparison of prediction performance across different algorithms.
AlgorithmR2RMSE/kW
BP0.796336.3064
LSTM0.895122.7879
CNN-LSTM0.919317.7116
Bayesian–LSTM0.956912.1464
Table 2. Nodal load category.
Table 2. Nodal load category.
Load CategoryWeighting FactorRespective Buses
Category I load1003, 10, 11, 24, 31
Category II load104, 6, 12, 15, 19, 21, 22, 23, 29, 30
Category III load12, 5, 7, 8, 9, 13, 14, 16, 17, 18, 20, 25, 26, 27, 28, 32, 33
Table 3. Distributed generation connection buses and their capacities.
Table 3. Distributed generation connection buses and their capacities.
Connection NodeTypologyActive Power Capacity/kW
5photovoltaic750
17wind power600
24photovoltaic500
32wind power720
Table 4. Pre-optimization vs. post-optimization performance.
Table 4. Pre-optimization vs. post-optimization performance.
Comparison MetricsPre-OptimizationPost-Optimization
Operating switch-Disconnect line segments 25–29 and 18–33
Number of operations-2
Network loss /kW122.088681.5665
Minimum voltage/pu0.97590.9759
Load recovery percentage72.7%75.8%
Power supply duration /min60120
Increased electricity supply/kWh-81.0442
Table 5. Comparison of restoration strategies.
Table 5. Comparison of restoration strategies.
Restoration StrategyDisconnect SwitchNumber of Switching OperationsNetwork Loss/kW
Before fault recoveryS9, S22, S35–S37095.35
Literature [29]S9, S12, S14, S23, S33, S35–S373118.51
Literature [30]S9, S22, S17, S23, S33, S35–S37371.08
Methodology of this paperS9, S10, S16, S20, S23, S35–S37276.08
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.

Share and Cite

MDPI and ACS Style

Ding, Z.; Chu, Y. Fault Recovery Strategy with Net Load Forecasting Using Bayesian Optimized LSTM for Distribution Networks. Entropy 2025, 27, 888. https://doi.org/10.3390/e27090888

AMA Style

Ding Z, Chu Y. Fault Recovery Strategy with Net Load Forecasting Using Bayesian Optimized LSTM for Distribution Networks. Entropy. 2025; 27(9):888. https://doi.org/10.3390/e27090888

Chicago/Turabian Style

Ding, Zekai, and Yundi Chu. 2025. "Fault Recovery Strategy with Net Load Forecasting Using Bayesian Optimized LSTM for Distribution Networks" Entropy 27, no. 9: 888. https://doi.org/10.3390/e27090888

APA Style

Ding, Z., & Chu, Y. (2025). Fault Recovery Strategy with Net Load Forecasting Using Bayesian Optimized LSTM for Distribution Networks. Entropy, 27(9), 888. https://doi.org/10.3390/e27090888

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Article metric data becomes available approximately 24 hours after publication online.
Back to TopTop