summaryrefslogtreecommitdiff
path: root/409/CH19/EX19.5/Example19_5.sce
blob: 307edb831de692de4920d990477292f24f22e89e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clear ;
clc;
// Example 19.5
printf('Example 19.5\n\n');
//Page no. 578
// Solution 

Vo = 3.0 ;// Initial volume of the solution containing the culture and virus-[L]
Vp = 0.1 ;// Volume of the polymer solution added to the vessel -[L]
Kpc = 100 ;// Partition coefficient for virus(cp/cc) between two phases

//Use virus particle balance to get cp/co, where co is initial concentration of  virus in solution of culture and virus
Vc = Vo ;// At equilibrium -[L]
cp_by_co = Vo/(Vp+(Vo/Kpc)) ;// Ratio of concentration of virus in polymer phase at equilibrium to initial concentration of virus in culture phase
Fr_rec = cp_by_co*(Vp/Vo) ;// Fraction of the initial virus in the culture phase that is recovered in the polymer phase 

printf('\n Fraction of the initial virus in the culture phase that is recovered in the polymer phase  is %.2f .\n ',Fr_rec);