ECE 6323 HW Soln 2 - 2024_Final (2)
pdf
School
Georgia Institute Of Technology *
*We aren’t endorsed by this school
Course
6323
Subject
Electrical Engineering
Date
Apr 3, 2024
Type
Pages
12
Uploaded by tomohawk
Georgia Institute of Technology School of Electrical and Computer Engineering ECE6323 Power System Protection - Spring 2024 Homework Assignment #2 Solution Problem P1 (20 Points):
(Objectives: become familiar with the COMTRADE standard, computation of frequency and computation of phasors). A relay has recorded the voltage and current of one phase at a certain location of a power system. The captured data have been stored in COMTRADE format in the file. The COMTRADE files are provided with the names: Homework_02_Spring22.cfg and Homework_02_Spring22.dat. For your convenience, the data are in ASCII format. 1. Write a computer program to read the data of the voltage and current. For this purpose, consult the IEEE Std C37-111-1999 that describes the COMTRADE format. 2. What is the sampling rate of the data? The sampling rate is 9600 samples/sec. 3. Graph the sample values of the voltage over the entire data record.
Figure 1. Graph of the voltage waveform plotted in Matlab
Figure 2. Graph of the voltage: Upper trace: over the entire data record, Lower trace: Zoom-in view plotted in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
90.53 kV
-90.53 kV
VoltageAtTLBUS1PhaseAN
0.000 s
0.682 s
1.365 s
2.047 s
2.729 s
3.411 s
4.094 s
4.776 s
5.45
Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
89.59 kV
-89.66 kV
VoltageAtTLBUS1PhaseAN
2.421 s
2.512 s
2.603 s
2.694 s
2.785 s
2.875 s
2.966 s
3.057 s
3.148 s
4. Compute and graph the frequency of the voltage over the entire data record. Use one cycle sliding window. Figure 3. Graph of the frequency of the voltage over a sliding window of one cycle in Matlab Figure 4. Graph of the frequency of the voltage over a sliding window of one cycle in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
60.06 Hz
59.94 Hz
FrequencyFromVoltage = FREQ(VoltageAtTLBUS1PhaseAN,60.0)
0.175 s
0.825 s
1.475 s
2.125 s
2.775 s
3.425 s
4.075 s
4.725 s
5.375 s
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
5. Compute and graph the magnitude of the fundamental frequency voltage phasor over the entire data record. Use one cycle sliding window. Figure 5. Graph of the magnitude of the voltage over a sliding window of one cycle in Matlab Figure 6. Graph of the magnitude of the voltage over a sliding window of one cycle in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
64.01 kV
59.02 kV
VoltageMagnitude = RMS(VoltageAtTLBUS1PhaseAN,60.0)
0.175 s
0.825 s
1.475 s
2.125 s
2.775 s
3.425 s
4.075 s
4.725 s
5.375
6. Compute and graph the phase angle of the fundamental frequency voltage phasor over the entire data record. Use one cycle sliding window. Figure 7. Graph of the phase angle of the voltage over a sliding window of one cycle in Matlab Figure 8. Graph of the phase angle of the voltage over a sliding window of one cycle in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
39.52 Degrees
26.90 Degrees
PhaseOfVoltage = PHASE(VoltageAtTLBUS1PhaseAN,60.0,1)
0.175 s
0.825 s
1.475 s
2.125 s
2.775 s
3.425 s
4.075 s
4.725 s
5.375
7. Repeat 3 through 6 for the current.
Figure 9. Graph of the current waveform plotted in Matlab
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Figure 10. Graph of the current: Upper trace: over the entire data record, Lower trace: Zoom-in view plotted in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
174.4 A
-174.3 A
CurrentAtTLBUS1PhaseALineX
0.175 s
0.825 s
1.475 s
2.125 s
2.775 s
3.425 s
4.075 s
4.725 s
5.375
Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
172.5 A
-172.6 A
CurrentAtTLBUS1PhaseALineX
2.949 s
2.972 s
2.995 s
3.019 s
3.042 s
3.065 s
3.088 s
3.111 s
3.134
Figure 11. Graph of the frequency of the current over a sliding window of one cycle in Matlab Figure 12. Graph of the frequency of the current over a sliding window of one cycle in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
60.06 Hz
59.94 Hz
FrequencyFromCurrent = FREQ(CurrentAtTLBUS1PhaseALineX,60.0)
62.54 ms
0.728 s
1.394 s
2.060 s
2.726 s
3.392 s
4.058 s
4.724 s
5.39
Figure 13. Graph of the magnitude of the current over a sliding window of one cycle in Matlab Figure 14. Graph of the magnitude of the current over a sliding window of one cycle in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
123.4 A
113.6 A
CurrentMagnitude = RMS(CurrentAtTLBUS1PhaseALineX,60.0)
62.54 ms
0.728 s
1.394 s
2.060 s
2.726 s
3.392 s
4.058 s
4.724 s
5.39
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Figure 15. Graph of the phase angle of the current over a sliding window of one cycle in Matlab Figure 16. Graph of the phase angle of the current over a sliding window of one cycle in WinXFM Station: Use Case 01: ECE6323Homework02
IED: Recording Start: January 24, 2022 - 00:25:52.000000
Trigger Time: January 24, 2022 - 00:25:52.000000
-163.2 Degrees
-175.9 Degrees
PhaseOfCurrentPhasor = PHASE(CurrentAtTLBUS1PhaseALineX,60.0,1)
62.54 ms
0.728 s
1.394 s
2.060 s
2.726 s
3.392 s
4.058 s
4.724 s
5.390
Here is what to do for each iteration: where , k is the index of the data point in the COMTRADE file, k = 1: length of the data set N is the number of samples per cycle. In this case, N = 160 samples/cycle After step 4, the frequency, amplitude, and phase angle are all calculated. Generate the plots with the calculated results. 0
0
2
f
w
p
=
0
60
f
Hz
=
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Related Documents
Related Questions
I have a wooden toy train that runs on wooden tracks. I would like to place two ESP-WROOM-32 Boards on top of the train. Broadcast communication (which involves radio frequency, not Wi-Fi) would help communicate about the train's lateness to five other wooden trains on the same track. Local communication would help communicate to the train station about the train's lateness. I would also need radio frequency Tx-Rx Modules for discharging and undergoing the signal, and repeaters just in case the signal loses power due to long-distance traveling. My wooden train should be automated. It should run at 4 inches per second, keep a minimum distance of 30 seconds away from the other wooden trains, and make a 17-second-long stop every 500 seconds.
What's the procedure to connect the components?
What's the Arduino code (C++) for this project?
arrow_forward
Explain the importance of power system stability in electrical engineering.
arrow_forward
4. Explain the relationship between back emf E, terminal voltage V and coil voltage
drop IR in DC motor and generator respectively.
i. Describe how the field strength affect the performance of DC motor and generator.
ii. Explain how an external resister changes the DC motor and generator
performance.
arrow_forward
ELECTRIC MACHINERY
do the (iii, iv v)
arrow_forward
Discuss the importance of power delivery components like voltage regulators and capacitors on a motherboard and their impact on system stability and overclocking.
arrow_forward
7.a. Photoelectric eye alignment is typically a PM task for a(n)A. electrician.B. lubricator.C. machine operator.D. mechanic.7.b. Mean time before failure describesA. how long it will take between failures at your plant.B. how long before one component in a group will fail.C. how a failure will occur on a component that’s inside a machine.D. the amount of time a component will last when it’s heavily loaded.7.c. Under an ISO 9000 program, which one of the following employees is responsible for checkingcompleted work to make sure it has been performed to company specifications?A. The maintenance general managerB. The PM program administratorC. A shop foremanD. A maintenance technician
arrow_forward
Explain the principles of power system stability and the role of voltage and frequency control in preventing system instability.
arrow_forward
Draw the basic block diagram of AC – DC transmission system.
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

EBK ELECTRICAL WIRING RESIDENTIAL
Electrical Engineering
ISBN:9781337516549
Author:Simmons
Publisher:CENGAGE LEARNING - CONSIGNMENT

Related Questions
- I have a wooden toy train that runs on wooden tracks. I would like to place two ESP-WROOM-32 Boards on top of the train. Broadcast communication (which involves radio frequency, not Wi-Fi) would help communicate about the train's lateness to five other wooden trains on the same track. Local communication would help communicate to the train station about the train's lateness. I would also need radio frequency Tx-Rx Modules for discharging and undergoing the signal, and repeaters just in case the signal loses power due to long-distance traveling. My wooden train should be automated. It should run at 4 inches per second, keep a minimum distance of 30 seconds away from the other wooden trains, and make a 17-second-long stop every 500 seconds. What's the procedure to connect the components? What's the Arduino code (C++) for this project?arrow_forwardExplain the importance of power system stability in electrical engineering.arrow_forward4. Explain the relationship between back emf E, terminal voltage V and coil voltage drop IR in DC motor and generator respectively. i. Describe how the field strength affect the performance of DC motor and generator. ii. Explain how an external resister changes the DC motor and generator performance.arrow_forward
- ELECTRIC MACHINERY do the (iii, iv v)arrow_forwardDiscuss the importance of power delivery components like voltage regulators and capacitors on a motherboard and their impact on system stability and overclocking.arrow_forward7.a. Photoelectric eye alignment is typically a PM task for a(n)A. electrician.B. lubricator.C. machine operator.D. mechanic.7.b. Mean time before failure describesA. how long it will take between failures at your plant.B. how long before one component in a group will fail.C. how a failure will occur on a component that’s inside a machine.D. the amount of time a component will last when it’s heavily loaded.7.c. Under an ISO 9000 program, which one of the following employees is responsible for checkingcompleted work to make sure it has been performed to company specifications?A. The maintenance general managerB. The PM program administratorC. A shop foremanD. A maintenance technicianarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- EBK ELECTRICAL WIRING RESIDENTIALElectrical EngineeringISBN:9781337516549Author:SimmonsPublisher:CENGAGE LEARNING - CONSIGNMENT

EBK ELECTRICAL WIRING RESIDENTIAL
Electrical Engineering
ISBN:9781337516549
Author:Simmons
Publisher:CENGAGE LEARNING - CONSIGNMENT
