blob: 80e14c8c092aa36b08fd982e22e37c380f1a0619 (
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
|
// calculate saturation current and cutoff voltage
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 7-3, page 229
clear;clc; close;
// Given data
Vcc=15;// collector supply voltage in volts
Rc=1*10^3;// collector resistance in ohms
// Calculations
Icsat=Vcc/Rc;// saturation current in amperes
Vcecutoff=Vcc;// cutoff voltage in volts
disp("Amperes",Icsat,"Saturation Current")
disp("Volts",Vcecutoff,"cutoff voltage")
// Result
// saturation current is 15 mAmperes
// cutoff voltage is 15 Volts
|