diff options
Diffstat (limited to '147/CH8/EX8.15/Example8_15.sce')
-rw-r--r-- | 147/CH8/EX8.15/Example8_15.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/147/CH8/EX8.15/Example8_15.sce b/147/CH8/EX8.15/Example8_15.sce new file mode 100644 index 000000000..0590a784d --- /dev/null +++ b/147/CH8/EX8.15/Example8_15.sce @@ -0,0 +1,14 @@ +close();
+clear;
+clc;
+Ibq = 30*10^(-6); //A
+Re = 1000; //ohm
+Vcc = 15; //V
+Vcesat = 0.2; //V
+B = 80;
+a = B/(B+1);
+Icq = B*Ibq; //A
+Ieq = Icq/a; //A
+//KVL around collector circuit leads to minimum value of Rc
+Rc = (Vcc-Vcesat - Ieq*Re)/Icq; //ohm
+mprintf("Minimum value of Rc to maintain the transistor quiescent point at saturation, Rc = %0.3f k ohm",Rc/1000);
\ No newline at end of file |