blob: e1bf99a8a3085cb401dd2d60d9d22d6ad2784e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//chapter 7
//example 7.3
//page 201
clear;
clc ;
//given
thetaJC=1; //junction to case thermal impedance in degreeC/W
Tj=90; //junction temperature
Ta=25; // ambient temperature
Vce=25;//collector to emitter voltage in volts
Ic=1;//collector current in A
Q=Vce*Ic; //transistor power dissipation in W
thetaCA=(Tj-Ta)/Q-thetaJC; //case to air thermal impedance (thetaCS+thetaCA)
printf('thetaCA=%.1f degreeC/W',thetaCA)
disp("Choose small and least expensive heat sink i.e. NC-421")
|