summaryrefslogtreecommitdiff
path: root/2330/CH9/EX9.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2330/CH9/EX9.12
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2330/CH9/EX9.12')
-rwxr-xr-x2330/CH9/EX9.12/ex9_12.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2330/CH9/EX9.12/ex9_12.sce b/2330/CH9/EX9.12/ex9_12.sce
new file mode 100755
index 000000000..d47a4579c
--- /dev/null
+++ b/2330/CH9/EX9.12/ex9_12.sce
@@ -0,0 +1,16 @@
+// Example 9.12
+format('v',6)
+clc;
+clear;
+close;
+// given data
+Ta= 70;// ambient temperature in °C
+P= 30;// in power dissipation in W
+theta_CS= 0.5;// in °C/W
+theta_SA= 1.5;// in °C/W
+// The case temperature
+Tc= Ta+P*(theta_CS+theta_SA);// in °C
+// The power rating
+P_Dmax= 60;// in W
+disp(Tc,"The case temperature in °C is : ");
+disp(P_Dmax,"The power rating in watt is : ")