PSS Lab Experiment 1
PSS Lab Experiment 1
AIM :
To determine the positive sequence line parameters L and C per phase per kilometer of a
three phase single and double circuit transmission lines for different conductor arrangements.
OBJECTIVES :
THEORY:
EXERCISE-1
1. A three-phase transposed line composed of one ACSR, 1,43,000 cmil, 47/7 Bobolink
conductor per phase with flat horizontal spacing of 11m between phases a and b and
between phases b and c. The conductors have a diameter of 3.625 cm and a GMR of 1.439
cm. The line is to be replaced by a three-conductor bundle of ACSR 477,000-cmil, 26/7
Hawk conductors having the same cross sectional area of aluminum as the single-conductor
line. The conductors have a diameter of 2.1793 cm and a GMR of 0.8839 cm. The new line
will also have a flat horizontal configuration, but it is to be operated at a higher voltage and
therefore the phase spacing is increased to 14m as measured from the center of the bundles.
The spacing between the conductors in the bundle is 45 cm.
(a) Determine the inductance and capacitance per phase per kilometer of the above two
lines.
(b) Verify the results using the MATLAB program.
Power System Simulation Lab/EE8711
Power System Simulation Lab/EE8711
Power System Simulation Lab/EE8711
Power System Simulation Lab/EE8711
PROGRAM:
clc;
Dab=input('enter value of Dab :\n');
Dbc=input('enter the value Dbc :\n');
D=input('enter the value of diameter :\n')*0.01;
n=input('Enter the number of conductors in the bundle :\n');
Dca=Dab+Dbc;
r=(D/2);
Ds=r*exp(-1/4);
Gmd=(Dab*Dbc*Dca)^(1/3);
if n==0
GMRL=Ds;
Gmrc=r;
elseif n<4
d=input('Enter the bundle spacing : \n')*0.01;
GMRL=(Ds*(d^(n-1)))^(1/n);
Gmrc=(r*(d^(n-1)))^(1/n);
else
d=input('Enter the bundle spacing : \n')*0.01;
GMRL=1.09*(Ds*(d^(n-1)))^(1/n);
Gmrc=1.09*(r*(d^(n-1)))^(1/n);
end
L=(0.2*log(Gmd/GMRL));
C=(0.0556/log(Gmd/Gmrc));
fprintf('\n\nThe VALUE OF INDUCTANCE : \n L = %d mH/km \n',L)
fprintf('\n\nThe VALUE OF CAPACITANCE : \n C = %d F/km \n',C)
MATLAB OUTPUT :
C = 8.374241e-03 F/km
INFERENCE :
1. If the number of conductors increases per phase (bundled conductors) then the value of
GMR increases and hence L decrease because of which reactance is reduced and hence
maximum power transfer capability of the line increases and also the voltage regulation
of the line increases due to reduced reactance of the line.
2. Increase of capacitance increases the net surge impedance loading (SIL) of the line and
hence power transfer capability too.
3. The most important advantage of bundled conductors is its ability to reduce corona
discharge.
RESULT :
Thus the line constant parameters L and C per phase per kilometer of a three
phase single and double circuit transmission lines for different conductor arrangements are
determined and verified with using MATLAB.