blob: faa99735a4785c9a4fc9a78eeadf005f9d079a74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// find power dissipation
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 6-11, page 211
clear;clc; close;
// Given data
Vce=10;// collector-emmiter voltage in volts
Ic=20*10^-3;// collector-current in amperes
T=25;// ambient temperature
P=625*10^-3;// power rating in watts at 25 degree celcius
// Calculations
Pd=Vce*Ic;// power dissipation in watts
disp("watts",Pd,"dissipated power=")
// Result
// As power dissipation is less than rated power at ambient temperature,transistor(2N3904) is safe
|