diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2330/CH9/EX9.12 | |
download | Scilab-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-x | 2330/CH9/EX9.12/ex9_12.sce | 16 |
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 : ")
|