0% found this document useful (0 votes)
9 views5 pages

Tugas10ASTL2

The document contains a MATLAB program for analyzing electrical faults in a power system, including positive and zero-sequence reactance data for generators and lines. It performs fault analysis for line-to-ground, line-to-line, and double line-to-ground faults, providing results such as total fault current and bus voltages during faults. The analysis is demonstrated with specific fault scenarios at different buses, showing detailed voltage and current magnitudes for each case.

Uploaded by

Freeze
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views5 pages

Tugas10ASTL2

The document contains a MATLAB program for analyzing electrical faults in a power system, including positive and zero-sequence reactance data for generators and lines. It performs fault analysis for line-to-ground, line-to-line, and double line-to-ground faults, providing results such as total fault current and bus voltages during faults. The analysis is demonstrated with specific fault scenarios at different buses, showing detailed voltage and current magnitudes for each case.

Uploaded by

Freeze
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Kode Program Matlab

% Positif-sequence reactance
zdata1 = [ 0 1 0 0.20 % Gen G1
0 2 0 0.15 % Gen G2
0 3 0 0.25 % Gen G3
1 4 0 0.225
1 5 0 0.105
1 6 0 0.215
2 4 0 0.035
3 5 0 0.042
4 6 0 0.125
5 6 0 0.175 ];

% Zero-sequence reactance
zdata0 = [ 0 1 0 0.06 % Gen G1
0 2 0 0.09 % Gen G2: X0 + Xn = 0.04 + 0.05
0 3 0 0.08 % Gen G3
1 4 0 0.400
1 5 0 0.200
1 6 0 0.390
2 4 0 0.035
3 5 0 0.042
4 6 0 0.250
5 6 0 0.350
3 0 0 0.10 ]; % Grounding reactor for ?-Y transformer

% Zbus1 dan Zbus0


Zbus1 = zbuild(zdata1);
Zbus2 = Zbus1;
Zbus0 = zbuild(zdata0);

% Tegangan awal semua bus = 1?0°


V = ones(6,1);

% Jalankan fault analysis (single/line-to-line/double-line-to-ground)


lgfault(zdata1, Zbus1, zdata0, Zbus0, V); % Line-to-ground fault
Llfault(zdata1, Zbus1, zdata1, Zbus1, V); % Line-to-line fault
Dlgfault(zdata0, Zbus0, zdata1, Zbus1, zdata1, Zbus1, V); % Double-line-
to-ground

Hasil Setelah di Run


Tugas10ASTL2

Line-to-ground fault analysis


Enter Faulted Bus No. -> 3

Enter Fault Impedance Zf = R + j*X in complex form (for bolted fault enter
0). Zf = 0

Single line to-ground fault at bus No. 3


Total fault current = 15.6168 per unit

Bus Voltages during the fault in per unit

Bus -------Voltage Magnitude-------


No. Phase a Phase b Phase c
1 0.6150 1.1583 1.1583
2 0.7806 1.0911 1.0911
3 0.0000 1.2629 1.2629
4 0.7236 1.1129 1.1129
5 0.1871 1.2059 1.2059
6 0.5308 1.1530 1.1530

Line currents for fault at bus No. 3

From To -----Line Current Magnitude----


Bus Bus Phase a Phase b Phase c
1 5 2.9958 1.2061 1.2061
1 6 0.2633 0.0268 0.0268
2 4 1.6277 1.0089 1.0089
3 F 15.6168 0.0000 0.0000
4 1 0.4332 0.3370 0.3370
4 6 1.1945 0.6718 0.6718
5 3 4.4536 1.9047 1.9047
6 5 1.4579 0.6987 0.6987
Another fault location? Enter 'y' or 'n' within single quote -> 'n'

Line-to-line fault analysis


Enter Faulted Bus No. -> 5

Enter Fault Impedance Zf = R + j*X in complex form (for bolted fault enter
0). Zf = 0

Line-to-line fault at bus No. 5


Total fault current = 7.7642 per unit

Bus Voltages during the fault in per unit

Bus -------Voltage Magnitude-------


No. Phase a Phase b Phase c
1 1.0000 0.5989 0.5989
2 1.0000 0.7422 0.7422
3 1.0000 0.5153 0.5153
4 1.0000 0.6892 0.6892
5 1.0000 0.5000 0.5000
6 1.0000 0.5781 0.5781

Line currents for fault at bus No. 5

From To -----Line Current Magnitude----


Bus Bus Phase a Phase b Phase c
1 5 0.0000 3.1403 3.1403
1 6 0.0000 0.1841 0.1841
2 4 0.0000 2.1169 2.1169
3 5 0.0000 2.9658 2.9658
4 1 0.0000 0.6430 0.6430
4 6 0.0000 1.4739 1.4739
5 F 0.0000 7.7642 7.7642
6 5 0.0000 1.6580 1.6580
Another fault location? Enter 'y' or 'n' within single quote -> 'n'

Double line-to-ground fault analysis


Enter Faulted Bus No. -> 1

Enter Fault Impedance Zf = R + j*X in complex form (for bolted fault enter
0). Zf = 0

Double line-to-ground fault at bus No. 1


Total fault current = 16.5792 per unit

Bus Voltages during the fault in per unit

Bus -------Voltage Magnitude-------


No. Phase a Phase b Phase c
1 0.7209 0.0000 0.0000
2 0.8106 0.5631 0.5631
3 0.7142 0.4365 0.4365
4 0.7748 0.4575 0.4575
5 0.6980 0.3246 0.3246
6 0.7403 0.2977 0.2977

Line currents for fault at bus No. 1

From To -----Line Current Magnitude----


Bus Bus Phase a Phase b Phase c
1 F 0.0000 12.3946 12.3946
2 4 1.0228 3.0504 3.0504
3 5 0.3852 2.6896 2.6896
4 1 0.5612 1.8581 1.8581
4 6 0.4616 1.1938 1.1938
5 1 0.5082 2.6281 2.6281
6 1 0.3386 1.2426 1.2426
6 5 0.1230 0.1173 0.1173
Another fault location? Enter 'y' or 'n' within single quote -> 'n'

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy