I need a code for matlab to solve this problem 6.16 A three-phase tranmission li
ID: 2291787 • Letter: I
Question
I need a code for matlab to solve this problem
Explanation / Answer
clc;clear;
%Z = R.*exp(i*theta)
P = 345e3*exp(i*0);
P_load =400e6*exp(-i*pi*(acos(0.8)*180/pi/180));
A = 0.8180*exp(i*pi*(1.3/180));
D = 0.8180*exp(i*pi*(1.3/180));
B = 172.2*exp(i*pi*(84.2/180));
C = 0.001933*exp(i*pi*(90.4/180));
Vr = P/sqrt(3);
Ir = P_load /(sqrt(3)*P);
% -----------------------------
Vs = A * Vr + B * Ir;
Is = C * Vr + A * Ir;
Voltage_Drop = (abs(Vs) - abs(Vr))/abs(Vs)*100
% ----------------------------
Vr_NL = Vs / A ;
Is_NL = C * Vr_NL ;
% -------------------
Per_Regulaation = (abs(Vr_NL) - abs(Vr))/abs(Vr)*100
-----------------------------------------------------------
Result:
Command Window:
Voltage_Drop =
22.4161
Per_Regulaation =
57.5706
>>
---------------------------------
to check absolute value and angle use following command
i.e to check Vr_NL in phasor form
abs(Vr_NL) and angle(Vr_NL)*180/pi
--------------------------------------
Dont Forget to Hit LIKE....
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.