PSA8
PSA8
Lab Report 8
Development and analysis of a nominal π model of a medium transmission line
Name:Abdul Rahman
Section: B(Power)
Roll no. 06
COURSE INSTRUCTOR: Dr Muhammad Arif
LAB INSTRUCTORS: Sir Bilal Nadeem, Mam Javeria
Pakistan Institute of Engineering And Applied Science
Department of Electrical Engineering
III. T HEORY Following are the equation for finding the sending end
voltage and current using ABCD parameters.
The series impedance of the line is concentrated in the .
centre of the nominal pi model of a medium transmission V s = AVR + BIR
line, and half of each capacitance is put at the centre of the Is = CVR + DIR
line. A medium transmission line is one that has an effective .
length of more than 80 kilometres (50 miles) but less than these ABCD parameters are represented as
250 kilometres (150 miles). Because the line charging current .
of a medium transmission line is greater than that of a short A = (1 + ZY /2) = D
transmission line, the shunt capacitance must be addressed. B=Z
The admittance (”Y”) of the ABCD circuit parameters captures C = Y (1 + ZY /4)
this shunt capacitance. The nominal Pi model of the line is .
shown in the diagram below. In this Z shows the series impedance of the transmission line
and Y represent the shunt admittance of the medium length
transmission line.
V. TASK 1
A. Question
Write a MATLAB function named [ABCD] = abcdm(z, y,
Length) to evaluate and return the ABCD transmission matrix
for a medium-length transmission line where z is the per phase
series impedance per unit length, y is the shunt admittance per
Fig. 1. Nominal π model for medium transmission line unit length, and Length is the line length.
B. Code for task B. Result for task 3
function [ABCD] = abcdk(z, y, Length)
Z = z*Length;
Y = y*Length;
A = (1+Z*Y/2);
B = Z;
C = Y*(1+ Z*Y/4);
D= A;
[ABCD] = [A B;C D];
end
VI. TASK 2
A. Question Fig. 3. Result for Task 3
VIII. D ISCUSSION
We created a notional model for a medium-length transmis-
sion line in the experiment. When the transmission line length
is between 80 and 250 kilometres, it is referred to as medium
transmission. We will come across the ABCD parameters
when analysing the transmission line model utilising a two-
port setup. ABCD characteristics are required to determine the
transmitting end current and voltage. Our 98 percent efficiency
indicates that our transmission line has extremely little loss,
and the findings reveal that there is very little reactive power
at the receiving end.
IX. C ONCLUSION
Overall, we learned a lot about medium line transmission
lines in this experiment, and we developed the nominal pi
model for medium line transmission lines. We also learned
how to generate functions in MATLAB during the exercise,
and the lab experiment was generally highly instructive and
enjoyable.