blob: e5bdccce2a393848a4fc4526226bfb8bfb970bd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Chapter 8_Applications of Operational Amplifier
//Caption : Device Temperature
//Example8.4: Forced air cooling provided for the device in Example8.3 lowers the ambient temperature at 60 degree celsius.What is temperature of the device?
//Solution:
clear;
clc;
Pd=500*10^-3;
Rt=150;//thermal resistance
Ta=60;//ambient temperature
Td=Pd*Rt+Ta;
disp('degree celsius',Td,'Temperature of the device is:')
|