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 /1691/CH6/EX6.22/Exmp6_22.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 '1691/CH6/EX6.22/Exmp6_22.sce')
-rwxr-xr-x | 1691/CH6/EX6.22/Exmp6_22.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1691/CH6/EX6.22/Exmp6_22.sce b/1691/CH6/EX6.22/Exmp6_22.sce new file mode 100755 index 000000000..ccfa77828 --- /dev/null +++ b/1691/CH6/EX6.22/Exmp6_22.sce @@ -0,0 +1,19 @@ +//Example 6.22
+clc
+disp("For a common collector configuration the voltage gain is 1")
+disp("Therefore, V_in(peak) = V_out(peak) = 20 V")
+disp("i.e. V_m = 20 V")
+disp("Now V_m/I_m = R_L")
+im=20/16
+format(5)
+disp(im,"Therefore, I_m(in A) = V_m/R_L =")
+disp("while V_CC = 25 V")
+pdc=(2*25*1.25)/%pi
+format(8)
+disp(pdc,"Now P_DC(in W) = 2*V_CC*I_m / pi =")
+pac=(20*1.25)/2
+format(5)
+disp(pac,"P_ac(in W) = V_m*I_m / 2 =")
+eta=1250/19.8943
+format(7)
+disp(eta,"Therefore, %eta(in percentage) = P_ac*100 / P_DC =")
|