summaryrefslogtreecommitdiff
path: root/839/CH24/EX24.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /839/CH24/EX24.2
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 '839/CH24/EX24.2')
-rwxr-xr-x839/CH24/EX24.2/Example_24_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/839/CH24/EX24.2/Example_24_2.sce b/839/CH24/EX24.2/Example_24_2.sce
new file mode 100755
index 000000000..14fd4eaef
--- /dev/null
+++ b/839/CH24/EX24.2/Example_24_2.sce
@@ -0,0 +1,15 @@
+//clear//
+clear;
+clc;
+
+//Example 24.2
+//Given
+X1 = 0.25;
+X = 0.05;
+Dvprime = 8.3*10^-6; //[cm^2/s]
+D = 25.4; //[mm]
+
+//Solution
+s = D/(2*10); //[cm]
+tT = 4*s^2/(%pi^2*Dvprime)*log(8*X1/(%pi^2*X))/3600; //[h]
+disp('h',tT,'drying time is')