Ex 9
Ex 9
No of Experiment: 09
Experiment Name : Write a generalized MATLAB program to model a transmission line using π and T model using MATLAB and
Simulink.
Theory:
Nominal T Method
In Nominal T model of Transmission line, the whole shunt capacitance of line is assumed to be lumped at the middle of the line. The
half of the line resistance and reactance is assumed at either side of the shunt capacitance as shown in figure below. Due to such
modeling of line, capacitive charging current is flowing through half of the transmission line. Mind that, this is not the case i. In End
Condenser method, capacitive charging current flows through the entire line as shunt capacitance is assumed to be lumped at the
receiving end.
Let us now try to find the sending end voltage and current. For that, we will apply kirchhof’s law. Each parameter is shown in figure
above with their meaning.
Therefore,
Vs = (R/2 + jX/2)Is + V1
Let us now take the receiving end voltage as reference and assume that receiving end current or load current is lagging by some angle
ØR.
Therefore,
VR = VR + j0
2
As the current through the shunt capacitor lead by an angle 90° with respect to voltage across it i.e. V1, therefore
Ic = jωCV1
Thus by putting the value of V1 from equation (1) in equation (4), sending end current can be found. Similarly, the sending end
voltage can be calculated by putting the value of Is in equation voltage regulation ( can also be calculated as we know the sending and
receiving end voltage.
See, I haven’t used phasor diagram to find these parameters. The phasor diagram for Nominal T method is shown below.
Nominal π Method
In Nominal π Method, the shunt capacitance of each line i.e. phase to neutral is divided into two equal parts. One part is lumped at the
sending end while the other is lumped at receiving end as shown in figure below.
3
Notice that, in this method there is no effect of shunt capacitance at sending end on the line voltage drop and hence on voltage
regulation but this accounts for the charging current in sending end.
Let
Let us now draw the phasor. Assume receiving end voltage VR as reference and load current IR lagging this voltage by ØR.
4
Therefore,
VR = VR + j0
Now,
Thus sending end current and voltage is calculated as above and from these parameters the performance line is evaluated.
MATLAB CODE:
clc;
clear;
z = (r + 1i * xl) * linelength;
5
y = (g + 1i * xc) * linelength;
if networktype == 1
a = 1 + (z * y / 2);
b = z;
c = y * (1 + z * y / 4);
d = a;
else
a = 1 + (z * y / 2);
b = z * (1 + z * y / 4);
c = y;
d = a;
end
qr = pr * tan(acos(powerfactorr));
sr = pr + 1i * qr;
ir = conj(sr / (3 * vrp));
vs = sendingend(1);
is = sendingend(2);
ps = real(3 * vs * conj(is));
CIRCUIT DIAGRAM:
Result and Discussion: In this experiment, by using the MATLAB Simulink software, we have solved the math problem and
determined the transmission line parameters .Then by simulation we have constructed the transmission t model and pi model where
their respective blocks represent the receiving end power,voltage regulation,and transmission efficiency.The output of the MATLAB
problem have same answer with the manual calculation which satisfied our lab experiment .