blob: 843f43e7fd05d43678befff44220bc5d7104af78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// calculate saturation current and cutoff voltage
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 7-2, page 228
clear;clc; close;
// Given data
Vcc=9;// collector supply voltage in volts
Rc=3*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 3 mAmperes
// cutoff voltage is 9 Volts
|