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 /599/CH6/EX6.5.c/example6_5_c.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 '599/CH6/EX6.5.c/example6_5_c.sce')
-rwxr-xr-x | 599/CH6/EX6.5.c/example6_5_c.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/599/CH6/EX6.5.c/example6_5_c.sce b/599/CH6/EX6.5.c/example6_5_c.sce new file mode 100755 index 000000000..e67b527e6 --- /dev/null +++ b/599/CH6/EX6.5.c/example6_5_c.sce @@ -0,0 +1,18 @@ +
+clear;
+clc;
+printf("\t Example 6_5_c\n");
+
+//part(iii)
+ //let us choose the consistency of 11 and 13 readings
+Xbar=0; //equillibrium moisture content
+Ls=4.12; //mass of bone dry solid ais the drying surface
+A=1; //both upper surafce and lower surface are exposed
+Nc=0.19; //in kg/m^2*hr
+X1=.098; //moisture content on dry basis intially
+Xcr=.11; //kg moisture per kg dry solid
+X2=0.074; //moisture content on dry basis finally
+tfall=(Ls/(A*Nc))*((Xcr-Xbar)*log((X1-Xbar)/(X2-Xbar)));
+printf("\n from this data we get time as :%f hour",tfall);
+printf("\n the actual time is 0.8 hours");
+//end
\ No newline at end of file |