From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 409/CH6/EX6.2/Example6_2.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 409/CH6/EX6.2/Example6_2.sce (limited to '409/CH6/EX6.2') 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 -- cgit