summaryrefslogtreecommitdiff
path: root/1658/CH18/EX18.2/Ex18_2.sce
blob: 903e8eff38d200a9c37199f3290e1a3bdf46a4b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

clc;
//e.g 18.2
Vbb=10;
Rb=50*10**3;
Vcc=20;
Rc=300;
beta=200;
Ic=Vcc/Rc;//saturation current
disp('mA',Ic*10**3,"Ic=");
Vce=Vcc;//cut-off voltage
disp('V',Vce*1,"Vce=");
Ib=(Vbb-0.7)/Rb;
 disp('10^-3A',Ib*10**3,"Ib=");
 Ic=beta*Ib;
  disp('10^-3A',Ic*10**3,"Ic=");
Vce=Vcc-Ic*Rc;
disp('V',Vce*1,"Vce=");
i=21:-0.1:0;
plot2d(i);
a=gca() //get the current axes
a.box="off";
xlabel("VCE");
ylabel( "IC");