summaryrefslogtreecommitdiff
path: root/317/CH6/EX6.8/example8.sce
blob: f9b706eeb4de6968b77eb67e00e510f764077d6e (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-8, page 205

clear;clc; close;

// Given data
Rb=470*10^3;// resistance in ohms
Vbe=0.7;// using second approximation
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.06 Volts.