summaryrefslogtreecommitdiff
path: root/317/CH6/EX6.9/example9.sce
blob: 15b6d44d133e3eb1b296cd137e1d28a64f40f852 (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
// find collector-emmiter voltage 
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 6-9, page 206

clear;clc; close;

// Given data
Rb=470*10^3;// resistance in ohms
Vbe=1;// voltage across emitter diode in volts
Bdc=100;// current gain
Vbb=15;// base source voltage in volts
Rc=3.6*10^3;// resistance in ohms
Vcc=15;// collector-supply voltage in volts 

// Calculations
Ib=(Vbb-Vbe)/Rb;// current through base resistor in amperes
Ic=Ib*Bdc;// collector current in amperes
Vce=Vcc-(Ic*Rc);// collector-emitter voltage in volts
disp("Volts",Vce,"collector-emitter voltage =")

// Result
// collector-emmiter voltage is 4.27 Volts