summaryrefslogtreecommitdiff
path: root/1223/CH8/EX8.3
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH8/EX8.3')
-rwxr-xr-x1223/CH8/EX8.3/Ex8_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1223/CH8/EX8.3/Ex8_3.sce b/1223/CH8/EX8.3/Ex8_3.sce
new file mode 100755
index 000000000..c0eecce6a
--- /dev/null
+++ b/1223/CH8/EX8.3/Ex8_3.sce
@@ -0,0 +1,13 @@
+clear;
+clc;
+//Example 8.3
+Rcsnk=1;//degree celsius per watt
+Rsamb=5;//degree celsius per watt
+Tjmax=175;//maximum junction temperature
+Toc=25;
+Tamb=25;
+Pr=20;//rated power W
+Rdcase=(Tjmax-Toc)/Pr;
+printf('\ndevice to case thermal resistance=%.2f °C/W\n',Rdcase)
+P=(Tjmax-Tamb)/(Rdcase+Rcsnk+Rsamb);
+printf('\nmaximum power dissipation=%.2f W\n',P)