blob: 7f12ee91059027bf95983be649f7aeb8da67fae4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// to find base current of the transistor
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 6-3, page 195
clear;clc; close;
// Given data
Ic=2*10^-3;// collector current in amperes
Bdc=135;// current gain
// Calculations
Ib=Ic/Bdc;// collector current in amperes
disp("Amperes",Ib,"base current =")
// Result
// Base current is 14.8 micro Amperes.
|