Embedded, Real-Time, and Distributed Traveling Wave Fault Location Method Using Graph Convolutional Neural Networks
Abstract
:1. Introduction
2. Background
- Designing a distributed fault location algorithm that achieves reasonably good accuracy while observing the memory constraints of a commercial embedded device.
- Implementing the aforementioned algorithm in an embedded device in a way that the execution time is similar to commercially available TW relays.
- Analyzing the method’s resiliency to failed communication messages between devices.
- Proposing a TW playback fault testing bench with two microcontrollers for the experimental validation of the location method on actual measured TWs.
3. The Device
4. The Use Case
- PZ1: 800, 802, 806, 808, 810, and 812.
- PZ2: 814, 850, 816, 824, 826, 828, 830, 854, 856, 818, 820, and 822.
- PZ3: 852, 832, 888, 890, 858, 864, 834, 842, 844, 846, 848, 860, 836, 840, 862, and 838.
5. The Method
5.1. Signal Processing Stage
5.1.1. The Karrenbauer Transformation
5.1.2. The Discrete Wavelet Transform
- A convolution between the LP/HP filter coefficients and the input signal or the approximation coefficients from the previous level. The FIR filter functions in the FPU library offer a method to perform convolutions very efficiently, reducing the need for two loops to just one. It is important to note that this convolution operation assumes that the input is zero-padded.
- A downsampling operation, in which only the odd output coefficients are retained.
5.1.3. Parseval’s Energy Theorem
5.2. Protection Zone Prediction Stage
5.2.1. Introduction to Graph Neural Networks
5.2.2. GCN Models
5.2.3. Distributed Implementation
- The bias term and the weights , which are shared with all the other nodes in the system.
- The incoming messages are from neighboring nodes 824 and 830, and . These are the outputs from the previous layer in those nodes. For , they are the output of the signal processing stage.
- The output from the previous layer , which is the input of the current layer.
- The normalized edge weights for message-passing from node 824 to node 828 and from node 830 to node 828, and , and the self-loop for node 828, .
6. Experimental Setup
6.1. Experimental TW Detection
6.2. TWs Fault Bench
7. Results
7.1. Models’ Accuracy Comparison
7.2. Models’ Resiliency to Communication Losses
- Case A: There is no failure in communication and it is used as the baseline.
- Case B and C: One neighbor is not available and no messages are received. Then, 3 messages are lost.
- Cases D–I: One message, in one of the layers, and from either of the neighbors, is lost.
- Cases J–O: Two messages, in different layers, and from either of the neighbors, are lost.
- Cases P–U: Three messages, in different layers and from different nodes, are lost.
7.3. Models’ Execution Time Comparison
- Pre-processing: Once the three arrays of 128 values are retrieved by the detection stage, the first step is to scale them back to kV and to calculate the ground mode, which is the only decoupled mode that is used in this work. Both operations are efficiently executed at the same time using the following expression:
- Feature extraction: The voltage ground mode undergoes a three-level DWT decomposition and reconstruction that retrieves a total of three arrays of 128 values each, summarizing the signal’s frequency components in the frequency bands, as observed in Table 4. Note that just 64 samples per array are retained, starting on the detected TW arrival timestamp. Afterwards, the PE values of such arrays are calculated and concatenated, forming a single array of features containing 192 values. To fit the model’s input layer, further downsampling by 2 is conducted to retrieve the final array of 96 samples.
- GCN model: The implemented fault location model is the Only V model, as previously defined in Table 5. There are RELU non-linear activation functions after the two first GCN layers, while the final layer is a Log-Softmax layer that retrieves the log-probabilities of the fault being in each of the three considered PZs. Incoming communication from nodes 824 and 830 is required in each GCN layer. The messages are previously loaded into the microcontroller and not considered in the execution time, as the communication delay is much smaller than the actual execution time.
8. Discussion
9. Conclusions
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
Abbreviations
TW | Traveling Wave |
SWT | Stationary Wavelet Transform |
CWT | Continuous Wavelet Transform |
DWT | Discrete Wavelet Transform |
MRA | Multi-Resolution Analysis |
LP | Low Pass |
HP | High Pass |
KT | Karrenbauer Transform |
PE | Parseval’s Energy |
DMD | Dynamic Mode Decomposition |
GNN | Graph Neural Network |
GCN | Graph Convolutional Network |
AI | Artificial Intelligence |
ML | Machine Learning |
DL | Deep Learning |
SLG | Single Line to Ground |
LL | Line to Line |
1P | One Phase |
3P | Three Phase |
LLG | Line to Line to Ground |
3PG | Three Phase to Ground |
PZ | Protection Zone |
CLA | Control-Law Accelerator |
CPU | Central Processing Unit |
FPU | Floating-Point Unit |
ADC | Analog-to-Digital Converter |
DAC | Digital-to-Analog Converter |
Appendix A
Case | ||||||
---|---|---|---|---|---|---|
A | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
B | ✓ | X | ✓ | X | ✓ | X |
C | X | ✓ | X | ✓ | X | ✓ |
D | X | ✓ | ✓ | ✓ | ✓ | ✓ |
E | ✓ | X | ✓ | ✓ | ✓ | ✓ |
F | ✓ | ✓ | X | ✓ | ✓ | ✓ |
G | ✓ | ✓ | ✓ | X | ✓ | ✓ |
H | ✓ | ✓ | ✓ | ✓ | X | ✓ |
I | ✓ | ✓ | ✓ | ✓ | ✓ | X |
J | ✓ | ✓ | X | ✓ | ✓ | X |
K | ✓ | X | X | ✓ | ✓ | ✓ |
L | X | ✓ | ✓ | ✓ | ✓ | X |
M | ✓ | X | ✓ | ✓ | X | ✓ |
N | ✓ | ✓ | ✓ | X | X | ✓ |
O | X | ✓ | ✓ | X | ✓ | ✓ |
P | X | ✓ | X | ✓ | ✓ | X |
Q | ✓ | X | ✓ | X | X | ✓ |
R | X | ✓ | ✓ | X | ✓ | X |
S | ✓ | X | X | ✓ | X | ✓ |
T | X | ✓ | ✓ | X | X | ✓ |
U | ✓ | X | X | ✓ | ✓ | X |
References
- U.S. Department of Energy. Internet of Things-Enabled Devices and the Grid; U.S. Department of Energy: Washington, DC, USA, 2017.
- Meliopoulos, A.P.S.; Cokkinides, G.J.; Huang, R.; Polymeneas, E.; Myrda, P. Grid Modernization: Seamless Integration of Protection, Optimization and Control. In Proceedings of the 2014 47th Hawaii International Conference on System Sciences, Waikoloa, HI, USA, 6–9 January 2014; pp. 2463–2474. [Google Scholar] [CrossRef]
- Velaga, Y.N.; Prabakar, K.; Singh, A.; Sen, P.K.; Kroposki, B.D. Advanced Distribution Protection for High Penetration of Distributed Energy Resources (DER); National Renewable Energy Lab. (NREL): Golden, CO, USA, 2019.
- Guzmán, A.; Kasztenny, B.; Tong, Y.; Mynam, M.V. Accurate and economical traveling-wave fault locating without communications. In Proceedings of the 2018 71st Annual Conference for Protective Relay Engineers (CPRE), College Station, TX, USA, 26–29 March 2018; pp. 1–18. [Google Scholar] [CrossRef]
- IEEE Std C37.114-2014 (Revision of IEEE Std C37.114-2004); IEEE Guide for Determining Fault Location on AC Transmission and Distribution Lines. IEEE: Manhattan, NY, USA, 2015; pp. 1–76. [CrossRef]
- Wilches-Bernal, F.; Bidram, A.; Reno, M.J.; Hernandez-Alvidrez, J.; Barba, P.; Reimer, B.; Montoya, R.; Carr, C.; Lavrova, O. A Survey of Traveling Wave Protection Schemes in Electric Power Systems. IEEE Access 2021, 9, 72949–72969. [Google Scholar] [CrossRef]
- Jahromi, A.T.; Wolfs, P.; Islam, S. A travelling wave detector based fault location device and data recorder for medium voltage distribution systems. In Proceedings of the 2016 Australasian Universities Power Engineering Conference (AUPEC), Brisbane, QLD, Australia, 25–28 September 2016; pp. 1–5. [Google Scholar] [CrossRef]
- Bewley, L.V. Traveling waves on electric power systems. Bull. Am. Math. Soc. 1942, 48, 527–538. [Google Scholar] [CrossRef] [Green Version]
- Greenwood, A. Electrical Transients in Power Systems, 2nd ed.; Wiley-Interscience: New York, NY, USA, 1991. [Google Scholar]
- Barnett, P.S. The Analysis of Travelling Waves on Power System Transmission Lines. Ph.D. Thesis, University of Canterbury, Electrical Engineering, Christchurch, New Zealand, 1974. [Google Scholar]
- Benato, R.; Sessa, S.D.; Poli, M.; Quaciari, C.; Rinzo, G. An Online Travelling Wave Fault Location Method for Unearthed-Operated High-Voltage Overhead Line Grids. IEEE Trans. Power Deliv. 2018, 33, 2776–2785. [Google Scholar] [CrossRef]
- Lopes, F.V.; Dantas, K.M.; Silva, K.M.; Costa, F.B. Accurate Two-Terminal Transmission Line Fault Location Using Traveling Waves. IEEE Trans. Power Deliv. 2018, 33, 873–880. [Google Scholar] [CrossRef]
- Jin, W.; Lu, Y.; Tang, C. A novel double ended method for fault location based on travelling wave time-series. In Proceedings of the 2016 IEEE International Conference on Power System Technology (POWERCON), Wollongong, NSW, Australia, 28 September–1 October 2016; pp. 1–6. [Google Scholar] [CrossRef]
- Schweitzer, E.O.; Guzmán, A.; Mynam, M.V.; Skendzic, V.; Kasztenny, B.; Marx, S. Locating faults by the traveling waves they launch. In Proceedings of the 2014 67th Annual Conference for Protective Relay Engineers, College Station, TX, USA, 31 March–3 April 2014. [Google Scholar] [CrossRef]
- Guzmán, A.; Mynam, V.; Mangapathirao Skendzic, V.; Eternod, J.L. Directional Elements—How Fast Can They Be? In Proceedings of the 44th Annual Western Protective Relay Conference, Spokane, WA, USA, 17–19 October 2017. [Google Scholar]
- Schweitzer, E.O.; Kasztenny, B.; Mynam, M.V. Performance of time-domain line protection elements on real-world faults. In Proceedings of the 2016 69th Annual Conference for Protective Relay Engineers (CPRE), College Station, TX, USA, 4–7 April 2016. [Google Scholar] [CrossRef]
- Lout, K.; Aggarwal, R.K. A feedforward Artificial Neural Network approach to fault classification and location on a 132kV transmission line using current signals only. In Proceedings of the 2012 47th International Universities Power Engineering Conference (UPEC), Uxbridge, UK, 4–7 September 2012; pp. 1–6. [Google Scholar] [CrossRef]
- Yadav, A.; Swetapadma, A. Combined DWT and Naive Bayes based fault classifier for protection of double circuit transmission line. In Proceedings of the International Conference on Recent Advances and Innovations in Engineering (ICRAIE-2014), Jaipur, India, 9–11 May 2014; pp. 1–6. [Google Scholar] [CrossRef]
- Sun, J.; Wen, X.; Wei, X.; Chen, Q.; Wang, Y. Traveling Wave Fault Location for Power Cables Based on Wavelet Transform. In Proceedings of the 2007 International Conference on Mechatronics and Automation, Harbin, China, 5–8 August 2007; pp. 1283–1287. [Google Scholar] [CrossRef]
- Borghetti, A.; Bosetti, M.; Silvestro, M.D.; Nucci, C.A.; Paolone, M. Continuous-Wavelet Transform for Fault Location in Distribution Power Networks: Definition of Mother Wavelets Inferred From Fault Originated Transients. IEEE Trans. Power Syst. 2008, 23, 380–388. [Google Scholar] [CrossRef]
- Borghetti, A.; Bosetti, M.; Nucci, C.A.; Paolone, M.; Abur, A. Integrated Use of Time-Frequency Wavelet Decompositions for Fault Location in Distribution Networks: Theory and Experimental Validation. IEEE Trans. Power Deliv. 2010, 25, 3139–3146. [Google Scholar] [CrossRef]
- Chen, X.; Yin, X.; Yin, X.; Tang, J.; Wen, M. A novel traveling wave based fault location scheme for power distribution grids with distributed generations. In Proceedings of the 2015 IEEE Power & Energy Society General Meeting, Denver, CO, USA, 26–30 July 2015; pp. 1–5. [Google Scholar] [CrossRef]
- Jimenez Aparicio, M.; Grijalva, S.; Reno, M.J. Fast Fault Location Method for a Distribution System with High Penetration of PV. In Proceedings of the 54th Hawaii International Conference on System Sciences, Kauai, HI, USA, 5–8 January 2021. [Google Scholar] [CrossRef]
- Jiménez Aparicio, M.; Reno, M.J.; Barba, P.; Bidram, A. Multi-Resolution Analysis Algorithm for Fast Fault Classification and Location in Distribution Systems. In Proceedings of the 9th International Conference on Smart Energy Grid Engineering (SEGE), Oshawa, ON, Canada, 11–13 August 2021. [Google Scholar]
- Jiménez-Aparicio, M.; Reno, M.J.; Wilches-Bernal, F. Traveling Wave Energy Analysis of Faults on Power Distribution Systems. Energies 2022, 15, 2741. [Google Scholar] [CrossRef]
- Roy, N.; Bhattacharya, K. Signal-Energy Based Fault Classification of Unbalanced Network using S-Transform and Neural Network. Int. J. Recent Trends Eng. Technol. 2014, 10, 237–243. [Google Scholar]
- Wilches-Bernal, F.; Jimenez-Aparicio, M.; Reno, M.J. A Machine Learning-based Method using the Dynamic Mode Decomposition for Fault Location and Classification. In Proceedings of the Thirteenth Conference on Innovative Smart Grid Technologies (ISGT), New Orleans, LA, USA, 21–24 April 2022. [Google Scholar]
- Wilches-Bernal, F.; Reno, M.J.; Hernandez-Alvidrez, J. A Dynamic Mode Decomposition Scheme to Analyze Power Quality Events. IEEE Access 2021, 9, 70775–70788. [Google Scholar] [CrossRef]
- Wilches-Bernal, F.; Jiménez Aparicio, M.; Reno, M.J. An Algorithm for Fast Fault Location and Classification Based on Mathematical Morphology and Machine Learning. In Proceedings of the 2022 IEEE Innovative Smart Grid Technologies North America (ISGT NA), New Orleans, LA, USA, 24–28 April 2022. [Google Scholar]
- Liao, W.; Bak-Jensen, B.; Pillai, J.R.; Wang, Y.; Wang, Y. A Review of Graph Neural Networks and Their Applications in Power Systems. J. Mod. Power Syst. Clean Energy 2021, 10, 345–360. [Google Scholar] [CrossRef]
- Jiménez-Aparicio, M.; Reno, M.J.; Wilches-Bernal, F. Asynchronous Traveling Wave-based Distribution System Protection with Graph Neural Networks. In Proceedings of the 2022 IEEE Kansas Power and Energy Conference (KPEC), Manhattan, KS, USA, 25–26 April 2022. [Google Scholar]
- Camarillo-Peñaranda, J.R.; Aredes, M.; Ramos, G. Hardware-in-The-Loop Testing of a Distance Protection Relay. IEEE Trans. Ind. Appl. 2021, 57, 2326–2331. [Google Scholar] [CrossRef]
- Texas Instruments. FPU DSP Software Library USER’S GUIDE; Texas Instruments: Dallas, TX, USA, 2022. [Google Scholar]
- Texas Instruments. C2000 Real-Time Control MCU Peripherals; Texas Instruments: Dallas, TX, USA, 2021. [Google Scholar]
- Schneider, K.P.; Mather, B.A.; Pal, B.C.; Ten, C.W.; Shirek, G.J.; Zhu, H.; Fuller, J.C.; Pereira, J.L.R.; Ochoa, L.F.; de Araujo, L.R.; et al. Analytic Considerations and Design Basis for the IEEE Distribution Test Feeders. IEEE Trans. Power Syst. 2018, 33, 3181–3188. [Google Scholar] [CrossRef]
- Jia, H. An Improved Traveling-Wave-Based Fault Location Method with Compensating the Dispersion Effect of Traveling Wave in Wavelet Domain. Math. Probl. Eng. 2017, 2017, 1019591. [Google Scholar] [CrossRef] [Green Version]
- Holschneider, M.; Kronland-Martinet, R.; Morlet, J.; Tchamitchian, P. A Real-Time Algorithm for Signal Analysis with the Help of the Wavelet Transform. In Wavelets; Springer: Berlin/Heidelberg, Germany, 1990; pp. 286–297. [Google Scholar] [CrossRef]
- Mallat, S.G. A theory for multiresolution signal decomposition: The wavelet representation. IEEE Trans. Pattern Anal. Mach. Intell. 1989, 11, 674–693. [Google Scholar] [CrossRef] [Green Version]
- Baqui, I.; Zamora, I.; Mazon, A.J.; Buigues, G. High impedance fault detection methodology using wavelet transform and artificial neural networks. Electr. Power Syst. Res. 2011, 81, 1325–1333. [Google Scholar] [CrossRef]
- Sanchez-Lengeling, B.; Reif, E.; Pearce, A.; Wiltschko, A. A Gentle Introduction to Graph Neural Networks. Distill 2021, 6, e33. [Google Scholar] [CrossRef]
- Kipf, T.N.; Welling, M. Semi-Supervised Classification with Graph Convolutional Networks. arXiv 2016, arXiv:1609.02907. [Google Scholar]
- Wang, M.; Zheng, D.; Ye, Z.; Gan, Q.; Li, M.; Song, X.; Zhou, J.; Ma, C.; Yu, L.; Gai, Y.; et al. Deep Graph Library: A Graph-Centric, Highly-Performant Package for Graph Neural Networks. arXiv 2019, arXiv:1909.01315. [Google Scholar]
- Jimenez-Aparicio, M.; Reno, M.J.; Hernandez-Alvidrez, J. Fast Traveling Wave Detection and Identification Method for Power Distribution Systems Using the Discrete Wavelet Transform. In Proceedings of the Innovative Smart Grid Technologies, North America (ISGT NA), Washington, DC, USA, 16–19 January 2023. [Google Scholar]
- Montoya, A.Y.; Jimenez-Aparicio, M.; Hernandez-Alvidrez, J.; Reno, M.J. A Novel Microprocessor-Based Fault Detection System for Electrical Power Networks. In Proceedings of the Innovative Smart Grid Technologies, North America (ISGT NA), Washington, DC, USA, 16–19 January 2023. [Google Scholar]
- Helmrich, A.; Markolf, S.; Li, R.; Carvalhaes, T.; Kim, Y.; Bondank, E.; Natarajan, M.; Ahmad, N.; Chester, M. Centralization and decentralization for resilient infrastructure and complexity. Environ. Res. Infrastruct. Sustain. 2021, 1, 021001. [Google Scholar] [CrossRef]
- Spolitis, S.; Bobrovs, V.; Ivanovs, G. Latency causes and reduction in optical metro networks. In Optical Metro Networks and Short-Haul Systems VI; SPIE: San Francisco, CA, USA, 2014; Volume 9008. [Google Scholar] [CrossRef]
Parameter | Number of Combinations | Values |
---|---|---|
Inception angle | 2 | 1 millisecond apart |
Fault resistance | 3 | 0.01, 1, and 10 |
Fault type | 11 | 3 single-line-to-ground (SLG), |
3 line-to-line (LL), | ||
3 Line-to-line-to-ground (LLG), | ||
3P, and 3P-to-ground (3PG) |
Parameter | Number of Combinations | Values |
---|---|---|
Inception angle | 9 | Distributed over a 16 millisecond period |
Fault resistance | 6 | 0.01, 0.1, 1, 2, 5 and 10 |
Fault type | 1 | Corresponding phase-to-ground (SLG) |
Protection Zone | Training Set | Validation Set | Testing Set |
---|---|---|---|
PZ1 | 225 | 24 | 63 |
PZ2 | 505 | 56 | 141 |
PZ3 | 735 | 81 | 204 |
Decomposition Level | Lower Frequency | Upper Frequency |
---|---|---|
1 | 250 kHz | 500 kHz |
2 | 125 kHz | 250 kHz |
3 | 62.5 kHz | 125 kHz |
Model | GCN Layer 1 | GCN Layer 2 | GCN Layer 3 |
---|---|---|---|
Heavy VI | 192 × 64 | 64 × 64 | 64 × 3 |
Light VI | 192 × 20 | 20 × 20 | 20 × 3 |
Only V | 96 × 48 | 48 × 48 | 48 × 3 |
Only I | 96 × 48 | 48 × 48 | 48 × 3 |
Model | Median Acc. (%) | Maximum Acc. (%) | Minimum Acc. (%) |
---|---|---|---|
Heavy VI | 87.74 | 93.38 | 56.61 |
Light VI | 81.86 | 94.36 | 51.96 |
Only V | 82.96 | 88.97 | 64.46 |
Only I | 50.00 | 94.85 | 47.05 |
Model | Case A Acc. (%) | Case B Acc. (%) | Case C Acc. (%) |
---|---|---|---|
Heavy VI | 93.1 | 87.7 | 75.2 |
Light VI | 85.0 | 77.7 | 72.5 |
Only V | 88.2 | 87.3 | 72.3 |
Only I | 68.6 | 68.1 | 50.0 |
Model | Case D Acc. (%) | Case E Acc. (%) | Case F Acc. (%) | Case G Acc. (%) | Case H Acc. (%) | Case I Acc. (%) |
---|---|---|---|---|---|---|
Heavy VI | 93.1 | 93.1 | 93.1 | 93.1 | 75.2 | 87.7 |
Light VI | 85.0 | 85.0 | 85.0 | 85.0 | 72.8 | 77.7 |
Only V | 88.2 | 88.2 | 88.2 | 88.2 | 72.3 | 87.3 |
Only I | 68.6 | 68.6 | 68.6 | 68.6 | 59.1 | 68.1 |
Model | Case J Acc. (%) | Case K Acc. (%) | Case L Acc. (%) | Case M Acc. (%) | Case N Acc. (%) | Case O Acc. (%) |
---|---|---|---|---|---|---|
Heavy VI | 87.7 | 93.1 | 87.7 | 75.2 | 75.2 | 93.1 |
Light VI | 77.2 | 85.0 | 77.7 | 72.8 | 72.8 | 85.0 |
Only V | 87.3 | 88.2 | 87.3 | 72.3 | 72.3 | 88.2 |
Only I | 66.2 | 67.2 | 68.1 | 59.1 | 59.1 | 68.6 |
Model | Case P Acc. (%) | Case Q Acc. (%) | Case R Acc. (%) | Case S Acc. (%) | Case T Acc. (%) | Case U Acc. (%) |
---|---|---|---|---|---|---|
Heavy VI | 87.7 | 75.2 | 87.7 | 75.2 | 75.2 | 87.7 |
Light VI | 77.2 | 72.8 | 77.7 | 72.5 | 72.8 | 77.2 |
Only V | 87.3 | 72.3 | 87.3 | 72.3 | 72.3 | 87.3 |
Only I | 66.2 | 59.1 | 68.1 | 50.0 | 59.1 | 66.2 |
PZ1 Log-Prob. | PZ2 Log-Prob. | PZ3 Log-Prob. | PZ1 Prob. | PZ2 Prob. | PZ3 Prob. | |
---|---|---|---|---|---|---|
Implementation | −1.1826 × | −9.0406 | −25.3708 | 99.99% | 0.01% | 0.00% |
Simulation | −1.1849 × | −9.0406 | −25.3708 | 99.99% | 0.01% | 0.00% |
Stage | Time (103 CPU Cycles) | Time (μs) |
---|---|---|
Detection | 30.1 | 151 1 |
(Location) pre-processing | 34.6 | 173 |
(Location) feature extraction | 164.3 | 822 |
(Location) DL model | 24.7 | 124 |
Location total | 223.6 | 1119 |
Detection + location total | 253.7 | 1270 1 |
Stage | Process | Time (103 CPU Cycles) | Time (μs) |
---|---|---|---|
Pre-processing | Ground mode and de-scaling | 34.6 | 173 |
Feature extraction | First decomposition level | 29.8 | 149 |
Second decomposition level | 16.5 | 83 | |
Third decomposition level | 9.9 | 50 | |
Third detail reconstruction | 39.5 | 198 | |
Second detail reconstruction | 31.9 | 160 | |
First detail reconstruction | 20.0 | 100 | |
PE values calculation | 16.7 | 84 | |
GCN model | First GCN layer | 14.7 | 74 |
First RELU layer | 1.9 | 10 | |
Second GCN layer | 3.8 | 19 | |
Second RELU layer | 0.8 | 4 | |
Third GCN layer | 0.6 | 3 | |
Log-Softmax layer | 2.9 | 15 |
Variable | Text File Size (Bytes) | Allocated Memory (Bytes) |
---|---|---|
W(1) | 117,714 | 18,435 |
W(2) | 24,493 | 3843 |
W(3) | 1533 | 243 |
b(1) | 1229 | 195 |
b(2) | 510 | 83 |
b(3) | 77 | 15 |
Total | 145,556 | 22,814 |
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations. |
© 2022 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
Jiménez-Aparicio, M.; Hernández-Alvidrez, J.; Montoya, A.Y.; Reno, M.J. Embedded, Real-Time, and Distributed Traveling Wave Fault Location Method Using Graph Convolutional Neural Networks. Energies 2022, 15, 7785. https://doi.org/10.3390/en15207785
Jiménez-Aparicio M, Hernández-Alvidrez J, Montoya AY, Reno MJ. Embedded, Real-Time, and Distributed Traveling Wave Fault Location Method Using Graph Convolutional Neural Networks. Energies. 2022; 15(20):7785. https://doi.org/10.3390/en15207785
Chicago/Turabian StyleJiménez-Aparicio, Miguel, Javier Hernández-Alvidrez, Armando Y. Montoya, and Matthew J. Reno. 2022. "Embedded, Real-Time, and Distributed Traveling Wave Fault Location Method Using Graph Convolutional Neural Networks" Energies 15, no. 20: 7785. https://doi.org/10.3390/en15207785
APA StyleJiménez-Aparicio, M., Hernández-Alvidrez, J., Montoya, A. Y., & Reno, M. J. (2022). Embedded, Real-Time, and Distributed Traveling Wave Fault Location Method Using Graph Convolutional Neural Networks. Energies, 15(20), 7785. https://doi.org/10.3390/en15207785