diff options
Diffstat (limited to '2459/CH23/EX23.4/Ex23_4.sce')
-rw-r--r-- | 2459/CH23/EX23.4/Ex23_4.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2459/CH23/EX23.4/Ex23_4.sce b/2459/CH23/EX23.4/Ex23_4.sce new file mode 100644 index 000000000..0827e46c1 --- /dev/null +++ b/2459/CH23/EX23.4/Ex23_4.sce @@ -0,0 +1,23 @@ +//chapter23
+//example23.4
+//page514
+
+v=100 // V
+Vm=200 // V
+R_L=100 // ohm
+
+// since v=Vm*sin(theta), we get
+
+theta=asin(v/Vm)*180/%pi // in terms of degrees
+
+phi=180-theta
+
+V_avg=Vm*(1+cos(theta*%pi/180))/(2*%pi)
+
+I_avg=V_avg/R_L
+
+printf("firing angle = %.2f degrees \n",theta)
+printf("conduction angle = %.2f degrees \n",phi)
+printf("average current = %.4f A \n",I_avg)
+
+// the accurate answer for average current is 0.594 A but in book it is given as 0.5925 A
|