summaryrefslogtreecommitdiff
path: root/147/CH8/EX8.13/Example8_13.sce
blob: f005507cfb64307b090112916694d78730832745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);