summaryrefslogtreecommitdiff
path: root/317/CH8/EX8.3/example3.sce
blob: eaf1d17c1ad6096148211f7e782e29fd1656d6d4 (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
26
27
// find emitter current 
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 8-3, page 266

clear;clc; close;

// Given data
R1=10*10^3;// in ohms
R2=2.2*10^3;// in ohms
Rc=3.6*10^3;// in ohms
Re=1*10^3;// in ohms
Bdc=200;// current gain
Vbb=1.8;// base supply voltage in volts 
Vbe=0.7;// voltage across emitter in volts

// Calculations
Rth=(R1*R2)/(R1+R2);// thevenin voltage in volts(R1||R2)
Rin=Bdc*Re;// input resistance of base
// as Rth<0.01*Rin, voltage divider is stiff
Ie=(Vbb-Vbe)/(Re+(Rth/Bdc));// emitter current in amperes
disp("Amperes",Ie,"Emitter Current")

// Result
// voltage divider is stiff, emitter current is 1.09 milliamperes