diff options
Diffstat (limited to '147/CH8/EX8.15')
-rw-r--r-- | 147/CH8/EX8.15/Example8_15.sce | 14 | ||||
-rw-r--r-- | 147/CH8/EX8.15/Result8_15.txt | 1 |
2 files changed, 15 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 diff --git a/147/CH8/EX8.15/Result8_15.txt b/147/CH8/EX8.15/Result8_15.txt new file mode 100644 index 000000000..a9f012c7a --- /dev/null +++ b/147/CH8/EX8.15/Result8_15.txt @@ -0,0 +1 @@ +Minimum value of Rc to maintain the transistor quiescent point at saturation, Rc = 5.154 k ohm
\ No newline at end of file |