From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 73/CH8/EX8.1/Example8_1.sci | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 73/CH8/EX8.1/Example8_1.sci (limited to '73/CH8/EX8.1/Example8_1.sci') 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 -- cgit