summaryrefslogtreecommitdiff
path: root/3745/CH1/EX1.67
diff options
context:
space:
mode:
Diffstat (limited to '3745/CH1/EX1.67')
-rw-r--r--3745/CH1/EX1.67/Ex1_67.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3745/CH1/EX1.67/Ex1_67.sce b/3745/CH1/EX1.67/Ex1_67.sce
new file mode 100644
index 000000000..3e0e4433d
--- /dev/null
+++ b/3745/CH1/EX1.67/Ex1_67.sce
@@ -0,0 +1,30 @@
+// Ex 67 Page 407
+
+clc;clear;close;
+// Given
+//v=350*sin(omega*t)+80*sin(3*omega*t+%pi/3)+40*sin(5*omega*t+5*%pi/6)
+V1=350;V3=80;V5=40;//V
+fi1=0;fi3=60;fi5=150;//degree
+R=20;//omh
+L=0.05;//H
+omega=314;//rad/s
+
+X1=omega*L;//ohm
+Z1=R+%i*X1;//ohm
+X3=3*omega*L;//ohm
+Z3=R+%i*X3;//ohm
+X5=5*omega*L;//ohm
+Z5=R+%i*X5;//ohm
+[r1,t1]=polar(Z1);
+[r3,t3]=polar(Z3);
+[r5,t5]=polar(Z5);
+I1m=V1/r1;//A
+I3m=V3/r3;//A
+I5m=V5/r5;//A
+Irms=sqrt(I1m^2/2+I3m^2/2+I5m^2/2);//A
+Vrms=sqrt(V1^2/2+V3^2/2+V5^2/2);//A
+printf("\n Irms=%.f A\n Vrms=%.f V",Irms,Vrms)
+P=Irms^2*R;//W
+printf("\n Total Power, P=%.f W",P)
+cosfi=P/Vrms/Irms;//Power factor
+printf("\n Power factor = %.2f",cosfi)