diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /73/CH8/EX8.1/Example8_1.sci | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |