Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

EX NO:

DATE: FAULT ANALYSIS

PROGRAM:

133 = j*0.22; Z033 = j*0.35; Zf = j*0.1;


disp('(a) Balanced three-phase fault at bus 3')
Ia3F = 1.0/(Z133+Zf)
disp('(b) Single line-to-ground fault at bus 3')
I03 = 1.0/(Z033 + 3*Zf + Z133 + Z133);
I012=[I03; I03; I03]
global sctm
a =cos(2*pi/3)+j*sin(2*pi/3);
sctm = [1 1 1; 1 a^2 a; 1 a a^2];
Iabc3 = sctm*I012
disp('(c) Line-to-line fault at bus 3')
I13 = 1.0/(Z133 + Z133 + Zf);
I012 = [0; I13; -I13]
Iabc3 = sctm*I012
disp('(d) Double line-to-ground fault at bus 3')
I13 = 1/(Z133 + Z133*(Z033+3*Zf)/(Z133+Z033+3*Zf));
I23 = -(1.0 - Z133*I13)/Z133;
I03 = -(1.0 - Z133*I13)/(Z033+3*Zf);
I012 = [I03; I13; I23]
Iabc3 = sctm*I012

OUTPUT:
(a) Balanced three-phase fault at bus 3

Ia3F =

0 - 3.1250i

(b) Single line-to-ground fault at bus 3

I012 =

0 - 0.9174i
0 - 0.9174i
0 - 0.9174i
Iabc3 =

0 - 2.7523i
0.0000 + 0.0000i
0.0000 + 0.0000i

(c) Line-to-line fault at bus 3

I012 =

0
0 - 1.8519i
0 + 1.8519i

Iabc3 =

0
-3.2075 + 0.0000i
3.2075 - 0.0000i

(d) Double line-to-ground fault at bus 3

I012 =

0 + 0.6579i
0 - 2.6017i
0 + 1.9438i

Iabc3 =

0 + 0.0000i
-3.9365 + 0.9868i
3.9365 + 0.9868i

(a) Balanced three-phase fault at bus 3

Ia3F =

0 - 3.1250i

(b) Single line-to-ground fault at bus 3

I012 =

0 - 0.9174i
0 - 0.9174i
0 - 0.9174i

Iabc3 =

0 - 2.7523i
0.0000 + 0.0000i
0.0000 + 0.0000i

(c) Line-to-line fault at bus 3

I012 =

0
0 - 1.8519i
0 + 1.8519i

Iabc3 =

0
-3.2075 + 0.0000i
3.2075 - 0.0000i

(d) Double line-to-ground fault at bus 3

I012 =

0 + 0.6579i
0 - 2.6017i
0 + 1.9438i

Iabc3 =

0 + 0.0000i
-3.9365 + 0.9868i
3.9365 + 0.9868i

You might also like