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 /1370/CH8/EX8.7/example8_7.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 '1370/CH8/EX8.7/example8_7.sce')
-rwxr-xr-x | 1370/CH8/EX8.7/example8_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1370/CH8/EX8.7/example8_7.sce b/1370/CH8/EX8.7/example8_7.sce new file mode 100755 index 000000000..1b538631f --- /dev/null +++ b/1370/CH8/EX8.7/example8_7.sce @@ -0,0 +1,14 @@ +//example8.7
+clc
+disp("V_m= Peak value of input =200 V")
+disp("V_BO=100 V with I_G=2 mA and R_L=100 ohm")
+a=asind(1/2)
+disp(a,"i) Firing angle alpha(in degree)=sinh((V_BO)/(V_m))=sinh(100/200)=")
+a=180-30
+disp(a,"ii) Conduction angle beta = 180-(alpha) =")
+v=(200*(1+cosd(30)))/(2*%pi)
+format(7)
+disp(v,"iii) Average output voltage (V_dc)=(V_m*(1+cos30))/(2*pi)=")
+p=(59.39^2)/100
+format(8)
+disp(p,"(P_dc(av))[in W]=(V_dc^2)/R_L=")
|