diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2459/CH23/EX23.4/Ex23_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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
|