diff options
Diffstat (limited to '73/CH8/EX8.1/Example8_1.sci')
-rwxr-xr-x | 73/CH8/EX8.1/Example8_1.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/73/CH8/EX8.1/Example8_1.sci b/73/CH8/EX8.1/Example8_1.sci new file mode 100755 index 000000000..aabd482c5 --- /dev/null +++ b/73/CH8/EX8.1/Example8_1.sci @@ -0,0 +1,12 @@ +//Chapter 8_Applications of Operational Amplifier
+//Caption : Device Temperature
+//Example8.1:The Heat generated by a linear IC,uA 741 is 200 mW.If the thermal resistance is 150 degree Celsius/Watt and the ambient temperature is 25 degree celsius.calculate the device temperature.
+//Solution:
+clear;
+clc;
+Pd=200*10^-3;//heat generated
+Rt=150;//thermal resistance
+Ta=25;//ambient temperature in degree celsius
+//assuming thermal equilibrium conditon
+Td=Pd*Rt+Ta;
+disp('degree celsius',Td,'The device temperature is:')
\ No newline at end of file |