You are on page 1of 2

,

Long Transmission line:

Source code:

ck·
'
clear all;
1=2 1O·
'
prt=40;
v=220;
pf=0.8;
zt=0. l 25+0.5*% i;
yt=3.321 *10"-6*%i;
vr=(v* 10"3)/sqrt(3);
pr=prt* l 0"6;
z=zt*l;
y=yt*l;
I 1=pr/(3 *pfl'vr);
phi=acos(pf);
ir=Il *(cos(phi)-sin(phi)*%i);
disp(ir);
a- cosh(sqrt(z*y));
d=a·
'
b=(sq rt(z/y))*sinh(sqrt(z*y));
c=( sq1t(y/z) )*sinh( sqrt(z*y));
Abcd=a*d-b*c;
disp('value of a = '+string(a));
disp('value of b ='+stri ng(b));
disp('value of c ='+stri ng( c ));
disp('valu e of d -='+string(d));
disp('value of Abed -='+string(Abcd));
vs=a*vr+b* ir;
is=c*vr+d*ir;
spower=v s* conj (is);
rpower=vr* conj (ir);
eff=real(r power)/real(spower );
reg=((( abs(vs )/abs(a))- abs(vr))/abs(vr))* 100;
nlv=(abs(vs )/abs(a));
printtl'abc d parameter is %.2t\n',Abcd);
printf('eff icienc:y is %.2t\n',ef f" 100);
printf('reg ulation is % .2t\n',reg) ;
printf('no load recieving voltage is %.2t\n',nlv);

Output:
value.of a = 0.963595+i *0.0090422

value of b = 25.612693+i*103.80241

value of e =-0.0000021+i*0.0006889

value of d = 0.963595+i*0.0090422

value of Abed= l+i*l.041D-17

abed parameter is 1.00

efficiency is 97.58

regulation is 9.18

no load recieving voltage is 138673.31

You might also like