summaryrefslogtreecommitdiff
path: root/409/CH20/EX20.2/Example20_2.sce
blob: 4d513f21d11cecb7c5efe56de2b9f214f6261f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clear;
clc;
// Example 20.2
printf('Example 20.2\n\n');
//page no. 596
// Solution 

//Given
G = 1000 ;// Volume of solution - [L]
S_ad = 1.56 ;// amount of Steptomycin adsorbed per gram resin-[g strep./g resin]
cn_S = 6 ;// Concentration of streptomycin solution-[g/L]
// Assume equilibrium occurs so that total(max) amount of streptomycin is adsorbed 
max_S = cn_S*G ;// Maximum streptomycin adsorbed-[g]
//Use streptomycin balance to get amount of resin required 
R = max_S/S_ad ;//Amount of resin required to adsorb required amount of streptomycin

printf('Amount of resin required to adsorb required amount of streptomycin is %.0f g .\n ',R);