You are on page 1of 8

Q1.

Using MATLAB find the apparent power, power factor, and average power of load impedance
Z l=(10+last digit of your rollno)+ j(7 last digit of your rollno) supplied by a 120V AC
source.
V=120;
Z=15+12*i;
PF=cos(atan(imag(Z)/real(Z)));
I=V/Z;
s=V*conj(I);
A=real(s);
S=abs(S);
P=abs(V)*abs(I)*pf;
display(PF);
display(s);
display(P);
Result
PF =0.7809
s = 5.8537e+02 + 4.6829e+02i
P =585.3659
Q2.

Q3.
t = 0:0.0001:1-0.0001;
Vm =220;
n = linspace(2,8,4);
F= 0;
for i=1:4
F= F + ((4*Vm)/(pi*(n(i)^2-1)))*cos((n(i)*2*pi*50*t)+pi);
end
V=(2*Vm/pi)+F;

Vrms= rms(V)
plot(t(1:400),V(1:400))
Result: Vrms =155.5349V

Q4.

Average Power absorbed = 249.1 watts

Q5.

Average Power absorbed by load = 636.3watt


Q6.

Results
a. O/P (f(s)) Increases by 0.0566 pu b. Decreases by 0.0566 pu c.Decreases by 0.0566 pu
d. Increases by 0.0566pu e. Remains same
Q.7

t = 0:0.0001:1-0.0001;
syms s t
I_s = (12.5 + (0.005*s))/((1.1*s)+(0.001*s^2)+(60));
I_t=ilaplace(I_s, s, t);
ezplot(I_t, [0,0.1])
title ('current');
xlabel('time (t)')
ylabel('I_t')
grid on
Result

Q.8

Result:

Q9.

Results:
Reactive Power supplied by sending end = -7.909MVAR
Power factor sending end = 0.9969
Receiving end voltage = 169.9KV
Receiving end current = 449.4A
Q.10
P= 5000;
f = 50;
I_load = 35;
V_load = 230;
Pf = (P)/(V_load*I_load);
theta = acos(Pf);
Q = V_load*I_load*sin(theta);
C = (Q)/(2*pi*f*V_load^2)
X_c = 1/(2*pi*f*C*(-1i));

I_c = V_load/X_c;
I_s = P/V_load;
Result:
C = 3.9713e-04
I_s = 21.7391

You might also like