summaryrefslogtreecommitdiff
path: root/587/CH3/EX3.10/example3_10.sce
blob: c9e4cda750493d4de21ac8df20a8bf81c026fdb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clear;
clc;

//Example3.10[Maximum Power dissipation of a Transistor]
//Given:-
T_ambient=25;//Ambient temperature[degree Celcius]
T_case=85;//Maximum temperature of the case[degree Celcius]
R_case_ambient=20;//Resistance for convection b/w case and ambient [degree Celcius/W]
//Solution:-
Q_=(T_case-T_ambient)/R_case_ambient;//[W]
disp("W",Q_,"The given power transistor should not be operated at power levels above")
disp("if is its case temperature is not to exceed 85 degree Celcius")