summaryrefslogtreecommitdiff
path: root/147/CH8/EX8.26
diff options
context:
space:
mode:
Diffstat (limited to '147/CH8/EX8.26')
-rw-r--r--147/CH8/EX8.26/Example8_26.sce24
-rw-r--r--147/CH8/EX8.26/Result8_26.txt5
2 files changed, 29 insertions, 0 deletions
diff --git a/147/CH8/EX8.26/Example8_26.sce b/147/CH8/EX8.26/Example8_26.sce
new file mode 100644
index 000000000..c4a1333fe
--- /dev/null
+++ b/147/CH8/EX8.26/Example8_26.sce
@@ -0,0 +1,24 @@
+close();
+clear;
+clc;
+Vcc = 24;//V
+Rc = 5000;//ohm
+Re = 200;
+Vcesat = 0;
+Icbo = 0;
+//Maximum amplitude 'Icq'
+Icq = 1/2*(Vcc/(Rc+Re));
+Icm1 = 0;
+Icm2 = Icq*50/100;
+Icm3 = Icq;
+Ps = Vcc*Icq;
+Po1 = Icm1^2*Rc/2;
+Po2 = Icm2^2*Rc/2;
+Po3 = Icm3^2*Rc/2;
+Pc1 = Icq^2*(Rc+Re)-Po1;
+Pc2 = Icq^2*(Rc+Re)-Po2;
+Pc3 = Icq^2*(Rc+Re)-Po3;
+n1 = Po1/Ps*100;
+n2 = Po2/Ps*100;
+n3 = Po3/Ps*100;
+mprintf('(a): Icq = %0.3f mA\n(b): Ps = %0.2f mW\n(c):Values of Po at 0,50%% and 100%% of maximum undistorted collector current are %0.0f , %0.2f and %0.2f mW respectively.\n(d): Values of Pc are %0.1f, %0.2f and %0.2f mW\n(e): Values of efficiency are %0.0f, %0.2f %% and %0.2f %%',Icq*1000,Ps*1000,Po1*1000,Po2*1000,Po3*1000,Pc1*1000,Pc2*1000,Pc3*1000,n1,n2,n3); \ No newline at end of file
diff --git a/147/CH8/EX8.26/Result8_26.txt b/147/CH8/EX8.26/Result8_26.txt
new file mode 100644
index 000000000..c8a20e45b
--- /dev/null
+++ b/147/CH8/EX8.26/Result8_26.txt
@@ -0,0 +1,5 @@
+(a): Icq = 2.308 mA
+(b): Ps = 55.38 mW
+(c):Values of Po at 0,50% and 100% of maximum undistorted collector current are 0 , 3.33 and 13.31 mW respectively.
+(d): Values of Pc are 27.7, 24.36 and 14.38 mW
+(e): Values of efficiency are 0, 6.01 % and 24.04 % \ No newline at end of file