summaryrefslogtreecommitdiff
path: root/1752/CH4/EX4.11/exa_4_11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1752/CH4/EX4.11/exa_4_11.sce
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 '1752/CH4/EX4.11/exa_4_11.sce')
-rwxr-xr-x1752/CH4/EX4.11/exa_4_11.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1752/CH4/EX4.11/exa_4_11.sce b/1752/CH4/EX4.11/exa_4_11.sce
new file mode 100755
index 000000000..a25e248ea
--- /dev/null
+++ b/1752/CH4/EX4.11/exa_4_11.sce
@@ -0,0 +1,21 @@
+//Exa 4.11
+clc;
+clear;
+close;
+//given data
+k=40;// in W/m degree C
+d =12*10^-3;// in meter
+t=127;// in degree C
+t_i=877;// in degree C
+t_infinite=52;// in degree C
+h= 20;// in W/m^2 degree C
+rho=7800;// in W/m^2K
+C=600;// in J/kg K
+r=d/2;// in meter
+//l_s = V/A = r/3
+l_s = r/3;
+Bi= h*l_s/k;
+// since Bi < 0.1 , hence lumped heat capacity analysis can be applied
+// (t-t_infinite)/(t_i-t_infinite) = %e^(-h*A*toh /(rho*V*C)) = %e^(-h*toh/(rho*l_s*C)) = %e^(-h*toh/(rho*C*l_s))
+toh = -log((t-t_infinite)/(t_i-t_infinite))*rho*C*l_s/h;// in sec
+disp("Time required for cooling process : "+string(toh)+" seconds or "+string(toh/60)+" minutes") \ No newline at end of file