Lab 10
Lab 10
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
The capacitance of symmetrical three-phase line is same as that of the two-wire line.
Figure:10.2
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
Total Capacitance
8.8479e-12
Power Transmission and Distribution Lab 10
Conclusion