summaryrefslogtreecommitdiff
path: root/147/CH8/EX8.10/Example8_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '147/CH8/EX8.10/Example8_10.sce')
-rw-r--r--147/CH8/EX8.10/Example8_10.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/147/CH8/EX8.10/Example8_10.sce b/147/CH8/EX8.10/Example8_10.sce
new file mode 100644
index 000000000..89837a9be
--- /dev/null
+++ b/147/CH8/EX8.10/Example8_10.sce
@@ -0,0 +1,17 @@
+close();
+clear;
+clc;
+alpha = 0.99;
+Iceo = 0;
+Vee = 4;//V
+Vcc = 12;
+Vbeq = -0.7;
+Ieq = 1.1;//mA
+Vceq = -7;//V
+//By KVL around transistor terminals
+Re = (Vee+Vbeq)/Ieq;
+Vcbq = Vceq-Vbeq;
+Icq = alpha*Ieq;
+//By KVL around base-collector loop
+Rc = (Vcc+Vcbq)/Icq;
+mprintf('(a): Re = %0.0f ohm\n(b): Rc = %0.3f k ohm',Re,Rc);