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 /2231/CH1/EX1.21 | |
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 '2231/CH1/EX1.21')
-rwxr-xr-x | 2231/CH1/EX1.21/Ex_1_21.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2231/CH1/EX1.21/Ex_1_21.sce b/2231/CH1/EX1.21/Ex_1_21.sce new file mode 100755 index 000000000..8ae51527a --- /dev/null +++ b/2231/CH1/EX1.21/Ex_1_21.sce @@ -0,0 +1,14 @@ +//Example 1_21
+clc;
+clear;close;
+
+//Given data:
+l=0.2;//m
+w=0.01;//m
+d=0.01;//m
+P=3;//W
+Tc=220;//W/m/degreeC
+T1=30;//degreeC
+theta=l/Tc/w/d;//degreeC/W
+T2=P*theta+T1;//degreeC
+disp(T2,"Temperature of the surface in degree C ");
|