You are on page 1of 1

Objective 5 : Two load Z1 = 100 + j0

and Z2 = 10 + j20

are connected across a 200 Volts

rms, 60 Hz source as shown in figure below


(a) Find total real and reactive power, the power factor at the source and total current using

Matlab.
(b) Find the capacitance of capacitor connected across the load to improve the overall power

factor.
Soln :

Objective 5
Created by ROHAN SHARMA on June 7, 2011 for PSMS LAB V=200; Z1=100+j*0; Z2=10+j*20; I1=V/Z1; I2=V/Z2; % Part (a) S1=V*conj(I1); S2=V*conj(I2); S=S1+S2; P1=real(S1) P2=real(S2) Q1=imag(S1) Q2=imag(S2) Ptotal=real(S) Qtotal=imag(S) I=I1+I2 [ang,rad] = cart2pol(real(I),imag(I)); PowerFactor=cos(ang) % Part (b) thetai=acos(.6); thetad=acos(.8); kVAR=(P1+P2)*(tan(thetai)-tan(thetad)); disp(['VAR required to improve PF to 0.8 is ',num2str(kVAR)]) Xcomp=V^2/conj(kVAR); C=10^6/(2*pi*60*Xcomp); disp(['Capacitance of required capacitor in Farads = ',num2str(C)]); P1 = 400 P2 = 800 Q1 = 0 Q2 = 1600 Ptotal = 1200 Qtotal = 1600 I = 6.0000 - 8.0000i PowerFactor = 0.6000 VAR required to improve PF to 0.8 is 700 Capacitance of required capacitor in Farads = 46.4202

You might also like