0% found this document useful (0 votes)
40 views7 pages

Lab 10

This document describes analyzing transmission line capacitance for single-phase and three-phase systems in MATLAB. It discusses the capacitance of symmetrical three-phase lines and calculations for unsymmetrical spacing. The MATLAB code demonstrates calculating capacitance for single-phase, symmetrical three-phase, and unsymmetrical three-phase transmission lines by prompting the user for input parameters.
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)
40 views7 pages

Lab 10

This document describes analyzing transmission line capacitance for single-phase and three-phase systems in MATLAB. It discusses the capacitance of symmetrical three-phase lines and calculations for unsymmetrical spacing. The MATLAB code demonstrates calculating capacitance for single-phase, symmetrical three-phase, and unsymmetrical three-phase transmission lines by prompting the user for input parameters.
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/ 7

Power Transmission and Distribution Lab 10

Analysis of Transmission line Capacitance for Single and three phase


system in MATLAB
Objective
• Analysis of Transmission Line Parameter Capacitance for Single and Three phase system in
MATLAB

Software Required
• MATLAB

Theory

The transmission lines are modeled by means of the parameters resistance, inductance,
capacitance and conductance. Resistance and inductance together is called transmission line
impedance. Also capacitance and conductance in parallel is called admittance, here we are
not going to derive the formulas rather to develop some concepts

Capacitance
Capacitance of the symmetrical three-phase line
Let a balanced system of voltage be applied to a symmetrical three-phase-line shown below

Figure 10.1: Three Phase Line with Equilateral spacing


Power Transmission and Distribution Lab 10

The potential difference between conductor a and b can be written as

Similarly, potential difference between conductors a and c is

The line-to-neutral capacitance


Power Transmission and Distribution Lab 10

The capacitance of symmetrical three-phase line is same as that of the two-wire line.

Capacitance Calculation in Unsymmetrical Spacing


The calculation of capacitance in case of conductors in three phase system which are not
equally spaced is difficult. If the line is untransposed the capacitances of each phase to
neutral is not same.
In case of transposed line the average capacitance of each line to neutral over a complete
transposition cycle is same as the average capacitance to neutral of any other phase. Each
conductor occupies the same position of every other conductor after equal distance. The
effect of unsymmetry between the lines is small and calculations are carried out by
considering transposition of lines.
The Fig. 1 shows three phase line with unsymmetrical spacing. The radius of each
conductor is r.

Figure:10.2

When phase 'a' is in position 1, 'b' in position 2 and 'c' is in position 3.

When phase 'a' is in position 2, 'b' in position 3 and 'c' is in position 1.

When phase 'a' is in position 3, 'b' in position 1 and 'c' is in position 2.

Average voltage between conductors 'a' and 'b' is given by


Power Transmission and Distribution Lab 10

Similarly average voltage drop between a and c is given by,

We have, Vab + Vac = 3 Van

For balanced circuit (qa + qb + qc ) = 0


Power Transmission and Distribution Lab 10

Flow Chart

Experimental Procedure
Power Transmission and Distribution Lab 10

MATLAB Code

c=input('Enter 1 for single phase and 2 for three phase transmission line ');
if (c==1)
r=input('input the radius in meter =');
d= input('input distance between conductor / wires =');
X=2*3.1415*8.85*10^-12;
Y=log(d/r);
C=X/Y;
disp('Total Capacitance ');
disp(C);
elseif (c==2)
c1=input('1 for symmetric and 2 for unsymmetrical =');
if (c1==1)
r=input('input the radius in meter =');
d= input('input distance between conductor / wires =');
X=2*3.1415*8.85*10^-12;
Y=log(d/r);
C=X/Y;
disp('Total Capacitance ');
disp(C);
elseif (c1==2)
r=input('input the radius in meter =');
D12=input('input distance between conductor/wires 1&2 =');
D23=input('input distance between conductor/wires 2&3 =');
D31=input('input distance between conductor/wires 3&1 =');
Dm=(D12*D23*D31)^(1/3);
X=2*3.1415*8.85*10^-12;
Y=log(Dm/r);
C=X/Y;
disp('Total Capacitance ');
disp(C);
end
end

MATLAB Result’s;

Enter 1 for single phase and 2 for three phase transmission line 2

1 for symmetric and 2 for unsymmetrical =2

input the radius in meter =0.0462*0.3048

input distance between conductor/wires 1&2 =20*0.3048

input distance between conductor/wires 2&3 =38*0.3048

input distance between conductor/wires 3&1 =20*0.3048

Total Capacitance

8.8479e-12
Power Transmission and Distribution Lab 10

Conclusion

You might also like