0% found this document useful (0 votes)
58 views2 pages

Ferranti Effect Simulation in MATLAB

This case study investigates the Ferranti effect in a 5000 km transmission line using MATLAB, focusing on calculating the ABCD parameters and plotting the locus of sending-end voltage. The study concludes that the receiving-end voltage can exceed the sending-end voltage in long, lightly loaded transmission lines due to distributed capacitance. The simulation effectively visualizes the voltage changes along the line length.

Uploaded by

MZGIN Barwary
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)
58 views2 pages

Ferranti Effect Simulation in MATLAB

This case study investigates the Ferranti effect in a 5000 km transmission line using MATLAB, focusing on calculating the ABCD parameters and plotting the locus of sending-end voltage. The study concludes that the receiving-end voltage can exceed the sending-end voltage in long, lightly loaded transmission lines due to distributed capacitance. The simulation effectively visualizes the voltage changes along the line length.

Uploaded by

MZGIN Barwary
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

UNIVERSITY OF DUHOK

College of Engineering
Electrical and Computer Engineering Department

Case Study: Simulation of Ferranti Effect In


Transmission Lines Using MATLAB

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

Given Data:
- Line length (l) = 5000 km
- Frequency (f) = 50 Hz
- Resistance, R = 0.125 Ω/km
- Reactance, X = 0.4 Ω/km
- Admittance, Y = 2.8 × 10■■ mho/km
- Receiving-end voltage, VR = 220 kV (line-to-line)

Objective:
To determine the ABCD parameters of the transmission line, then calculate:
a) Sending end current and sending end voltage.
b) Line current at 200 km from the receiving end.
c) Voltage at 200 km from the receiving end.

Theoretical Solution:
For a long transmission line, the distributed parameters are considered and the ABCD constants
are obtained from the nominal π model or from hyperbolic functions as follows:

Let Z = (R + jX) × l and Y = jB × l, where per km values are used.


Characteristic impedance:
Zc = √(Z/Y)
Propagation constant:
γ = √(ZY)

Then the ABCD parameters are:


A = D = cosh(γl)
B = Zc sinh(γl)
C = (1/Zc) sinh(γl)

For the receiving end open-circuited, IR = 0, hence


VS = A × VR
and the Ferranti effect is the increase of sending-end voltage over the receiving-end voltage at
no-load due to line capacitance.

MATLAB Program: % Simulation of Ferranti Effect in Transmission Lines clear; clc; close all; %
Given data R = 0.125; % Resistance per km (ohm/km) X = 0.4; % Reactance per km (ohm/km) Y =
2.8e-6; % Admittance per km (mho/km) f = 50; % Frequency (Hz) Vr = 220e3; % Receiving end
voltage (V) phi = 0; % Assume reference angle % Total length of line Lmax = 5000; % in km dL =
10; % step size l = 0:dL:Lmax; Vs = zeros(size(l)); for i = 1:length(l) Z = (R + 1j*X) * l(i); Yl = 1j * Y *
l(i); gamma = sqrt((R + 1j*X) * (1j*Y)); Zc = sqrt((R + 1j*X) / (1j*Y)); A = cosh(gamma * l(i)); B = Zc *
sinh(gamma * l(i)); C = (1/Zc) * sinh(gamma * l(i)); D = A; % Open circuit (IR = 0) Vs(i) = A * Vr *
exp(1j * phi); end % Plot locus of sending end voltage figure; plot(real(Vs)/1e3, imag(Vs)/1e3, 'b',
'LineWidth', 1.5); xlabel('Real(Vs) [kV]'); ylabel('Imag(Vs) [kV]'); title('Locus of Sending End Voltage
(Ferranti Effect)'); grid on; % Display result at full length Vs_end = Vs(end); fprintf('Sending end
voltage magnitude: %.2f kV\n', abs(Vs_end)/1e3);

Conclusion:
The Ferranti effect demonstrates that in long, lightly loaded or open-circuited transmission lines, the
receiving end voltage can become greater than the sending end voltage due to the line’s distributed
capacitance. This simulation verifies the effect and visualizes how voltage magnitude changes
along the line length.

References:
1. Stevenson, W. D., “Elements of Power System Analysis.”
2. Grainger, J. J., and Stevenson, W. D., “Power System Analysis.”
3. MATLAB Documentation, MathWorks Inc.

Common questions

Powered by AI

The Ferranti effect has significant implications for power system stability and design. An increase in receiving-end voltage can lead to over-voltage conditions, stressing equipment insulation and potentially causing damage or failure. This necessitates careful design considerations for long transmission lines, including compensating devices or control systems to manage voltage levels appropriately and enhance system reliability and safety .

The simulation of the Ferranti effect verifies theoretical expectations by graphically demonstrating the increase in voltage from one end of the transmission line to the other under no-load conditions, consistent with theoretical predictions of voltage increases due to line capacitance. The MATLAB simulations plot the locus of sending-end voltage and match expected outcomes of line length effects, confirming theoretical models with practical simulation results .

In long transmission lines, distributed parameters such as resistance, inductance, capacitance, and conductance along the whole line length significantly impact voltage and current distribution. For accurate analysis of effects like the Ferranti effect, where the voltage can increase along the line, these parameters need to be considered as they determine the voltage drop and power losses accurately along the entire line, rather than assuming a lumped parameter model which might oversimplify the dynamics .

MATLAB facilitates the study of transmission line effects like the Ferranti effect by allowing the simulation and visualization of voltage distribution along transmission lines. It enables the calculation of ABCD parameters using matrices and complex numbers, plots the locus of voltage, and helps visualize the increase in voltage along the line, thus verifying theoretical predictions through clear, graphical representation .

The Ferranti effect occurs in long, lightly loaded, or open-circuited transmission lines where the receiving-end voltage becomes higher than the sending-end voltage. This phenomenon is due to the distributed capacitance of the line. It is demonstrated by observing the voltage increase along the transmission line as plotted in MATLAB, where the sending end voltage exceeds the designed receiving end voltage when the line is not under full load .

The characteristic impedance (Zc) is crucial in understanding voltage propagation along transmission lines as it defines the relationship between voltage and current waves traveling through the line. During the Ferranti effect, the characteristic impedance influences the voltage rise along the line by affecting the hyperbolic sine function calculations for the ABCD parameters, thereby affecting how the voltage magnitude changes along the line length under open-circuit conditions .

To simulate the Ferranti effect accurately in MATLAB, one must configure factors such as resistance, reactance, and admittance per km of the line, the frequency, the total length of the line, and step size for calculation iterations. These parameters define the line's electrical behavior and impact calculations for voltage distribution, enabling accurate simulation and visualization of the Ferranti effect .

The propagation constant (γ) characterizes how voltage and current waves attenuate and change phase as they travel along a transmission line. In the context of the Ferranti effect, it is used to calculate the ABCD parameters, contributing to the understanding of voltage increase along the line. It combines the effects of the line's resistance and reactance, and the admittance, encapsulating the electrical behavior influencing transmission line phenomena .

The ABCD parameters, derived using hyperbolic functions, describe the relationship between sending-end and receiving-end voltages and currents in transmission lines. For the Ferranti effect analysis, these parameters, particularly under no-load conditions, demonstrate how the receiving-end voltage can become greater than the sending-end voltage due to the capacitance causing an increase in voltage from VS = A × VR, with IR = 0 .

Mathematical models such as the nominal π model or hyperbolic function models are used for calculating the ABCD parameters in transmission lines. These models account for distributed parameters like resistance, reactance, and admittance, facilitating the calculation of characteristic impedance and propagation constants required for understanding the line's behavior and effects like the Ferranti effect .

You might also like