summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.21
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2231/CH1/EX1.21
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 '2231/CH1/EX1.21')
-rwxr-xr-x2231/CH1/EX1.21/Ex_1_21.sce14
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 ");