diff options
Diffstat (limited to '147/CH8/EX8.13/Example8_13.sce')
-rw-r--r-- | 147/CH8/EX8.13/Example8_13.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/147/CH8/EX8.13/Example8_13.sce b/147/CH8/EX8.13/Example8_13.sce new file mode 100644 index 000000000..f005507cf --- /dev/null +++ b/147/CH8/EX8.13/Example8_13.sce @@ -0,0 +1,14 @@ +close();
+clear;
+clc;
+Iceo = 0;
+Vcesat = 0;
+hfe = 100;
+Rc = 2000; //ohm
+Vcc = 12; //V
+Vbeq = 0.7; //V
+Vceq = Vcc/2;
+Ibq = (Vcc-Vceq)/((hfe+1)*Rc); //A
+//by KVL around transistor terminals
+Rf = (Vceq-Vbeq)/Ibq; //ohm
+mprintf("Rf for maximum symmetrical swing = %0.1f k ohm",Rf/1000);
\ No newline at end of file |