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 --- 542/CH10/EX10.5/Example_10_5.sci | 56 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 542/CH10/EX10.5/Example_10_5.sci (limited to '542/CH10/EX10.5') diff --git a/542/CH10/EX10.5/Example_10_5.sci b/542/CH10/EX10.5/Example_10_5.sci new file mode 100755 index 000000000..bb5c5fb8c --- /dev/null +++ b/542/CH10/EX10.5/Example_10_5.sci @@ -0,0 +1,56 @@ +clear; +clc; +printf("\n Example 10.5"); + +//On the basis of 100 kg untreated solids +//In the underflow feed: +//0.35 kg oil is associated with each kg of exhausted livers. +printf("\n mass of livers fed=%d kg contaning %d kg oil",100/(1+0.35),100-74); +xA = 0.26; +printf("\n xA = %.2f",xA); +xs = 0; +//In the overflow feed, pure ether is used +ys =1.0; +xs = 0; +//Recovery = 90 per cent +printf("\n Exhausted livers Oil Ether"); +printf("\n Underflow feed %d %d -",74,26); +printf("\n Overflow feed - - %d",50); +printf("\n Underflow product %d %d e(say)",74,2.6); +printf("\n Overflow product - %d 50-e",23.4); +printf("\n In the underflow product:"); +printf("\n the ratio(oil/exhausted livers) = %.3f kg/kg",2.6/74); +printf("\n Ratio(ether/exhausted livers) = %.3f kg/kg",0.306); +printf("\n e = %.1f kg",0.306*74); +//In the overflow product: +printf("\n The mass of ether = %.1f kg",50-22.6); +printf("\n yA = %.2f",23.4/(23.4+27.4)); +printf("\n ys = %.2f",1-23.4/(23.4+27.4)); +printf("\n "); + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit