summaryrefslogtreecommitdiff
path: root/147/CH8/EX8.6/Example8_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '147/CH8/EX8.6/Example8_6.sce')
-rw-r--r--147/CH8/EX8.6/Example8_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/147/CH8/EX8.6/Example8_6.sce b/147/CH8/EX8.6/Example8_6.sce
new file mode 100644
index 000000000..e147d21de
--- /dev/null
+++ b/147/CH8/EX8.6/Example8_6.sce
@@ -0,0 +1,16 @@
+close();
+clear;
+clc;
+Beta = 100;
+Ibq = 20*10^(-6);
+Vcc = 15;//V
+Rc = 3000;//ohm
+Icbo = 0;
+alpha = Beta/(Beta+1);
+Icq = Beta*Ibq;
+Ieq = Icq/alpha;
+Vceq = Vcc-Icq*Rc;
+//Part (c)
+Rc = 6000;
+Vceq_c = Vcc-Icq*Rc;
+mprintf('(a):Ieq = %0.2f mA\n(b):Vceq = %0.0f V\n(c):Vceq = %0.0f V',Ieq*1000,Vceq,Vceq_c); \ No newline at end of file