summaryrefslogtreecommitdiff
path: root/965/CH2/EX2.13/13.sci
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /965/CH2/EX2.13/13.sci
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '965/CH2/EX2.13/13.sci')
-rw-r--r--965/CH2/EX2.13/13.sci16
1 files changed, 16 insertions, 0 deletions
diff --git a/965/CH2/EX2.13/13.sci b/965/CH2/EX2.13/13.sci
new file mode 100644
index 000000000..5cc2a4ccf
--- /dev/null
+++ b/965/CH2/EX2.13/13.sci
@@ -0,0 +1,16 @@
+clc;
+clear all;
+disp("pipe location distance")
+L=1.2;//m thickness of wall
+// temperature of wall surfaces
+t1= 200;// degree C
+t2=60;// degree C
+t= 120;// degree C
+//k= 0.28*(1+0.036*t);// thermal conductivity relation
+// rate of heat transfer Q= km*(A/L)*(t1-t2)
+// 0.28*(1+(0.036/2)*(200+60))*(A/1.2)*(200-60)=0.28*(1+(0.036/2)*(200+120))*(A/x)*(200-120)
+x=151.42/185.54;//m
+disp("m",x,"the distance at which the pipe should be imbedded from hot surface = ")
+
+
+