summaryrefslogtreecommitdiff
path: root/2459/CH15/EX15.10/Ex15_10.sce
blob: 4c683c021ec3423ea23d09111b9a3e95bac5a067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//chapter15
//example15.10
//page333

P_total=4 // W
T_Jmax=90 // degree celcius
theta=10 // degree celcius per watt

// P_total=(T_Jmax-Tamb)/theta so making Tamb as subject we get
Tamb=T_Jmax-P_total*theta

printf("maximum ambient temperature at which transistor can be operated = %.3f degree C \n",Tamb)