diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3507/CH23/EX23.4/Ex23_4.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3507/CH23/EX23.4/Ex23_4.sce')
-rw-r--r-- | 3507/CH23/EX23.4/Ex23_4.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3507/CH23/EX23.4/Ex23_4.sce b/3507/CH23/EX23.4/Ex23_4.sce new file mode 100644 index 000000000..0827e46c1 --- /dev/null +++ b/3507/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
|