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 /2762/CH5/EX5.3.4/5_3_4.sce | |
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 '2762/CH5/EX5.3.4/5_3_4.sce')
-rwxr-xr-x | 2762/CH5/EX5.3.4/5_3_4.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2762/CH5/EX5.3.4/5_3_4.sce b/2762/CH5/EX5.3.4/5_3_4.sce new file mode 100755 index 000000000..f4ff8d831 --- /dev/null +++ b/2762/CH5/EX5.3.4/5_3_4.sce @@ -0,0 +1,31 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 5
+//Example 5.3-4
+//Principles of Unsteady State Heat Transfer
+//given data
+//si units
+//nomenclature similar to previous questions
+//conduction in x dirn
+x1=0.03405;
+y1=0.1016/2;
+k=0.83;
+alpha=2.007e-7;
+t=0.75*3600;//time in s
+r=0.75*3600;//hours to mins
+x=0;
+n=x/x1;
+h=4540;
+m=k/(h*x1);
+X=(alpha*t)/(x1*x1);
+//conduction in y direction
+y=0;
+y1=0.0508;
+my=k/(h*y1);
+Y=(alpha*t)/(y1*y1);
+Yx=0.13;//taken from the figure
+Yy=0.8;
+Yxy=Yx*Yy;
+T1=115.6;
+T0=29.4;
+Txy=T1-(Yxy*(T1-T0));
+mprintf("temp at the centre of the can= %f deg C",Txy)
|