blob: ca398b5c9447bf7b04100502ec45ce024665353c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//example 4.6
clc; funcprot(0);
// Initialization of Variable
Ts=40;
P=2.92;
Qj=2.5;
Qc=2;
Tj=125;
//calculation
Qs=(Tj-Ts)/P-Qj-Qc;
disp(Qs,"thermal resistance in C/W:")
clear()
|