diff options
Diffstat (limited to '73/CH8/EX8.4/Example8_4.sci')
-rwxr-xr-x | 73/CH8/EX8.4/Example8_4.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/73/CH8/EX8.4/Example8_4.sci b/73/CH8/EX8.4/Example8_4.sci new file mode 100755 index 000000000..e5bdccce2 --- /dev/null +++ b/73/CH8/EX8.4/Example8_4.sci @@ -0,0 +1,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:')
\ No newline at end of file |