Chapter 5 Solutions Osmotic Pressure

Example 5.1 , Page no:108

In [1]:
import math
from __future__ import division

#initialisation of variables
T= 20 #C
R= 0.082 #li-atm per mole per degree
V= 2 #lit
m= 6 #gms
M= 60 #gms

#CALCULATIONS
P= m*R*(273+T)/(M*V)

#RESULTS
print"osmotic pressure=",round(P,1),"atm";
osmotic pressure= 1.2 atm

Example 5.2 , Page no:110

In [2]:
import math
from __future__ import division

#initialisation of variables
T= -0.2 #C
T1= 25 #C
T2= 1.86 #C
R= 0.082 #li-atm per mole per degree

#CALCULATIONS
P= -T*R*(T1+273)/T2

#RESULTS
print"osmotic pressure=",round(P,2),"atm";
osmotic pressure= 2.63 atm