diff options
Diffstat (limited to '2528/CH8/EX8.7/Ex8_7.sce')
-rwxr-xr-x | 2528/CH8/EX8.7/Ex8_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2528/CH8/EX8.7/Ex8_7.sce b/2528/CH8/EX8.7/Ex8_7.sce new file mode 100755 index 000000000..3da1fc8a9 --- /dev/null +++ b/2528/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,14 @@ +// Chapter8
+// Determine appropiate heat sink rating
+// Page.No-296
+// Example8_7
+//Figure 8.34
+// Given
+clear;clc;
+Tj=150; // in degree C
+Ta=40; // in degree C
+Qjc=3.0; // in C/W
+Qcs=1.6; // in C/W
+PD=6; //in W
+Qsa=(Tj-Ta)/PD - Qjc-Qcs;
+printf("\n Value of Qsa = %.2f C/W\n",Qsa); // Result
|