0% found this document useful (1 vote)
454 views2 pages

Ferranti Effect

This document contains a MATLAB program to simulate the Ferranti effect on a 5000 km transmission line. The program varies the length of the line from 0 to 5000 km in steps of 10 km and plots the sending end voltage phasor. The theoretical solution to finding the incident and reflected voltages at the receiving and 200 km points on the open-circuited line is also provided, but the calculations are not shown. The expected output plots the real and imaginary components of the sending end voltage over length, and the resultant voltage at 5000 km.

Uploaded by

Dhanunjay Kotra
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 (1 vote)
454 views2 pages

Ferranti Effect

This document contains a MATLAB program to simulate the Ferranti effect on a 5000 km transmission line. The program varies the length of the line from 0 to 5000 km in steps of 10 km and plots the sending end voltage phasor. The theoretical solution to finding the incident and reflected voltages at the receiving and 200 km points on the open-circuited line is also provided, but the calculations are not shown. The expected output plots the real and imaginary components of the sending end voltage over length, and the resultant voltage at 5000 km.

Uploaded by

Dhanunjay Kotra
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/ 2

B.E. 4/4 E.E.E. – 2nd Semester Power Systems Simulation Lab Manual v.

2014-15

E2 - MATLAB Program to Simulate Ferranti Effect


AIM: To find Ferranti effect of a 5000 kM transmission line and to plot the locus of
voltage for the given problem and verify results in MATLAB.

PROBLEM:
A 3-Phase 50 Hz transmission line is 5000 kM long. The line parameters are R=
0.125Ω/km,X= 0.4 Ω/km and Y= 2.8*10-6 mho/km. If the line is open circuited with
a receiving end voltage of 220KV, find the rms value and phase angle of the
following. Use the receiving-end line to neutral voltage as reference.
(a) The incident and reflected voltages to neutral at the receiving-end.
(b) The incident and reflected voltages to neutral at 200 km from the receiving-
end.
(c) The resultant voltage at 200 km from the receiving end.
Solve the problem theoretically. Vary the length of the long transmission
line in steps of 10 KM from zero (receiving end) to 5000KM (sending end),
and plot the sending end voltage phasor using MATLAB.
THEORY:
THEORETICAL SOLUTION:

MATLAB PROGRAM:
%Program to illustrate Ferranti effect
%it simulates the effect by varying the length of transmission line from
%zero(receiving end) to 5000km in steps of 10km
%and plots the sending end voltage phasor
clc
clear all

VR=220e3/sqrt(3);
alpha=0.163e-3;
beta=1.0683e-3;
L=5000;
k=1;

Department of E.E.E., Sir C.R.Reddy College of Engineering, Eluru, AP


Page 5 of 29
B.E. 4/4 E.E.E. – 2nd Semester Power Systems Simulation Lab Manual v. 2014-15

for i=0:10:L,
VS=(VR/2)*exp(alpha*i)*exp(j*beta*i)+(VR/2)*exp(-alpha*i)*exp(-j*beta*i);
X(k)=real(VS);
Y(k)=imag(VS);
k=k+1;
p(k)=VS;
q(k)=i;
end

figure(1);
plot(p,q)

figure(2);
plot(X,Y)

EXPECTED OUTPUT:

4
4
x 10 Resultant voltage at 5000km from recieving end x 10
4 15
Imaginary part of sending end voltage VS in volts

X: 200
0 Y: 1.242e+005
Resultant Voltage in KV

10
-2

-4

-6
5
-8

-10

-12
-1.5 -1 -0.5 0 0.5 1 1.5 0
Real part of sending end voltage VS in volts 5 0 500 1000 1500 2000 2500 3000 3500 4000 4500 5000
x 10 Length of line in Km

Commands used:

RESULT:

***************

Department of E.E.E., Sir C.R.Reddy College of Engineering, Eluru, AP


Page 6 of 29

You might also like