summaryrefslogtreecommitdiff
path: root/587/CH3
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /587/CH3
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '587/CH3')
-rwxr-xr-x587/CH3/EX3.13/example3_13.sce36
1 files changed, 18 insertions, 18 deletions
diff --git a/587/CH3/EX3.13/example3_13.sce b/587/CH3/EX3.13/example3_13.sce
index c5605827b..91c1d1c85 100755
--- a/587/CH3/EX3.13/example3_13.sce
+++ b/587/CH3/EX3.13/example3_13.sce
@@ -1,18 +1,18 @@
-clear;
-clc;
-
-//Example3.13[Heat Loss from Buried Steam Pipes]
-//Given:-
-T_esurf=10;//Surface temperatur of earth[degree Celcius]
-T_psurf=80;//Outer surface temperature of pipe[degree Celcius]
-k_soil=0.9//Thermal Conductivity of soil[W/m.degree Celcius]
-L=30;//Length of pipe[m]
-D=0.1;//Diameter of pipe[m]
-z=0.5;//Depth at which pipe is kept[m]
-//Solution:-
-//Calculating shape factor
-if(z>(1.5*D))then
- S=(2*%pi*L)/(log((4*z)/D)), end;//[m]
- disp(S,"Shape factor is")
- Q_=S*k_soil*(T_psurf-T_esurf);//[W]
- disp("W",Q_,"The steady rate of heat transfer from the pipe is") \ No newline at end of file
+clear;
+clc;
+
+//Example3.13[Heat Loss from Buried Steam Pipes]
+//Given:-
+T_esurf=10;//Surface temperatur of earth[degree Celcius]
+T_psurf=80;//Outer surface temperature of pipe[degree Celcius]
+k_soil=0.9//Thermal Conductivity of soil[W/m.degree Celcius]
+L=30;//Length of pipe[m]
+D=0.1;//Diameter of pipe[m]
+z=0.5;//Depth at which pipe is kept[m]
+//Solution:-
+//Calculating shape factor
+if(z>(1.5*D))
+ S=(2*%pi*L)/(log((4*z)/D)), end;//[m]
+ disp(S,"Shape factor is")
+ Q_=S*k_soil*(T_psurf-T_esurf);//[W]
+ disp("W",Q_,"The steady rate of heat transfer from the pipe is") \ No newline at end of file