summaryrefslogtreecommitdiff
path: root/1052/CH27/EX27.2/272.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1052/CH27/EX27.2/272.sce
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 '1052/CH27/EX27.2/272.sce')
-rwxr-xr-x1052/CH27/EX27.2/272.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1052/CH27/EX27.2/272.sce b/1052/CH27/EX27.2/272.sce
new file mode 100755
index 000000000..6cd755106
--- /dev/null
+++ b/1052/CH27/EX27.2/272.sce
@@ -0,0 +1,11 @@
+clc;
+//Example 27.2
+//page no 413
+printf("Example 27.2 page no 413\n\n");
+//plate and frame filter press is to be employed to filter a slurry
+m_dot_slurry=600*60//mass flow rate ,lb/h
+m=0.1//sluury contain 10% by mass solid
+m_dot_solids = m*m_dot_slurry//the solid flow rate in the slurry
+a=(1/5)//filter colth area required for 1 lb/h of solid
+A=m_dot_solids*(a)//filter colth area for 3600 lb/h of solids
+printf("\n filter colth area A=%f ft^2",A);