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 /497/CH7/EX7.2/Chap7_Ex2.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 '497/CH7/EX7.2/Chap7_Ex2.sce')
-rwxr-xr-x | 497/CH7/EX7.2/Chap7_Ex2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/497/CH7/EX7.2/Chap7_Ex2.sce b/497/CH7/EX7.2/Chap7_Ex2.sce new file mode 100755 index 000000000..a447c8488 --- /dev/null +++ b/497/CH7/EX7.2/Chap7_Ex2.sce @@ -0,0 +1,19 @@ +//Kunii D., Levenspiel O., 1991. Fluidization Engineering(II Edition). Butterworth-Heinemann, MA, pp 491
+
+//Chapter-7, Example 2, Page 180
+//Title: Entrainment from Large Particle Beds with High Freeboard
+//==========================================================================================================
+clear
+clc
+
+//INPUT
+x=0.2;//Fraction of fines in the bed
+Gsstar=4.033320//Rate of entrainment in kg/m^2s(from Exa.1)
+
+//CALCULATION
+Gsstar1=x*Gsstar;//Rate of entrainment by Eqn.(3)
+
+//OUTPUT
+mprintf('\nRate of entrainment=%fkg/m^2s',Gsstar1);
+
+//====================================END OF PROGRAM ====================================================
\ No newline at end of file |