summaryrefslogtreecommitdiff
path: root/73/CH8/EX8.2
diff options
context:
space:
mode:
Diffstat (limited to '73/CH8/EX8.2')
-rwxr-xr-x73/CH8/EX8.2/Example8_2.sci12
1 files changed, 12 insertions, 0 deletions
diff --git a/73/CH8/EX8.2/Example8_2.sci b/73/CH8/EX8.2/Example8_2.sci
new file mode 100755
index 000000000..f1f04ba365
--- /dev/null
+++ b/73/CH8/EX8.2/Example8_2.sci
@@ -0,0 +1,12 @@
+//Chapter 8_Applications of Operational Amplifier
+//Caption : Device Temperature
+//Example8.2: For the device in Example8.1, Pdmax=500 mW. Determine the device temperature after equilibrium is attained for an ambient temperature of 75 degree celsius and if the device is subjected to maximum heat generation.Maximum allowable device temperature is 150 degree Celsius.
+//Solution:
+clear;
+clc;
+Pmax=500*10^-3;
+Pd=Pmax;//since device is subjected to maximum heat generation
+Rt=150;//thermal resitance
+Ta=75;//ambient temperature
+Td=Pd*Rt+Ta;
+disp('degree celsius',Td,'device temperature is:') \ No newline at end of file