summaryrefslogtreecommitdiff
path: root/409/CH6/EX6.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /409/CH6/EX6.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 '409/CH6/EX6.2')
-rwxr-xr-x409/CH6/EX6.2/Example6_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/409/CH6/EX6.2/Example6_2.sce b/409/CH6/EX6.2/Example6_2.sce
new file mode 100755
index 000000000..5068fb6b6
--- /dev/null
+++ b/409/CH6/EX6.2/Example6_2.sce
@@ -0,0 +1,16 @@
+clear ;
+clc;
+// Example 6.2
+printf('Example 6.2\n\n');
+//Page no. 147
+// Solution
+
+// Basis 1 hour
+fd= 1000.0 ;//feed rate-[L/hr]
+cfd= 500.0;//Weight of cells per litre- [mg/L]
+dn= 1.0 ;//Density of feed-[g/cm^3]
+wp= 50.0 ;// Weight percent of cells in product stream
+Pg=(fd*cfd*dn)/(1000*wp*.01) ;// Mass balance for cells
+printf(' Product flow(P) per hour is %.1f g\n',Pg);
+Dg= (fd*dn*1000) - Pg*(wp*.01) ;// Mass balance for the fluid
+printf(' Discharge flow per hour is %.3e g\n',Dg); \ No newline at end of file