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 /1309/CH4/EX4.10 | |
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 '1309/CH4/EX4.10')
-rwxr-xr-x | 1309/CH4/EX4.10/Result4_10.pdf | bin | 0 -> 86933 bytes | |||
-rwxr-xr-x | 1309/CH4/EX4.10/ch4_10.sce | 17 |
2 files changed, 17 insertions, 0 deletions
diff --git a/1309/CH4/EX4.10/Result4_10.pdf b/1309/CH4/EX4.10/Result4_10.pdf Binary files differnew file mode 100755 index 000000000..0fdfaf9cd --- /dev/null +++ b/1309/CH4/EX4.10/Result4_10.pdf diff --git a/1309/CH4/EX4.10/ch4_10.sce b/1309/CH4/EX4.10/ch4_10.sce new file mode 100755 index 000000000..280a1dafc --- /dev/null +++ b/1309/CH4/EX4.10/ch4_10.sce @@ -0,0 +1,17 @@ +clc; +clear; +printf("\t\t\tChapter4_example10\n\n\n"); +// determination of time required to cool to a certain temperature +rou=7.817*62.4; +c=.110; +k=8.32; +alpha=0.417e-4; +dx=1/12; +// taking Fo=1 +Fo=1; +dt=Fo*dx^2/alpha; +printf("\nThe time increments is %.1f s",dt); +// We have to draw the Saul'ev plot to determine the number of time intervals +n=8; //Enter the number of time intervals from Saulev plot +time=n*dt; +printf("\nThe required time is %.2f hr",time/3600); |