diff options
Diffstat (limited to '147/CH8/EX8.8/Example8_8.sce')
-rw-r--r-- | 147/CH8/EX8.8/Example8_8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/147/CH8/EX8.8/Example8_8.sce b/147/CH8/EX8.8/Example8_8.sce new file mode 100644 index 000000000..03296324d --- /dev/null +++ b/147/CH8/EX8.8/Example8_8.sce @@ -0,0 +1,12 @@ +close();
+clear;
+clc;
+Ibq = 30*10^(-6);//A
+Vceq = 8;//V
+Vcc = 14;//V
+//From graph
+Icq = 2.7*10^(-3);//A
+Rc = Vcc/(6.25*10^(-3));
+Ieq = Icq+Ibq;
+Beta = Icq/Ibq;
+mprintf('Icq = %0.1f mA\nRc = %0.2f k ohm\nIeq = %0.2f mA\nBeta = %0.0f',Icq*1000,Rc/1000,Ieq*1000,Beta);
\ No newline at end of file |