matlab A single phase circuit has the following arrangement shown in Fig 1 has t
ID: 2085090 • Letter: M
Question
matlab
Explanation / Answer
For inductive load
clc
Fs = 10e4;
t =0 : 1/Fs : 0.033-1/Fs ;
v = 100/1.414
Z1= 0.625+1.0825i;
i1= v/Z1;
thetaV= angle(i1);
peaki=abs(i1)*1.414;
I = peaki*cos(2*pi*60*t);
V = 100*cos((2*pi*60*t)+thetaV);
p = v*i1;
pmax = abs(p)*1.414;
theatp = angle(p);
P = pmax*cos((2*pi*60*t)-theatp);
prmax = real(p)*1.414;
pxmax = imag(p)*1.414;
Pr = prmax*cos(2*pi*60*t);
Px = pxmax*cos((2*pi*60*t)-theatp);
plot(t,V,t,I);
figure
plot(t,P,t,Pr,t,Px);
For capacitve load
clc
Fs = 10e4;
t =0 : 1/Fs : 0.033-1/Fs ;
v = 100/1.414
Z1= 1.732-1i;
i1= v/Z1;
thetaV= angle(i1);
peaki=abs(i1)*1.414;
I = peaki*cos(2*pi*60*t);
V = 100*cos((2*pi*60*t)+thetaV);
p = v*i1;
pmax = abs(p)*1.414;
theatp = angle(p);
P = pmax*cos((2*pi*60*t)-theatp);
prmax = real(p)*1.414;
pxmax = imag(p)*1.414;
Pr = prmax*cos(2*pi*60*t);
Px = pxmax*cos((2*pi*60*t)-theatp);
plot(t,V,t,I);
figure
plot(t,P,t,Pr,t,Px);
For resistive load
clc
Fs = 10e4;
t =0 : 1/Fs : 0.033-1/Fs ;
v = 100/1.414
Z1= 2.5;
i1= v/Z1;
thetaV= angle(i1);
peaki=abs(i1)*1.414;
I = peaki*cos(2*pi*60*t);
V = 100*cos((2*pi*60*t)+thetaV);
p = v*i1;
pmax = abs(p)*1.414;
theatp = angle(p);
P = pmax*cos((2*pi*60*t)-theatp);
prmax = real(p)*1.414;
pxmax = imag(p)*1.414;
Pr = prmax*cos(2*pi*60*t);
Px = pxmax*cos((2*pi*60*t)-theatp);
plot(t,V,t,I);
figure
plot(t,P,t,Pr,t,Px);
for all three loads kept across supply
clc
Fs = 10e4;
t =0 : 1/Fs : 0.033-1/Fs ;
v = 100/1.414
Y1 =1/(0.625+1.0825i);
Y2= 1/(1.732-1i);
Y3 = 1/2.5
Y= Y1+Y2+Y3;
i1= v*Y;
thetaV= angle(i1);
peaki=abs(i1)*1.414;
I = peaki*cos(2*pi*60*t);
V = 100*cos((2*pi*60*t)+thetaV);
p = v*i1;
pmax = abs(p)*1.414;
theatp = angle(p);
P = pmax*cos((2*pi*60*t)-theatp);
prmax = real(p)*1.414;
pxmax = imag(p)*1.414;
Pr = prmax*cos(2*pi*60*t);
Px = pxmax*cos((2*pi*60*t)-theatp);
plot(t,V,t,I);
figure
plot(t,P,t,Pr,t,Px);
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.